-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScreenOpition.cs
More file actions
50 lines (30 loc) · 1.04 KB
/
Copy pathScreenOpition.cs
File metadata and controls
50 lines (30 loc) · 1.04 KB
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
46
47
48
49
50
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AutoPickingSys
{
public class ScreenOpition
{
public bool hasAreaLowerLimit;
public bool hasMajorAxisLowerLimit;
public bool hasMinorAxisLowerLimit;
public bool hasMaxMinRateLowerLimit;
public bool hasColorRedLowerLimit;
public bool hasColorGreenLowerLimit;
public bool hasColorBlueLowerLimit;
public bool hasAreaPerimeterRateLowerLimit;
public bool hasAreaSuperiorLimit;
public bool hasMajorAxisSuperiorLimit;
public bool hasMinorAxisSuperiorLimit;
public bool hasMaxMinRateSuperiorLimit;
public bool hasColorRedSuperiorLimit;
public bool hasColorGreenSuperiorLimit;
public bool hasColorBlueSuperiorLimit;
public bool hasAreaPerimeterRateSuperiorLimit;
public bool IsUseAreaOpition;
public bool IsUseColorOpition;
public bool IsUseAxisOpition;
public bool IsUseRateOpition;
}
}