aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.BL/CardDetectionResult.cs
blob: 117317dcd708ad37e0282518771500fc99f00f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media.Imaging;
using Tango.PMR.TCC;

namespace Tango.TCC.BL
{
    public class CardDetectionResult
    {
        public bool IsDetected { get; set; }
        public BitmapSource Source { get; set; }
        public BitmapSource DetectedBitmap { get; set; }
        public DetectionOutput ColorDetectionOutput { get; set; }
        public double Similarity { get; set; }
        public String Barcode { get; set; }
    }
}