| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace OTSInclusionsTraceability{    class Particle    {        public enum SourceType        {            RefiningSlag=0,            Refractory=1        }        public int FieldId { set; get; }        //ParticleId        public int ParticleId { set; get; }        //XrayId        public int XrayId { set; get; }        //RectLeft        public int RectLeft { set; get; }        //RectTop        public int RectTop { set; get; }        //RectWidth        public int RectWidth { set; get; }        //RectHeight        //public int RectHeight { set; get; }        ////FeatureList        //public List<Segment> SegmentList { set; get; }        //XRayData        public byte[] XRayData { set; get; }        ////ElementList        //public List<Element> ElementList { set; get; }        public int AveGray        {            set;            get;        }        //PosX        public int PosX { set; get; }        //PosY        public int PosY { set; get; }        //TypeId        public int TypeId { set; get; }        //TypeName        public string TypeName { set; get; }        //TypeColor        public string TypeColor { set; get; }        //ElementNum        public int ElementNum { set; get; }        //SegmentNum        public int SegmentNum { set; get; }        //FieldPosX        public int FieldPosX { set; get; }        //FieldPosY        public int FieldPosY { set; get; }        //Element        public string Element { set; get; }        //ParticleImage        public string ParticleImage { set; get; }        public double Area        {            set;            get;        }        public double DELONG        {            set;            get;        }        public double DINSCR        {            set;            get;        }        public double DMAX        {            set;            get;        }        public double DMEAN        {            set;            get;        }        public double DMIN        {            set;            get;        }        public double DPERP        {            set;            get;        }        public double PERIMETER        {            set;            get;        }        public double ORIENTATION        {            set;            get;        }        public double DFERET        {            set;            get;        }        public int SEMPosX        {            get;            set;        }        public int SEMPosY        {            get;            set;        }        public string Hardness { set; get; }        public string Density { set; get; }        public string Electrical_conductivity { set; get; }        public SourceType Source { set; get; }    }}
 |