36 lines
936 B
C
36 lines
936 B
C
|
|
#pragma once
|
||
|
|
#include <iostream>
|
||
|
|
#include <vector>
|
||
|
|
#include <memory>
|
||
|
|
#include <QString>
|
||
|
|
#include "bagThreadPositioning_Export.h"
|
||
|
|
#include "VZNL_Types.h"
|
||
|
|
#include "VrTimeUtils.h"
|
||
|
|
#include "VrError.h"
|
||
|
|
#include "VrLog.h"
|
||
|
|
#include "IVrConfig.h"
|
||
|
|
#include "LaserDataLoader.h"
|
||
|
|
#include "IYBagThreadPositionStatus.h"
|
||
|
|
#include "PointCloudImageUtils.h"
|
||
|
|
#include "VrConvert.h"
|
||
|
|
#include "VrDateUtils.h"
|
||
|
|
|
||
|
|
class DetectPresenter
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
/* data */
|
||
|
|
public:
|
||
|
|
DetectPresenter(/* args */);
|
||
|
|
~DetectPresenter();
|
||
|
|
|
||
|
|
/// 螺杆检测接口
|
||
|
|
int DetectScrew( int cameraIndex,
|
||
|
|
std::vector<std::pair<EVzResultDataType, SVzLaserLineData>>& laserLines,
|
||
|
|
const VrAlgorithmParams& algorithmParams,
|
||
|
|
const VrDebugParam& debugParam,
|
||
|
|
LaserDataLoader& dataLoader,
|
||
|
|
const double clibMatrix[16],
|
||
|
|
DetectionResult& detectionResult);
|
||
|
|
|
||
|
|
};
|