aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.CardDetector/CardDetectionConfig.h
blob: 3b6a5d4a7a220d367896bb7e213d72afe3e0fc06 (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
26
#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;
				property bool PerformCLAHE;
			};
		}
	}
}