21 lines
465 B
C++
21 lines
465 B
C++
#ifndef WELDSEAM_ALGORITHMPARAMCONVERTER_H
|
|
#define WELDSEAM_ALGORITHMPARAMCONVERTER_H
|
|
|
|
#include "IVrConfig.h"
|
|
#include "SX_lapWeldDetection_Export.h"
|
|
|
|
struct WeldSeamAlgorithmParams
|
|
{
|
|
SWD_valleyParam valleyParam{};
|
|
SSG_treeGrowParam treeGrowParam{};
|
|
int weldRefPoints = 3;
|
|
};
|
|
|
|
class AlgorithmParamConverter
|
|
{
|
|
public:
|
|
static WeldSeamAlgorithmParams ToAlgorithmParams(const VrAlgorithmParams& params);
|
|
};
|
|
|
|
#endif // WELDSEAM_ALGORITHMPARAMCONVERTER_H
|