Newer
Older
PrismSoftware / ECTrainer2 / Marker.h
#pragma once

#include "myOpenCV.h"
#include <vector>

class Marker
{
	std::vector<std::vector<cv::Point2f>> _Corners;
	const cv::Point2f MARGIN = cv::Size2f(0.5, 0.5);
	const float HEIGHT = 0.1F;
public:
	void Generate(cv::Size imgsize);
};