-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCharacteristic.cs
More file actions
41 lines (26 loc) · 897 Bytes
/
Copy pathCharacteristic.cs
File metadata and controls
41 lines (26 loc) · 897 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
namespace AutoPickingSys
{
public class Characteristic
{
public int Area { get; set; }
public int AreaTage { get; set; }
public int MajorAxis { get; set; }
public int MinorAxis { get; set; }
public float MajToMinAxisRatio {get;set; }
public float Yita { get; set; }
public int Perimeter { get; set; }
public Point Centroid { get; set; }
public Color CentreAcerageColor { get; set; }
public float AreaToPerimeterRate { get;set; }
public bool IsQualifiedColony { get; set; }
public bool IsInvalidColony { get; set; }
public bool IsNearPoint { get; set; }
public bool IsFarPoint { get; set; }
public bool IsInternal { get; set; }
}
}