aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.CardDetector/CardDetectionConfig.h
blob: 90f3239be4a5a43caba1745e95b254e8c7118bdf (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
25
#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;
				property bool EnforceBarcodeDetection;
			};
		}
	}
}