MFlawShot.cs
908 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using OpenCvSharp;
namespace OS.Spin.Modle.BusinessLayer
{
public class MFlawShot
{
private string _lableText = string.Empty;
public string LableText
{
get { return _lableText; }
set { _lableText = value; }
}
private int _scoure = 4;
public int Scoure
{
get { return _scoure; }
set { _scoure = value; }
}
private Mat _shotMat;
public Mat ShotRoi
{
get { return _shotMat; }
set { _shotMat = value; }
}
private int _centerX = 0;
public int CenterX
{
get { return _centerX; }
set { _centerX = value; }
}
private int _centerY = 0;
public int CenterY
{
get { return _centerY; }
set { _centerY = value; }
}
}
}