#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^ TemplateBitmap; property double SimilarityTolerance; property int HistogramMethod; property bool EnableDoubleChecking; property bool EnforceBarcodeDetection; property bool PerformCLAHE; }; } } }