aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.CardDetector/CardDetectionConfig.h
blob: 86d44ca34a9ac4c1f9a656fb348b3a0c26e796e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

using namespace System;

namespace Tango
{
	namespace TCC
	{
		namespace CardDetector {
			public ref class CardDetectionConfig
			{
			public:
				CardDetectionConfig();
				property double DesiredBitmapWidth;
				property double DesiredBitmapHeight;
				property cli::array<Byte>^ TemplateBitmap;
				property double SimilarityTolerance;
				property int HistogramMethod;
				property bool EnableDoubleChecking;
			};
		}
	}
}