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

using namespace System;
using namespace System::Drawing;

namespace Tango
{
	namespace TCC
	{
		namespace CardDetector {
			public ref class CardDetectionResult
			{
			public:
				CardDetectionResult();
				property bool IsDetected;
				property cli::array<Byte>^ DetectedBitmap;
				property double Similarity;
				property System::String^ Barcode;
			};
		}
	}
}