Control_DrawDistrbutionImageAndBSE.cs 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634
  1. using NLog;
  2. using OTSCLRINTERFACE;
  3. using OTSCommon.Model;
  4. using OTSIncAReportApp;
  5. using OTSIncAReportApp._3_ServiceCenter;
  6. using OTSIncAReportApp.DataOperation.DataAccess;
  7. using OTSIncAReportApp.OTSSampleReportInfo;
  8. using OTSIncAReportApp.SysMgrTools;
  9. using OTSIncAReportGraph.Class;
  10. using OTSIncAReportGraph.OTSIncAReportGraphFuncation;
  11. using OTSIncAReportMailInterface;
  12. using OTSPeriodicTable;
  13. using System;
  14. using System.Collections;
  15. using System.Collections.Generic;
  16. using System.Data;
  17. using System.Drawing;
  18. using System.Drawing.Drawing2D;
  19. using System.IO;
  20. using System.Linq;
  21. using System.Threading;
  22. using System.Windows.Forms;
  23. namespace OTSIncAReportGraph.Controls
  24. {
  25. public enum SelectedShape
  26. {
  27. Rectangle = 0,
  28. Ellipse = 1
  29. }
  30. public struct SelectTool
  31. {
  32. public SelectedShape Shape;
  33. public Point StartPoint;
  34. public bool IsSelecting;
  35. //进行选择的矩形范围
  36. public RectangleF Rect;
  37. }
  38. public struct ParticleSegmentation
  39. {
  40. public Point StartPoint;
  41. public bool IsParticleSegmentation;
  42. public Point EndPoint;
  43. public Particle ParticleData;
  44. public RectangleF Rectangle;
  45. }
  46. public enum RightButtonMenu
  47. {
  48. CopyImage = 0,
  49. OriginalSplicing = 1
  50. }
  51. /// <summary>
  52. /// 选择导出的图片是原图还是颗粒渲染后的图片
  53. /// </summary>
  54. public enum Outpic_enum
  55. {
  56. pic = 0,
  57. Render_pic = 1,
  58. noBackground_pic = 2,
  59. GBOne = 3,
  60. ColoredParticles=4,
  61. Combin,
  62. Render_Combin
  63. }
  64. public partial class Control_DrawDistrbutionImageAndBSE : UserControl
  65. {
  66. private OTSImageDisHelp imageDisHelper = null;
  67. //缩放的增大缩小的增量
  68. private const float const_zoom_increment = 0.05f;
  69. //最大缩放倍数
  70. private const float m_f_zoom_max = 4f;
  71. //最小缩放倍数
  72. private float m_f_zoom_mix = 0.05f;
  73. //标尺原先大小的记录,参与计算
  74. private float m_f_old_ruler_size = 100;
  75. double ls_d_cz_width;
  76. double ls_d_cz_height;
  77. #region 变量定义
  78. private SelectTool m_SelectTool;
  79. private ParticleSegmentation m_ParticleSegmentation;
  80. public bool isReView = false;
  81. public int reViewFieldId = 0;
  82. public int reViewParticleId = 0;
  83. //与原先缩放的记录数
  84. private float m_zoom_record = 1;
  85. //标尺的大小记录
  86. public float m_f_ruler_size = 100;
  87. public float m_pixelSize = 4.5f;
  88. //国际化存储信息
  89. System.Collections.Hashtable table;
  90. //包含particle的field的列表对象
  91. public List<DisplayField> m_list_allDfield = null;
  92. //这里要做成控件,不要是窗体
  93. public List<DisplayParticle> m_list_allDPart = null;
  94. public List<DisplayParticle> m_list_allDPart_original = null;
  95. public List<DisplayField> m_CurGBFields = new List<DisplayField>();
  96. //总背景矩形
  97. private RectangleF m_backRect = new RectangleF();
  98. private PointF m_ScaleRefPoint;
  99. //记录总物理矩形总大小
  100. public RectangleF m_back_wl_rectf = new RectangleF();
  101. //是否显示网格线
  102. private bool m_is_showgrid = false;
  103. //是否拖动
  104. private bool m_isDrag = false;
  105. //拖动前的坐标记录
  106. private PointF m_beforedrag_pointf = new PointF();
  107. //提供鼠标在右下角显示的文本,左侧
  108. private string m_str_mouseshow_left = "";
  109. //提供鼠标在右下角显示的文本,右侧
  110. private string m_str_mouseshow_right = "";
  111. //当前鼠标的位置
  112. Point m_mouse_now_point = new Point();
  113. Point m_currentMouseDownPoint;
  114. //记录当前鼠标位置对应SEM电镜的位置
  115. Point m_sem_mouse_now_point = new Point();
  116. //鼠标移动经过的颗粒对象,临时存放,用来记录是否要显示xray与隐藏xray
  117. DisplayParticle m_mouseOver_dparticle = null;
  118. //保存数据源名称
  119. private string m_showsourcename = "";
  120. //保存当前数据源的ID
  121. private int m_datasourceid = 0;
  122. //移动SEM到指定位置发生线程
  123. private Thread m_mythread;
  124. private Color m_ColorNotContent = Color.SkyBlue;
  125. //读取背景原图的名称和图片
  126. private Dictionary<string, Image> originalImages = new Dictionary<string, Image>();
  127. private DISTRIBUTION_IMAGE_SHOW_MODE showMode;
  128. static System.Windows.Forms.Timer delaytimer = new System.Windows.Forms.Timer();
  129. Logger log;
  130. public string ShowSourceName
  131. {
  132. set { m_showsourcename = value; }
  133. get { return m_showsourcename; }
  134. }
  135. /// <summary>
  136. /// 当前正在显示的数据源的ID
  137. /// </summary>
  138. public int DataSourceID
  139. {
  140. set { m_datasourceid = value; }
  141. get { return m_datasourceid; }
  142. }
  143. //进度条窗体
  144. public Frm_UserProgress m_frm_userprogress;
  145. Hashtable resTable;
  146. OTSIncAReportApp.frmReportApp m_ReportApp;
  147. ResultFile resultFile = null;
  148. //private Cursor cursor1;
  149. #endregion
  150. #region 构造函数及窗体加载
  151. public Control_DrawDistrbutionImageAndBSE(OTSIncAReportApp.frmReportApp ReportApp)
  152. {
  153. log = NLog.LogManager.GetCurrentClassLogger();
  154. m_list_allDfield = new List<DisplayField>();
  155. m_list_allDPart = new List<DisplayParticle>();
  156. m_frm_userprogress = new Frm_UserProgress();
  157. //cursor1 = Cursor;
  158. m_mythread = new Thread(new ParameterizedThreadStart(Thread_GO));
  159. m_ReportApp = ReportApp;
  160. resultFile = m_ReportApp.m_rstDataMgr.CurResultFile;
  161. InitializeComponent();
  162. #region 国际化语言
  163. Language lan = new Language(this);
  164. table = lan.GetNameTable(this.Name);
  165. #endregion
  166. //load the userdefine control dynamically
  167. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Control_DrawDistrbutionImageAndBSE));
  168. this.control_XRayTable1 = new Control_XRayTable();
  169. this.control_XRayTable1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  170. this.control_XRayTable1.Dock = System.Windows.Forms.DockStyle.Bottom;
  171. this.control_XRayTable1.GBInfoStr = "";
  172. this.control_XRayTable1.GoodChineseName = "";
  173. this.control_XRayTable1.MaterialName = "";
  174. this.control_XRayTable1.List_ShowElementInfo = ((System.Collections.Generic.List<OTSIncAReportGraph.Controls.ShowElementInfo>)(resources.GetObject("control_XRayTable1.List_ShowElementInfo")));
  175. this.control_XRayTable1.Location = new System.Drawing.Point(0, 400);
  176. this.control_XRayTable1.Name = "control_XRayTable1";
  177. this.control_XRayTable1.ShowAnalysisXray = true;
  178. this.control_XRayTable1.ShowSearchXray = false;
  179. this.control_XRayTable1.Size = new System.Drawing.Size(1004, 200);
  180. this.control_XRayTable1.STDName = "";
  181. this.control_XRayTable1.TabIndex = 6;
  182. this.control_XRayTable1.Visible = false;
  183. //
  184. // control_Ruler1
  185. //
  186. this.control_Ruler1 = new Control_Ruler();
  187. this.control_Ruler1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  188. this.control_Ruler1.Location = new System.Drawing.Point(3, 400);
  189. this.control_Ruler1.Name = "control_Ruler1";
  190. this.control_Ruler1.RulerWidth = 100;
  191. this.control_Ruler1.ShowString = "100um";
  192. this.control_Ruler1.Size = new System.Drawing.Size(120, 40);
  193. this.control_Ruler1.TabIndex = 8;
  194. this.control_Ruler1.Value = 0D;
  195. this.control_Ruler1.Visible = false;
  196. this.Controls.Add(this.control_XRayTable1);
  197. this.Controls.Add(this.control_Ruler1);
  198. Language language = new Language(this);
  199. resTable = language.GetNameTable(this.Name.ToString());
  200. }
  201. private void ProgressBarUpdate(int progress, string message)
  202. {
  203. //显示进度条,计算进度条应该显示的位置和宽度
  204. if (m_frm_userprogress.Visible == false)
  205. {
  206. Form ls_main_form = this.ParentForm.ParentForm;//取出父窗体
  207. m_frm_userprogress.Width = (int)(MyPrimaryScreen.DESKTOP.Width / MyPrimaryScreen.ScaleX * 0.9);
  208. m_frm_userprogress.Location = new Point(ls_main_form.Location.X + 80, ls_main_form.Location.Y + (int)(MyPrimaryScreen.DESKTOP.Height / MyPrimaryScreen.ScaleX) / 2);
  209. m_frm_userprogress.Show();
  210. }
  211. m_frm_userprogress.SetProgressValueAndText(progress, message);
  212. }
  213. private void Control_DrawDistrbutionImageAndBSE_Load(object sender, EventArgs e)
  214. {
  215. //设置双缓冲
  216. SetDoubleBufferByIsDraw();
  217. ProgressBarUpdate(0, table["str1"].ToString());
  218. //初始化底层操作类
  219. imageDisHelper = new OTSImageDisHelp(resultFile);
  220. m_backRect = imageDisHelper.m_originalBackRect;
  221. string str29 = "begin to compose field picture....";
  222. log.Info(str29);
  223. ProgressBarUpdate(20, "compose whole picture....");
  224. List<Field> fieldlist = resultFile.List_OTSField;
  225. float ls_int_progresscalc = 0;
  226. if (fieldlist.Count > 0)
  227. ls_int_progresscalc = (float)70 / (float)fieldlist.Count;
  228. m_list_allDfield.Clear();
  229. m_list_allDPart.Clear();
  230. var fieldSize = imageDisHelper.GetFieldImageSize();
  231. for (int i = 0; i < fieldlist.Count(); i++)
  232. {
  233. ProgressBarUpdate(20 + (int)(ls_int_progresscalc * (i + 1)), "finished " + i.ToString() + "total " + resultFile.List_OTSField.Count.ToString() + "field...");
  234. Point thisfield_point = new Point() { X = fieldlist[i].FieldPosX, Y = fieldlist[i].FieldPosY };//get OTS coordination
  235. Point offset_point = imageDisHelper.ConvertOTSCoordToScreenCoord(thisfield_point);//the ots coordinate is always the up right positive.
  236. DisplayField df;
  237. try
  238. {
  239. df = new DisplayField(fieldlist[i], (int)fieldSize.Width, (int)fieldSize.Height, resultFile.GetPixelSize(), offset_point);
  240. df.ContentColor = Color.Black;
  241. m_list_allDfield.Add(df);
  242. m_list_allDPart.AddRange(df.List_DParticle);
  243. }
  244. catch (Exception ex)
  245. {
  246. NLog.LogManager.GetCurrentClassLogger().Info(ex.ToString());
  247. }
  248. }
  249. m_list_allDPart_original = new List<DisplayParticle>();
  250. foreach (var apart in m_ReportApp.im_Control_DrawDistrbutionImageAndBSE.m_list_allDPart)
  251. {
  252. m_list_allDPart_original.Add(apart.Clone() as DisplayParticle);
  253. }
  254. m_pixelSize = resultFile.GetPixelSize();
  255. //设置标尺
  256. //根据f_onepixel_size计算出要显示出100um的实际宽度
  257. float d_onefixel_width = 100 / m_pixelSize;
  258. if (d_onefixel_width == 0)
  259. {
  260. this.control_Ruler1.Visible = false;
  261. }
  262. else
  263. {
  264. m_f_ruler_size = d_onefixel_width;
  265. m_f_old_ruler_size = d_onefixel_width;
  266. //将标尺定位到合理的位置上
  267. this.control_Ruler1.Location = new Point(10, MyPrimaryScreen.WorkingArea.Height - 300);
  268. this.control_Ruler1.Visible = true;
  269. this.control_Ruler1.SetValue(m_f_ruler_size);
  270. this.control_Ruler1.ShowString = Convert.ToInt32(100).ToString() + "μm";
  271. }
  272. ProgressBarUpdate(100, table["str2"].ToString());
  273. m_frm_userprogress.Visible = false;
  274. if (m_ReportApp.im_ParticlesGridDevidePage != null)
  275. {
  276. m_ReportApp.im_ParticlesGridDevidePage.ToolStripMenuItem_Addparticlestotheselectparticleslist.Visible = true; //由于分布图和颗粒表数据来源相对独立,所以只能在这里激活颗粒表选择菜单,待日后修改数据源加载方式,此项需修改
  277. }
  278. }
  279. /// <summary>
  280. /// 分布图和BSE图中,从底层获取相关结果后,重新组织显示
  281. /// </summary>
  282. /// <param name="sourceGridData"></param>
  283. public void FilterParticleByOtherCondition(ReportCondition sourceGridData)
  284. {
  285. bool sizeconditionResult;
  286. bool stdIdconditionResult;
  287. string stdId = "";
  288. int stdIdIndex = 0;
  289. //find the stdId condition
  290. var STDIdItm = sourceGridData.ConditionItemList.Find(s => s.iItemId == OTS_REPORT_PROP_GRID_ITEMS.STD_ID);
  291. if (STDIdItm != null)
  292. {
  293. stdId = STDIdItm.itemDisplayVal.ToString();
  294. stdIdIndex = STDIdItm.comboDownList.IndexOf(stdId);
  295. }
  296. //find the size condition
  297. var size_cal_method_type = (SIZE_CAL_METHOD_TYPE)sourceGridData.GetComboDownListIndexByItemName(OTS_REPORT_PROP_GRID_ITEMS.SIZE_CAL_METHOD_TYPE);
  298. var itm = sourceGridData.ConditionItemList.Find(s => s.iItemId == OTS_REPORT_PROP_GRID_ITEMS.GRAIN_SIZE_CLASS);
  299. string size = itm.itemDisplayVal.ToString();
  300. int index = itm.comboDownList.IndexOf(size);
  301. string min = "0";
  302. string max = "999";
  303. if (index > 0)
  304. {
  305. max = sourceGridData.ConditionItemList.Find(s => s.iItemId == OTS_REPORT_PROP_GRID_ITEMS.GRAIN_SIZE_MAX).itemDisplayVal.ToString();
  306. min = sourceGridData.ConditionItemList.Find(s => s.iItemId == OTS_REPORT_PROP_GRID_ITEMS.GRAIN_SIZE_MIN).itemDisplayVal.ToString();
  307. if (max.ToLower() == "max")
  308. {
  309. max = "999";
  310. }
  311. }
  312. double dia_min = Convert.ToDouble(min);
  313. double dia_max = Convert.ToDouble(max);
  314. foreach (DisplayParticle ls_dp in m_list_allDPart)
  315. {
  316. if (index > 0)
  317. {
  318. double diameter = 0;
  319. switch (size_cal_method_type)
  320. {
  321. case SIZE_CAL_METHOD_TYPE.DMAX:
  322. diameter = ls_dp.objParticleData.DMAX;
  323. break;
  324. case SIZE_CAL_METHOD_TYPE.DMIN:
  325. diameter = ls_dp.objParticleData.DMIN;
  326. break;
  327. case SIZE_CAL_METHOD_TYPE.CIRCLE:
  328. diameter = Math.Sqrt(ls_dp.objParticleData.Area / 3.14159f) * 2f;
  329. break;
  330. case SIZE_CAL_METHOD_TYPE.DFERET:
  331. diameter = ls_dp.objParticleData.DFERET;
  332. break;
  333. default:
  334. diameter = 0;
  335. break;
  336. }
  337. if (diameter >= dia_min && diameter <= dia_max)
  338. {
  339. sizeconditionResult = true;
  340. }
  341. else
  342. {
  343. sizeconditionResult = false;
  344. }
  345. }
  346. else
  347. {
  348. sizeconditionResult = true;
  349. }
  350. if (stdIdIndex > 0)// it's not "All"
  351. {
  352. if (ls_dp.objParticleData.TypeName != stdId)
  353. {
  354. stdIdconditionResult = false;
  355. }
  356. else
  357. {
  358. stdIdconditionResult = true;
  359. }
  360. }
  361. else
  362. {
  363. stdIdconditionResult = true;
  364. }
  365. if (stdIdconditionResult && sizeconditionResult)
  366. {
  367. ls_dp.SetDisplayState(DisplayState.DISPLAY);
  368. }
  369. else
  370. {
  371. ls_dp.SetDisplayState(DisplayState.NODISPLAY);
  372. }
  373. }
  374. }
  375. #endregion
  376. #region 设置双缓冲
  377. /// <summary>
  378. /// 设置双缓冲
  379. /// </summary>
  380. public void SetDoubleBufferByIsDraw()
  381. {
  382. SetStyle(ControlStyles.UserPaint, true); //没什么效果,开与关
  383. SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景,关了闪
  384. SetStyle(ControlStyles.OptimizedDoubleBuffer, true); // 双缓冲,关了闪
  385. //上面是必须有的
  386. SetStyle(ControlStyles.UserMouse, true); //执行自己的鼠标行为,这个打开后,在win7下鼠标操作明显改善
  387. }
  388. #endregion
  389. #region 绘制函数
  390. protected override void OnPaint(PaintEventArgs e)//处理重绘情况
  391. {
  392. switch (showMode)
  393. {
  394. case DISTRIBUTION_IMAGE_SHOW_MODE.BSE:
  395. e.Graphics.FillRectangle(new SolidBrush(Color.Gainsboro), m_backRect);
  396. foreach (DisplayParticle dp in m_list_allDPart)
  397. {
  398. //dp.SetDisplayState(DisplayState.DISPLAY);
  399. dp.ShowMode = SegmentShowMode.DRAWPARTICLEIMAGE;
  400. if (dp.GetPaintState() != PaintState.NOPAINT)
  401. {
  402. dp.OnPaint(e);
  403. }
  404. }
  405. break;
  406. case DISTRIBUTION_IMAGE_SHOW_MODE.CLASSIFIED:
  407. e.Graphics.FillRectangle(new SolidBrush(Color.Gainsboro), m_backRect);
  408. foreach (DisplayParticle dp in m_list_allDPart)
  409. {
  410. dp.ShowMode = SegmentShowMode.DRAWLINE;
  411. if (dp.GetPaintState() != PaintState.NOPAINT)
  412. {
  413. dp.OnPaint(e);
  414. }
  415. }
  416. break;
  417. case DISTRIBUTION_IMAGE_SHOW_MODE.ORIGINAl:
  418. foreach (DisplayParticle ls_dp in m_list_allDPart)
  419. {
  420. ls_dp.SetDisplayState(DisplayState.NODISPLAY);
  421. }
  422. DrawOriginalImageAsBackground(e);
  423. break;
  424. case DISTRIBUTION_IMAGE_SHOW_MODE.ORIGINALCLASSIFIED:
  425. DrawOriginalImageAsBackground(e);
  426. foreach (DisplayParticle dp in m_list_allDPart)
  427. {
  428. dp.ShowMode = SegmentShowMode.DRAWLINE;
  429. if (dp.GetPaintState() != PaintState.NOPAINT)
  430. {
  431. dp.OnPaint(e);
  432. }
  433. }
  434. break;
  435. default:
  436. break;
  437. }
  438. //display GB field
  439. if (m_CurGBFields.Count > 0)
  440. {
  441. foreach (var f in m_CurGBFields)
  442. {
  443. f.OnPaint(e, Color.Red);
  444. }
  445. }
  446. #region 绘制网格线,帧图边框部份
  447. if (true == m_is_showgrid)
  448. {
  449. foreach (var fld in m_list_allDfield)
  450. {
  451. fld.OnPaint(e, Color.Black);
  452. }
  453. }
  454. #endregion
  455. #region //判断是否使用了矩形或圆形工具进行多选,是的话,那么这里就开始绘制------------------------
  456. if (m_SelectTool.IsSelecting)
  457. {
  458. if (m_SelectTool.Shape == SelectedShape.Rectangle && m_SelectTool.Rect.Width > 0 && m_SelectTool.Rect.Height > 0)
  459. {
  460. Graphics g = e.Graphics;
  461. //绘制矩形
  462. g.DrawRectangle(new Pen(Color.Blue), m_SelectTool.Rect.X, m_SelectTool.Rect.Y, m_SelectTool.Rect.Width, m_SelectTool.Rect.Height);
  463. //半透明画刷
  464. SolidBrush brush = new SolidBrush(Color.FromArgb(50, m_ColorNotContent));
  465. //填充选择矩形
  466. g.FillRectangle(brush, m_SelectTool.Rect.X, m_SelectTool.Rect.Y, m_SelectTool.Rect.Width, m_SelectTool.Rect.Height);
  467. }
  468. if (m_SelectTool.Shape == SelectedShape.Ellipse && m_SelectTool.Rect.Width > 0 && m_SelectTool.Rect.Height > 0)
  469. {
  470. Graphics g = e.Graphics;
  471. //绘制圆形
  472. g.DrawEllipse(new Pen(Color.Blue), m_SelectTool.Rect.X, m_SelectTool.Rect.Y, m_SelectTool.Rect.Width, m_SelectTool.Rect.Height);
  473. //半透明画刷
  474. SolidBrush brush = new SolidBrush(Color.FromArgb(50, m_ColorNotContent));
  475. //填充选择圆形
  476. g.FillEllipse(brush, m_SelectTool.Rect.X, m_SelectTool.Rect.Y, m_SelectTool.Rect.Width, m_SelectTool.Rect.Height);
  477. }
  478. }
  479. #endregion
  480. #region //判断是否使用颗粒分割,是的话,那么这里就开始绘制------------------------
  481. if (m_ParticleSegmentation.IsParticleSegmentation)
  482. {
  483. e.Graphics.DrawLine(new Pen(Color.Red), m_ParticleSegmentation.StartPoint.X, m_ParticleSegmentation.StartPoint.Y, m_ParticleSegmentation.EndPoint.X, m_ParticleSegmentation.EndPoint.Y);
  484. }
  485. #endregion
  486. #region 绘制鼠标跟踪线部份
  487. //XX虚线-----------------------------------------------
  488. Pen xxpen = new Pen(Color.GreenYellow, 1);
  489. xxpen.DashStyle = System.Drawing.Drawing2D.DashStyle.Custom;
  490. xxpen.DashPattern = new float[] { 5, 5 };
  491. //竖线
  492. e.Graphics.DrawLine(xxpen, 0, m_mouse_now_point.Y, m_mouse_now_point.X - 10, m_mouse_now_point.Y);
  493. e.Graphics.DrawLine(xxpen, m_mouse_now_point.X + 10, m_mouse_now_point.Y, this.Width, m_mouse_now_point.Y);
  494. //横线
  495. e.Graphics.DrawLine(xxpen, m_mouse_now_point.X, 0, m_mouse_now_point.X, m_mouse_now_point.Y - 10);
  496. e.Graphics.DrawLine(xxpen, m_mouse_now_point.X, m_mouse_now_point.Y + 10, m_mouse_now_point.X, this.Height);
  497. ////--------------------------------------------------------------------------------
  498. #endregion
  499. }
  500. #endregion
  501. #region 鼠标操作事件
  502. private void ImageZoom(float newZoom, PointF refPoint)
  503. {
  504. m_ScaleRefPoint = refPoint;
  505. float zoomDelta = newZoom - m_zoom_record;
  506. m_backRect.Width += m_backRect.Width / m_zoom_record * zoomDelta;
  507. m_backRect.Height += m_backRect.Height / m_zoom_record * zoomDelta;
  508. //锚点缩放补差值计算,得出差值
  509. float xShiftOld = (m_backRect.X - refPoint.X);
  510. float yShiftOld = (m_backRect.Y - refPoint.Y);
  511. float xShift = m_backRect.X - refPoint.X + xShiftOld / m_zoom_record * zoomDelta;
  512. float yShift = m_backRect.Y - refPoint.Y + yShiftOld / m_zoom_record * zoomDelta;
  513. //对背景矩形与所有的segment进行修补差值
  514. m_backRect.X = refPoint.X + xShift;
  515. m_backRect.Y = refPoint.Y + yShift;
  516. for (int i = 0; i < m_list_allDPart.Count(); i++)
  517. {
  518. DisplayParticle dp = m_list_allDPart[i];
  519. dp.Zoom(zoomDelta, refPoint);
  520. PointF ct = dp.GetCenterPoint();
  521. if (ct.X < -100 || ct.X > this.Width + 100 || ct.Y < -100 || ct.Y > this.Height + 100)
  522. {
  523. dp.SetPaintState(PaintState.NOPAINT);//the particles which are out of screen don't display.to speed up the display efficient.
  524. }
  525. }
  526. if (m_list_allDfield != null)
  527. {
  528. if (m_list_allDfield.Count > 0)
  529. {
  530. for (int i = 0; i < m_list_allDfield.Count; i++)
  531. {
  532. DisplayField theField = m_list_allDfield[i];
  533. theField.Zoom(zoomDelta, refPoint);
  534. }
  535. }
  536. }
  537. if (m_CurGBFields.Count > 0)
  538. {
  539. for (int i = 0; i < m_CurGBFields.Count; i++)
  540. {
  541. var r = m_CurGBFields[i];
  542. r.Zoom(zoomDelta, refPoint);
  543. }
  544. }
  545. #region 计算标尺尺寸部份-----放大------
  546. //计算标尺实际占用像素的宽度
  547. m_f_ruler_size = m_f_ruler_size + m_f_old_ruler_size * zoomDelta;//m_f_old_ruler_size
  548. control_Ruler1.SetValue(m_f_ruler_size);
  549. #endregion
  550. m_zoom_record = newZoom;
  551. if (m_zoom_record <= m_f_zoom_mix)
  552. {
  553. MoveImageToPoint(new PointF(0, 0));
  554. }
  555. }
  556. protected override void OnMouseWheel(MouseEventArgs e)
  557. {
  558. //float zoomDelta;
  559. float currentZoom;
  560. if (e.Delta > 0)
  561. {
  562. currentZoom = m_zoom_record + const_zoom_increment;
  563. }
  564. else
  565. {
  566. currentZoom = m_zoom_record - const_zoom_increment;
  567. }
  568. if (currentZoom > m_f_zoom_max) currentZoom = m_f_zoom_max;
  569. if (currentZoom < m_f_zoom_mix) currentZoom = m_f_zoom_mix;
  570. ImageZoom(currentZoom, new PointF(e.X, e.Y));
  571. Invalidate();
  572. }
  573. protected override void OnMouseDown(MouseEventArgs e)
  574. {
  575. if (e.Button == MouseButtons.Left)
  576. {
  577. this.Cursor = Cursors.Hand;
  578. isReView = false;
  579. if (m_SelectTool.IsSelecting)
  580. {
  581. m_SelectTool.StartPoint = e.Location;
  582. }
  583. else if (m_ParticleSegmentation.IsParticleSegmentation)
  584. {
  585. m_ParticleSegmentation.StartPoint = e.Location;
  586. }
  587. else
  588. {
  589. bool ifClickOnParticle = false;
  590. foreach (DisplayParticle item in m_list_allDPart)
  591. {
  592. var dp = item;
  593. if (imageDisHelper.WhetherInRange(dp, e.Location))
  594. {
  595. dp.IsSelect = !dp.IsSelect;
  596. ifClickOnParticle = true;
  597. break;
  598. }
  599. }
  600. if (ifClickOnParticle == false)
  601. {
  602. foreach (DisplayParticle dp in m_list_allDPart)
  603. {
  604. if (showMode == DISTRIBUTION_IMAGE_SHOW_MODE.ORIGINALCLASSIFIED)
  605. {
  606. dp.SetPaintState(PaintState.NOPAINT);
  607. }
  608. PointF ct = dp.GetCenterPoint();
  609. if (ct.X > -100 && ct.X < this.Width + 100 && ct.Y > -100 && ct.Y < this.Height + 100)
  610. {
  611. dp.IsDragging = true;
  612. }
  613. dp.DraggingPoint = e.Location;
  614. }
  615. foreach (DisplayField item in m_list_allDfield)
  616. {
  617. item.IsDragging = true;
  618. item.DraggingPoint = e.Location;
  619. }
  620. foreach (DisplayField item in m_CurGBFields)
  621. {
  622. item.IsDragging = true;
  623. item.DraggingPoint = e.Location;
  624. }
  625. m_isDrag = true;
  626. m_beforedrag_pointf = e.Location;
  627. }
  628. }
  629. }
  630. else
  631. {
  632. m_currentMouseDownPoint = e.Location;
  633. //bool ifClickOnParticle = false;
  634. foreach (DisplayParticle item in m_list_allDPart)
  635. {
  636. var dp = item;
  637. if (imageDisHelper.WhetherInRange(dp, e.Location))
  638. {
  639. dp.IsSelect = !dp.IsSelect;
  640. //ifClickOnParticle = true;
  641. break;
  642. }
  643. }
  644. }
  645. Invalidate();
  646. }
  647. protected override void OnMouseMove(MouseEventArgs e)
  648. {
  649. //当前鼠标的位置,用来绘制鼠标线用
  650. m_mouse_now_point = e.Location;
  651. if (m_ParticleSegmentation.IsParticleSegmentation)
  652. {
  653. if (e.Button == MouseButtons.Left)
  654. {
  655. m_ParticleSegmentation.EndPoint = e.Location;
  656. }
  657. }
  658. if (m_SelectTool.IsSelecting)
  659. {
  660. if (e.Button == MouseButtons.Left)
  661. {
  662. if (e.Location.X > m_SelectTool.StartPoint.X && e.Location.Y > m_SelectTool.StartPoint.Y)
  663. {
  664. //右下拖动
  665. m_SelectTool.Rect = new RectangleF(m_SelectTool.StartPoint, new SizeF(e.Location.X - m_SelectTool.StartPoint.X, e.Location.Y - m_SelectTool.StartPoint.Y));
  666. }
  667. if (e.Location.X < m_SelectTool.StartPoint.X && e.Location.Y < m_SelectTool.StartPoint.Y)
  668. {
  669. //左上拖动
  670. PointF lspointf = new PointF(e.Location.X, e.Location.Y);
  671. m_SelectTool.Rect = new RectangleF(lspointf, new SizeF(m_SelectTool.StartPoint.X - e.Location.X, m_SelectTool.StartPoint.Y - e.Location.Y));
  672. }
  673. if (e.Location.X > m_SelectTool.StartPoint.X && e.Location.Y < m_SelectTool.StartPoint.Y)
  674. {
  675. //右上,这种画法,需要将左下,右上两点转换成左上,右下
  676. PointF left_pointf = new PointF(m_SelectTool.StartPoint.X, e.Location.Y);
  677. PointF right_pointf = new PointF(e.Location.X, m_SelectTool.StartPoint.Y);
  678. m_SelectTool.Rect = new RectangleF(left_pointf, new SizeF(right_pointf.X - left_pointf.X, right_pointf.Y - left_pointf.Y));
  679. }
  680. if (e.Location.X < m_SelectTool.StartPoint.X && e.Location.Y > m_SelectTool.StartPoint.Y)
  681. {
  682. //左下,这种画法,需要将左下,右上两点转换成左上,右下
  683. PointF left_pointf = new PointF(e.Location.X, m_SelectTool.StartPoint.Y);
  684. PointF right_pointf = new PointF(m_SelectTool.StartPoint.X, e.Location.Y);
  685. m_SelectTool.Rect = new RectangleF(left_pointf, new SizeF(right_pointf.X - left_pointf.X, right_pointf.Y - left_pointf.Y));
  686. }
  687. }
  688. }
  689. else
  690. {
  691. if (m_isDrag)
  692. {
  693. foreach (DisplayParticle dp in m_list_allDPart)
  694. {
  695. if (dp.IsDragging)
  696. {
  697. dp.DraggingMove(e.Location);
  698. }
  699. }
  700. foreach (var item in m_list_allDfield)
  701. {
  702. if (item.IsDragging)
  703. {
  704. item.DraggingMove(e.Location);
  705. }
  706. }
  707. foreach (var item in m_CurGBFields)
  708. {
  709. if (item.IsDragging)
  710. {
  711. item.DraggingMove(e.Location);
  712. }
  713. }
  714. //同样重新计算backrectf的坐标
  715. m_backRect = new RectangleF(m_backRect.Location.X + e.X - m_beforedrag_pointf.X,
  716. m_backRect.Location.Y + e.Y - m_beforedrag_pointf.Y, m_backRect.Width, m_backRect.Height);
  717. m_beforedrag_pointf = e.Location;
  718. }
  719. else
  720. {
  721. foreach (DisplayParticle item in m_list_allDPart)
  722. {
  723. DisplayParticle dp = item;
  724. if (dp.GetPaintState() == PaintState.PAINT)
  725. {
  726. if (imageDisHelper.WhetherInRange(dp, e.Location))
  727. {
  728. dp.IsMouseOver = true;
  729. ShowParticleInfo(dp);
  730. m_ParticleSegmentation.Rectangle = dp.GetShowRect();
  731. }
  732. else
  733. {
  734. dp.IsMouseOver = false;
  735. HideParticleInfo(dp);
  736. }
  737. }
  738. }
  739. }
  740. }
  741. #region 向报告程序右下角,传送鼠标颗粒等相关信息
  742. //获取颜色方法1,使用API来获取当前鼠标指向位置的颜色值-----------------------------------------------------
  743. Color ls_c = GetColorByMousePoint(e.X, e.Y);
  744. m_str_mouseshow_right = "灰度#" + ls_c.R.ToString();
  745. m_ReportApp.mouseMatter.Text = m_str_mouseshow_right;
  746. m_ReportApp.RSGrayVal.Text = m_str_mouseshow_left;
  747. #endregion
  748. Invalidate();
  749. }
  750. /// <summary>
  751. /// 计算颗粒中心的电镜坐标
  752. /// </summary>
  753. /// <param name="resultFile"></param>
  754. /// <param name="SEMPos"></param>
  755. /// <param name="ParticlePos"></param>
  756. /// <returns></returns>
  757. public static Point CalculateParticleCenterPosition(ResultFile resultFile, Point SEMPos, Point ParticlePos)
  758. {
  759. Point point = new Point();
  760. float ScanFieldSizeX = resultFile.GetScanFieldSizeX();
  761. string leftOrRight = resultFile.GetXAxisDir();
  762. string downOrUp = resultFile.GetYAxisDir();
  763. float ScanFieldSizeY = resultFile.GetScanFieldSizeY();
  764. float m_pixelSize = resultFile.GetPixelSize();
  765. if (leftOrRight == "RIGHT_TOWARD")
  766. {
  767. point.X = (int)(SEMPos.X - ScanFieldSizeX / 2 + ParticlePos.X * m_pixelSize);
  768. }
  769. else
  770. {
  771. point.X = (int)(SEMPos.X + ScanFieldSizeX / 2 - ParticlePos.X * m_pixelSize);
  772. }
  773. if (downOrUp == "UP_TOWARD")
  774. {
  775. point.Y = (int)(SEMPos.Y + ScanFieldSizeY / 2 - ParticlePos.Y * m_pixelSize);
  776. }
  777. else
  778. {
  779. point.Y = (int)(SEMPos.Y - ScanFieldSizeY / 2 + ParticlePos.Y * m_pixelSize);
  780. }
  781. return point;
  782. }
  783. /// <summary>
  784. /// 获取鼠标所在位置的信息,显示在框架的右下角
  785. /// </summary>
  786. /// <param name="mouseshow_left"></param>
  787. /// <param name="mouseshow_rightb"></param>
  788. public void GetMouseLowerRightCornerText(out string mouseshow_left, out string mouseshow_rightb)
  789. {
  790. mouseshow_left = m_str_mouseshow_left;
  791. mouseshow_rightb = m_str_mouseshow_right;
  792. }
  793. /// <summary>
  794. /// 鼠标抬起事件
  795. /// </summary>
  796. /// <param name="e"></param>
  797. protected override void OnMouseUp(MouseEventArgs e)
  798. {
  799. if (e.Button == MouseButtons.Left)
  800. {
  801. this.Cursor = Cursors.Default;
  802. if (m_SelectTool.IsSelecting)
  803. {
  804. if (m_SelectTool.Rect.Width > 0 && m_SelectTool.Rect.Height > 0)
  805. {
  806. GraphicsPath ls_gpath = new GraphicsPath();
  807. switch (m_SelectTool.Shape)
  808. {
  809. case SelectedShape.Rectangle:
  810. ls_gpath.AddRectangle(m_SelectTool.Rect);
  811. break;
  812. case SelectedShape.Ellipse:
  813. ls_gpath.AddEllipse(m_SelectTool.Rect);
  814. break;
  815. default:
  816. break;
  817. }
  818. foreach (DisplayParticle dp in m_list_allDPart)
  819. {
  820. if (dp.GetPaintState() != PaintState.NOPAINT)
  821. {
  822. PointF[] lspointf = ls_gpath.PathPoints;
  823. if (true == imageDisHelper.WhetherInRange(m_SelectTool.Rect, lspointf, new Point((int)dp.GetShowRect().X, (int)dp.GetShowRect().Y)))
  824. {
  825. dp.IsSelect = true;//框选
  826. }
  827. }
  828. }
  829. }
  830. m_SelectTool.IsSelecting = false;
  831. }
  832. else if (m_ParticleSegmentation.IsParticleSegmentation)
  833. {
  834. m_ParticleSegmentation.EndPoint = e.Location;
  835. DialogResult res = MessageBox.Show(table["str11"].ToString(), "", MessageBoxButtons.OKCancel);
  836. if (res == DialogResult.OK)
  837. {
  838. imageDisHelper.m_ParticleSegmentation = m_ParticleSegmentation;
  839. bool isTrue = imageDisHelper.isLineIntersectRectangle(m_ParticleSegmentation.StartPoint.X, m_ParticleSegmentation.StartPoint.Y, m_ParticleSegmentation.EndPoint.X, m_ParticleSegmentation.EndPoint.Y,
  840. m_ParticleSegmentation.Rectangle.Left, m_ParticleSegmentation.Rectangle.Top, m_ParticleSegmentation.Rectangle.Right, m_ParticleSegmentation.Rectangle.Bottom);
  841. if (isTrue)//判断绘制线段是否与颗粒外接矩形相交
  842. {
  843. List<Point> pointList = new List<Point>();
  844. if (imageDisHelper.GetInterBetweenLinesAndRect(m_ParticleSegmentation.StartPoint, m_ParticleSegmentation.EndPoint, m_ParticleSegmentation.Rectangle, ref pointList))
  845. {
  846. if (pointList.Count != 2)
  847. {
  848. MessageBox.Show(table["str12"].ToString());
  849. }
  850. else
  851. {
  852. if (!imageDisHelper.GetSplitPartFun(pointList[0], pointList[1], m_pixelSize))
  853. {
  854. MessageBox.Show(table["str13"].ToString());
  855. }
  856. else
  857. {
  858. FieldData fieldData = new FieldData(resultFile.FilePath);
  859. List<Field> fieldlist = fieldData.GetFieldList();
  860. m_ReportApp.m_rstDataMgr.CurResultFile.List_OTSField = fieldlist;
  861. m_ReportApp.rbRenewFun(true, m_ParticleSegmentation.ParticleData.FieldId, m_ParticleSegmentation.ParticleData.ParticleId);
  862. }
  863. }
  864. }
  865. }
  866. else
  867. {
  868. MessageBox.Show(table["str14"].ToString());
  869. }
  870. }
  871. m_ParticleSegmentation.IsParticleSegmentation = false;
  872. }
  873. else
  874. {
  875. if (m_isDrag)
  876. {
  877. foreach (DisplayParticle dp in m_list_allDPart)
  878. {
  879. dp.DraggingMove(e.Location);
  880. dp.DraggingPoint = Point.Empty;
  881. dp.IsDragging = false;
  882. PointF ct = dp.GetCenterPoint();
  883. if (ct.X < -100 || ct.X > this.Width + 100 || ct.Y < -100 || ct.Y > this.Height + 100)
  884. {
  885. dp.SetPaintState(PaintState.NOPAINT);//the particles which are out of screen don't display.to speed up the display efficient.
  886. }
  887. else
  888. {
  889. dp.SetPaintState(PaintState.PAINT);
  890. }
  891. }
  892. m_isDrag = false;
  893. }
  894. }
  895. SetParticlesSelected();
  896. }
  897. if (e.Button == MouseButtons.Right)
  898. {
  899. bool ifClickOnParticle = false;
  900. foreach (DisplayParticle item in m_list_allDPart)
  901. {
  902. if (true == imageDisHelper.WhetherInRange(item, e.Location))
  903. {
  904. ifClickOnParticle = true;
  905. CMenuStrip.Items[(int)RightButtonMenu.CopyImage].Visible = false;
  906. CMenuStrip.Items[(int)RightButtonMenu.OriginalSplicing].Visible = false;
  907. contextMenuStrip_Particle.Visible = true;
  908. contextMenuStrip_Particle.Show(this, e.Location);
  909. ToolStripMenuItem_movesempoint.Tag = item;
  910. DisplayParticle dp = (DisplayParticle)item;
  911. m_ParticleSegmentation.ParticleData = dp.objParticleData;
  912. }
  913. }
  914. if (ifClickOnParticle == false)
  915. {
  916. contextMenuStrip_Particle.Visible = false;
  917. CMenuStrip.Items[(int)RightButtonMenu.CopyImage].Visible = true;
  918. CMenuStrip.Items[(int)RightButtonMenu.OriginalSplicing].Visible = true;
  919. }
  920. var m_RptConfigFile = RptConfigFile.GetRptConfig(); //报表程序的配置文件
  921. if (m_RptConfigFile.Systype == OTS_SysType_ID.CleannessA)
  922. {
  923. 显示国标信息ToolStripMenuItem.Visible = false;
  924. 国标图导出ToolStripMenuItem.Visible = false;
  925. }
  926. if(Control.ModifierKeys==Keys.Shift)
  927. {
  928. toolStripMenuItem_backgroundcombin.Visible = true;
  929. toolStripMenuItem_backgroundcombinClass.Visible = true;
  930. }
  931. else
  932. {
  933. toolStripMenuItem_backgroundcombin.Visible = false;
  934. toolStripMenuItem_backgroundcombinClass.Visible = false;
  935. }
  936. }
  937. Invalidate();
  938. }
  939. #endregion
  940. #region 鼠标右键菜单
  941. private void ToolStripMenuItem_id_Click(object sender, EventArgs e)
  942. {
  943. //ID
  944. //DisplayParticle dp = (DisplayParticle)CMenuStrip.Items[0].Tag;
  945. //MessageBox.Show(dp.guid.ToString());
  946. }
  947. //是否显示过小颗菜单
  948. private void ToolStripMenuItem_ShowSmallParticle_Click(object sender, EventArgs e)
  949. {
  950. }
  951. void SetParticlesSelected()
  952. {
  953. List<DisplayParticle> selectedParts = new List<DisplayParticle>();
  954. List<Particle> Particles = new List<Particle>();
  955. foreach (var dp in m_list_allDPart)
  956. {
  957. if (dp.IsSelect)
  958. {
  959. selectedParts.Add((DisplayParticle)dp);
  960. Particle particle = new Particle();
  961. particle.FieldId = ((OTSIncAReportGraph.DisplayParticle)dp).FieldId;
  962. particle.ParticleId = ((OTSIncAReportGraph.DisplayParticle)dp).ParticleId;
  963. Particles.Add(particle);
  964. }
  965. }
  966. SendSelectParticleListToReportFrame(selectedParts);
  967. }
  968. /// <summary>
  969. /// 显示x-ray能谱图
  970. /// </summary>
  971. /// <param name="in_dparticle"></param>
  972. private void ShowParticleInfo(DisplayParticle in_dparticle)
  973. {
  974. if (delaytimer.Enabled == false)
  975. {
  976. m_mouseOver_dparticle = in_dparticle;//将显示xray的dparticle记录给全局变量
  977. delaytimer.Tick += Delaytimer_Tick;
  978. delaytimer.Interval = 500;
  979. delaytimer.Start();
  980. }
  981. }
  982. private void Delaytimer_Tick(object sender, EventArgs e)
  983. {
  984. delaytimer.Enabled = false;
  985. Point point = CalculateParticleCenterPosition(resultFile, new Point(m_mouseOver_dparticle.SEMPosX, m_mouseOver_dparticle.SEMPosY), new Point(m_mouseOver_dparticle.objParticleData.PosX, m_mouseOver_dparticle.objParticleData.PosY));
  986. m_str_mouseshow_left = "颗粒SEM位置:" + point.X.ToString() + ":" + point.Y.ToString();
  987. m_sem_mouse_now_point = point;
  988. //显示xray相关信息
  989. uint[] Search_xray = new uint[2000];
  990. uint[] Analysis_xray = new uint[2000];
  991. //
  992. int i_xray_id = 0;
  993. List<Element> list_celementchemistryclr = new List<Element>();
  994. //获取Xray数据
  995. imageDisHelper.GetXrayByParticleTagIDAndFieldID_ForDrawDistrbutionImageAndBSE(m_mouseOver_dparticle.ParticleId, m_mouseOver_dparticle.FieldId, out Search_xray, out Analysis_xray, out i_xray_id, out list_celementchemistryclr);
  996. //get CElementChemistryClr list
  997. List<ShowElementInfo> list_showelementinfo = new List<ShowElementInfo>();
  998. for (int i = 0; i < list_celementchemistryclr.Count; i++)
  999. {
  1000. ShowElementInfo ls_sei = new ShowElementInfo();
  1001. ls_sei.ElementName = list_celementchemistryclr[i].Name;
  1002. ls_sei.Percentage = list_celementchemistryclr[i].Percentage;
  1003. ls_sei.dKF = Convert.ToDouble(CListPeriodic.GetPeriodicByEleName(ls_sei.ElementName).K_Peak);
  1004. double de_sx2 = 0;
  1005. if (CListPeriodic.GetPeriodicByEleName(ls_sei.ElementName).L_Peak == "" || CListPeriodic.GetPeriodicByEleName(ls_sei.ElementName).L_Peak == "-")
  1006. {
  1007. de_sx2 = 0;
  1008. }
  1009. else
  1010. {
  1011. de_sx2 = Convert.ToDouble(CListPeriodic.GetPeriodicByEleName(ls_sei.ElementName).L_Peak);
  1012. }
  1013. ls_sei.dLF = de_sx2;
  1014. list_showelementinfo.Add(ls_sei);
  1015. }
  1016. string str_IncAName = "";
  1017. str_IncAName = m_mouseOver_dparticle.TypeName;
  1018. Particle particle = resultFile.List_OTSField.Find(x => x.FieldID == m_mouseOver_dparticle.FieldId).ParticleList.Find(x => x.ParticleId == m_mouseOver_dparticle.ParticleId);
  1019. control_XRayTable1.SetParticleInfo("Area:" + Math.Round(particle.Area, 2) + " " + "DELONG:" + Math.Round(particle.DELONG, 2) + " " + "DFERET:" + Math.Round(particle.DFERET, 2) + " " + "DINSCR:" + Math.Round(particle.DINSCR, 2) + " " + "DMAX:" + Math.Round(particle.DMAX, 2) + "\n" + "DMEAN:" + Math.Round(particle.DMEAN, 2) + " " + "DMIN:" + Math.Round(particle.DMIN, 2) + " " + "DPERP:" + Math.Round(particle.DPERP, 2) + " " + "ORIENTATION:" + Math.Round(particle.ORIENTATION, 2) + " " + "PERIMETER:" + Math.Round(particle.PERIMETER, 2));
  1020. //获取数据后,需要对xraytable设置
  1021. control_XRayTable1.Visible = true;
  1022. control_XRayTable1.SetXRayShowLineValue(Search_xray, Analysis_xray, list_showelementinfo);
  1023. //颗粒国标信息
  1024. control_XRayTable1.GBInfoStr = "";
  1025. control_XRayTable1.MaterialName = str_IncAName;//杂夹物
  1026. control_XRayTable1.List_ShowElementInfo = list_showelementinfo;
  1027. Invalidate();
  1028. }
  1029. /// <summary>
  1030. /// 隐藏x-ray能谱图
  1031. /// </summary>
  1032. private void HideParticleInfo(DisplayParticle in_dparticle)
  1033. {
  1034. if (m_mouseOver_dparticle == null)
  1035. return;
  1036. if (m_mouseOver_dparticle.guid == in_dparticle.guid || m_mouseOver_dparticle.IsDeleted == true)
  1037. {
  1038. //如果是刚才移动过的颗粒的话,那么这里再对xray进行隐藏
  1039. control_XRayTable1.Visible = false;
  1040. delaytimer.Enabled = false;
  1041. }
  1042. }
  1043. /// <summary>
  1044. /// 根据传入的鼠标位置,来获取当前鼠标位置上的灰度值
  1045. /// </summary>
  1046. /// <param name="int_x"></param>
  1047. /// <param name="int_y"></param>
  1048. /// <returns></returns>
  1049. private Color GetColorByMousePoint(int int_x, int int_y)
  1050. {
  1051. Graphics g = Graphics.FromHwnd(this.Handle);
  1052. IntPtr hdc = g.GetHdc();
  1053. uint u_color = 0;
  1054. try
  1055. {
  1056. u_color = DrawFunction.GetPixel(hdc, int_x, int_y);
  1057. }
  1058. catch
  1059. { }
  1060. Color ls_c = Color.FromArgb
  1061. (
  1062. (int)(u_color << 24 >> 24),
  1063. (int)(u_color << 16 >> 24),
  1064. (int)(u_color << 8 >> 24)
  1065. );
  1066. return ls_c;
  1067. }
  1068. /// <summary>
  1069. /// 封装,将分布图中的颗粒list传送给报告项目框架中
  1070. /// </summary>
  1071. private void SendSelectParticleListToReportFrame(List<DisplayParticle> selectParts)
  1072. {
  1073. frmReportApp.selectedParticles.Clear();
  1074. foreach (var p in selectParts)
  1075. {
  1076. frmReportApp.selectedParticles.Add(p.guid, p);
  1077. }
  1078. }
  1079. /// <summary>
  1080. /// 设置当前对哪些颗粒进行设置为选择状态
  1081. /// </summary>
  1082. /// <param name="in_list_cotsparticleclr"></param>
  1083. public void SetSelectParticle(List<Particle> particles)
  1084. {
  1085. if (particles == null)
  1086. {
  1087. return;
  1088. }
  1089. if (particles.Count == 0)
  1090. {
  1091. return;
  1092. }
  1093. foreach (DisplayParticle ls_dp in m_list_allDPart)
  1094. {
  1095. if (ls_dp.GetPaintState() == PaintState.PAINT)
  1096. {
  1097. for (int i = 0; i < particles.Count; i++)
  1098. {
  1099. if (particles[i].ParticleId == ls_dp.ParticleId
  1100. && particles[i].FieldId == ls_dp.FieldId)
  1101. {
  1102. ls_dp.IsSelect = true;
  1103. }
  1104. }
  1105. }
  1106. }
  1107. }
  1108. private void toolStripMenuItem_copyimage_Click(object sender, EventArgs e)
  1109. {
  1110. //SaveFileDialog sfd = new SaveFileDialog();
  1111. //sfd.Filter = "png Files(*.png)| *.png |BMP Files(*.bmp)| *.bmp |JPG Files(*.jpg)|*.jpg;*.jpeg";
  1112. //if (sfd.ShowDialog() == DialogResult.OK)
  1113. //{
  1114. // this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  1115. // OutPIC outpic = new OutPIC();
  1116. // outpic.m_list_allDfield = m_list_allDfield;
  1117. // outpic.resultFile = resultFile;
  1118. // outpic.sfd = sfd;
  1119. // outpic.type = (int)Outpic_enum.pic;
  1120. // outpic.m_ReportApp = m_ReportApp;
  1121. // Thread bThread = new Thread(new ThreadStart(outpic.opencv_outpic));
  1122. // bThread.IsBackground = true;
  1123. // bThread.Start();
  1124. //}
  1125. SaveFileDialog sfd = new SaveFileDialog();
  1126. sfd.Filter = "png Files(*.png)| *.png |BMP Files(*.bmp)| *.bmp |JPG Files(*.jpg)|*.jpg;*.jpeg";
  1127. if (sfd.ShowDialog() == DialogResult.OK)
  1128. {
  1129. this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  1130. OutPIC outpic = new OutPIC();
  1131. outpic.m_list_allDfield = m_list_allDfield;
  1132. outpic.resultFile = resultFile;
  1133. outpic.sfd = sfd;
  1134. outpic.type = (int)Outpic_enum.ColoredParticles;
  1135. outpic.m_ReportApp = m_ReportApp;
  1136. Thread bThread = new Thread(new ThreadStart(outpic.opencv_outpic));
  1137. bThread.IsBackground = true;
  1138. bThread.Start();
  1139. }
  1140. }
  1141. public void msgInform()
  1142. {
  1143. MessageBox.Show("Export completed!");
  1144. this.Cursor = System.Windows.Forms.Cursors.Default;
  1145. }
  1146. private void ToolStripMenuItem_movesempoint_Click(object sender, EventArgs e)
  1147. {
  1148. //移动SEM到指定位置
  1149. if (m_mythread == null)
  1150. {
  1151. return;
  1152. }
  1153. if (m_mythread.ThreadState == System.Threading.ThreadState.Running || m_mythread.ThreadState == System.Threading.ThreadState.WaitSleepJoin)
  1154. {
  1155. return;
  1156. }
  1157. if (m_mythread.ThreadState == System.Threading.ThreadState.Stopped)
  1158. {
  1159. m_mythread = new Thread(new ParameterizedThreadStart(Thread_GO));
  1160. }
  1161. //改为线程调用,先判断线程状态
  1162. m_mythread.Start(new Point(m_sem_mouse_now_point.X, m_sem_mouse_now_point.Y));
  1163. }
  1164. #endregion
  1165. #region 自定义功能函数
  1166. /// <summary>
  1167. /// 复制图像
  1168. /// </summary>
  1169. private void CopyImage()
  1170. {
  1171. int height, width;
  1172. width = this.Width;
  1173. height = this.Height;
  1174. Bitmap image = new Bitmap(width, height);
  1175. //this.BackgroundImage
  1176. this.DrawToBitmap(image, new Rectangle(0, 0, width, height));
  1177. Clipboard.SetImage(image);
  1178. }
  1179. /// <summary>
  1180. /// 移动SEM到指定位置线程函数
  1181. /// </summary>
  1182. private void Thread_GO(object in_obj)
  1183. {
  1184. Point sem_point = (Point)in_obj;
  1185. //第二步,移动到指定位置,先读取再设置
  1186. if (imageDisHelper.ConnectToIpcSvr())
  1187. {
  1188. imageDisHelper.MoveSemToPointXY(sem_point.X, sem_point.Y);
  1189. }
  1190. }
  1191. /// <summary>
  1192. /// 按框架传入的底层计算结果,重新对颗粒进行区分显示
  1193. /// </summary>
  1194. /// <param name="in_cgriddataclr"></param>
  1195. public void DrawDistrbutionImageAndBSE_ByQuery(ReportCondition in_griddata)
  1196. {
  1197. FilterParticleByOtherCondition(in_griddata);
  1198. Invalidate();
  1199. this.Refresh();
  1200. }
  1201. /// <summary>
  1202. /// 对分布图进行宽度匹配操作
  1203. /// </summary>
  1204. public void WidthMatch()
  1205. {
  1206. if (this.Width != m_backRect.Width)
  1207. {
  1208. float f_cz = 0;//进行调整的差值
  1209. f_cz = -((m_backRect.Width - this.Width) / m_backRect.Width);
  1210. var theZoom = m_zoom_record + m_zoom_record * f_cz;//更新上缩放值,与下面处理缩放对应上
  1211. ImageZoom(theZoom, new PointF(0, 0));
  1212. }
  1213. MoveImageToPoint(new PointF(0, 0));
  1214. }
  1215. /// <summary>
  1216. /// 对分布图进行高度匹配操作
  1217. /// </summary>
  1218. public void HeightMatch()
  1219. {
  1220. if (this.Height != m_backRect.Height)
  1221. {
  1222. float f_cz = 0;//进行调整的差值
  1223. f_cz = -((m_backRect.Height - this.Height) / m_backRect.Height);
  1224. var currentZoom = m_zoom_record + f_cz;//更新上缩放值,与下面处理缩放对应上
  1225. ImageZoom(currentZoom, new PointF(0, 0));
  1226. }
  1227. //移动到,this.width - backrectf.width /2
  1228. int ls_x = (int)(this.Width - m_backRect.Width) / 2;
  1229. MoveImageToPoint(new PointF(ls_x, 0));
  1230. }
  1231. /// <summary>
  1232. /// 对分布图进行全图匹配操作
  1233. /// </summary>
  1234. public void FullGraphMatch()
  1235. {
  1236. //全图匹配,首先要判断出来是按宽度来计算缩放,还是按高度来计算缩放
  1237. double thiswidth = this.Width;
  1238. double thisheight = this.Height;
  1239. double imagewidth = m_backRect.Width;
  1240. double imageheight = m_backRect.Height;
  1241. //如果宽已相等rect在thisheight范围内,是宽度匹配已经达到目的,或是高已相等rect在thiswidth范围内,是高度匹配已经达到目的
  1242. if ((thiswidth == imagewidth && thisheight > imagewidth) || (thisheight == imageheight && thiswidth > imagewidth))
  1243. {
  1244. //已经达到目的不操作,返回
  1245. return;
  1246. }
  1247. //判断当前是否宽度匹配未达到全图匹配效果
  1248. if (thiswidth == imagewidth && thisheight < imageheight)
  1249. {
  1250. //说明目前已经达到了宽度匹配,但是未能显示完全整图需要高度匹配
  1251. HeightMatch();
  1252. m_f_zoom_mix = m_zoom_record;
  1253. return;
  1254. }
  1255. //判断当前是否高度匹配未达到全图匹配效果
  1256. if (thisheight == imageheight && thiswidth < imagewidth)
  1257. {
  1258. //说明目前已经达到了高度匹配,但是未能显示完全的整图需要宽度匹配
  1259. WidthMatch();
  1260. m_f_zoom_mix = m_zoom_record;
  1261. return;
  1262. }
  1263. ls_d_cz_width = Math.Abs(thiswidth / imagewidth);
  1264. ls_d_cz_height = Math.Abs(thisheight / imageheight);
  1265. //应该是看谁差的倍数大就按谁的进行调整,而不只能看高宽的差值
  1266. if ((1 - ls_d_cz_width) > (1 - ls_d_cz_height))
  1267. {
  1268. //宽差大,就调用WidthMate
  1269. WidthMatch();
  1270. }
  1271. else
  1272. {
  1273. //高差大,则调用HightMate
  1274. HeightMatch();
  1275. }
  1276. m_f_zoom_mix = m_zoom_record;
  1277. }
  1278. /// <summary>
  1279. /// 将整个图像的位置移动到指定的位置上
  1280. /// </summary>
  1281. private void MoveImageToPoint(PointF in_pointf)
  1282. {
  1283. SizeF offex_p = new SizeF(m_backRect.X - in_pointf.X, m_backRect.Y - in_pointf.Y);
  1284. //同样重新计算backrectf的坐标
  1285. m_backRect = new RectangleF(in_pointf.X, in_pointf.Y,
  1286. m_backRect.Width, m_backRect.Height);
  1287. for (int i = 0; i < m_list_allDPart.Count; i++)
  1288. {
  1289. DisplayParticle dp = m_list_allDPart[i];
  1290. dp.Move(offex_p);
  1291. PointF ct = dp.GetCenterPoint();
  1292. if (ct.X < -100 || ct.X > this.Width + 100 || ct.Y < -100 || ct.Y > this.Height + 100)
  1293. {
  1294. dp.SetPaintState(PaintState.NOPAINT);//the particles which are out of screen don't display.to speed up the display efficient.
  1295. }
  1296. else
  1297. {
  1298. dp.SetPaintState(PaintState.PAINT);
  1299. }
  1300. }
  1301. for (int i = 0; i < m_list_allDfield.Count; i++)
  1302. {
  1303. var f = m_list_allDfield[i];
  1304. f.Move(offex_p);
  1305. }
  1306. for (int i = 0; i < m_CurGBFields.Count; i++)
  1307. {
  1308. var f = m_CurGBFields[i];
  1309. f.Move(offex_p);
  1310. }
  1311. Invalidate();
  1312. }
  1313. /// <summary>
  1314. /// 是否显示边框格线,自动切换显示与不显示
  1315. /// </summary>
  1316. /// <param name="b_show"></param>
  1317. public void ShowGridLine()
  1318. {
  1319. m_is_showgrid = !m_is_showgrid;
  1320. }
  1321. /// <summary>
  1322. /// 是否显示标尺控件
  1323. /// </summary>
  1324. /// <param name="b_show"></param>
  1325. public void ShowRulerControl()
  1326. {
  1327. control_Ruler1.Visible = !control_Ruler1.Visible;
  1328. }
  1329. /// <summary>
  1330. /// 是否显示边框格线,带参重载
  1331. /// </summary>
  1332. /// <param name="b_show"></param>
  1333. public void ShowGridLine(bool b_show)
  1334. {
  1335. m_is_showgrid = b_show;
  1336. }
  1337. /// <summary>
  1338. /// 是否显示标尺控件,带参重载
  1339. /// </summary>
  1340. /// <param name="b_show"></param>
  1341. public void ShowRulerControl(bool b_show)
  1342. {
  1343. control_Ruler1.Visible = b_show;
  1344. }
  1345. /// <summary>
  1346. /// 颗粒分割
  1347. /// </summary>
  1348. public void Particle_Segmentation()
  1349. {
  1350. m_ParticleSegmentation.IsParticleSegmentation = true;
  1351. m_ParticleSegmentation.StartPoint = new Point();
  1352. m_ParticleSegmentation.EndPoint = new Point();
  1353. }
  1354. /// <summary>
  1355. /// 是否进行矩形多选操作
  1356. /// </summary>
  1357. public void MultiSelect_Rectangle()
  1358. {
  1359. m_SelectTool.IsSelecting = true;
  1360. m_SelectTool.Shape = SelectedShape.Rectangle;
  1361. m_SelectTool.Rect = new RectangleF();
  1362. m_SelectTool.Rect.Width = 0;
  1363. m_SelectTool.Rect.Height = 0;
  1364. }
  1365. /// <summary>
  1366. /// 是否进行圆形多选操作
  1367. /// </summary>
  1368. public void MultiSelect_Ellipse()
  1369. {
  1370. m_SelectTool.IsSelecting = true;
  1371. m_SelectTool.Shape = SelectedShape.Ellipse;
  1372. m_SelectTool.Rect = new RectangleF();
  1373. m_SelectTool.Rect.Width = 0;
  1374. m_SelectTool.Rect.Height = 0;
  1375. }
  1376. /// <summary>
  1377. /// 对选择的多边形进行反选操作
  1378. /// </summary>
  1379. public void ReverseSelection()
  1380. {
  1381. foreach (DisplayParticle dp in m_list_allDPart)
  1382. {
  1383. if (dp.IsSelect)
  1384. {
  1385. dp.IsSelect = false;
  1386. }
  1387. else
  1388. {
  1389. dp.IsSelect = true;
  1390. }
  1391. }
  1392. this.Invalidate();
  1393. }
  1394. /// <summary>
  1395. /// 取消所有的颗粒的选择状态
  1396. /// </summary>
  1397. public void DeselectAllParticle()
  1398. {
  1399. foreach (DisplayParticle dp in m_list_allDPart)
  1400. {
  1401. dp.IsSelect = false;
  1402. }
  1403. this.Invalidate();
  1404. }
  1405. /// <summary>
  1406. /// 将整个图像拷贝到内存中
  1407. /// </summary>
  1408. public void CopyToBitmap()
  1409. {
  1410. Bitmap bp = new Bitmap(this.Size.Width, this.Size.Height);
  1411. this.DrawToBitmap(bp, new Rectangle(0, 0, this.Size.Width, this.Size.Height));
  1412. Clipboard.SetImage(bp);
  1413. }
  1414. /// <summary>
  1415. /// 设置显示BSE原图,还是显示分布图带有标准库的
  1416. /// </summary>
  1417. public void SetShowMode(DISTRIBUTION_IMAGE_SHOW_MODE a_type)
  1418. {
  1419. showMode = a_type;
  1420. this.Invalidate();
  1421. }
  1422. /// <summary>
  1423. /// 根据传入的颗粒状态,来获取所有该颗粒状态下的数据,用来测试统计使用
  1424. /// </summary>
  1425. /// <param name="str_particlestate"></param>
  1426. /// <returns></returns>
  1427. public int GetParticleNumberByState(PaintState in_ParticleState)
  1428. {
  1429. int icount = 0;
  1430. foreach (DisplayParticle ls_dp in m_list_allDPart)
  1431. {
  1432. if (ls_dp.GetPaintState() == in_ParticleState)
  1433. {
  1434. icount++;
  1435. }
  1436. }
  1437. return icount;
  1438. }
  1439. /// <summary>
  1440. /// 获取所有原图
  1441. /// </summary>
  1442. /// <param name="args"></param>
  1443. /// <returns></returns>
  1444. private void DrawOriginalImageAsBackground(PaintEventArgs args)
  1445. {
  1446. foreach (var f in m_list_allDfield)
  1447. {
  1448. var curfldrec = f.GetShowRect();
  1449. if (curfldrec.Left > -2000 && curfldrec.Right < this.Width + 2000 && curfldrec.Top > -2000 && curfldrec.Bottom < this.Height + 2000)
  1450. {
  1451. args.Graphics.DrawImage(f.OriginalImage, curfldrec.X, curfldrec.Y, curfldrec.Width, curfldrec.Height);
  1452. if (curfldrec.Width > this.Width)// only when zoom to a certain magnification do we display the xray Positon point as "+"
  1453. {
  1454. Graphics g = args.Graphics;
  1455. for (int i = 0; i < f.List_DParticle.Count; i++)
  1456. {
  1457. PointF xrayPos = new PointF(f.List_DParticle[i].objParticleData.PosX, f.List_DParticle[i].objParticleData.PosY);
  1458. PointF p = new PointF(xrayPos.X / f.OriginalImage.Width * curfldrec.Width + curfldrec.X, xrayPos.Y / f.OriginalImage.Height * curfldrec.Height + curfldrec.Y);
  1459. g.DrawString("+", new Font("黑体", 6), new SolidBrush(Color.Red), p);
  1460. }
  1461. }
  1462. }
  1463. }
  1464. }
  1465. #endregion
  1466. private void ExportoriginalspliceToolStripMenuItem_Click(object sender, EventArgs e)
  1467. {
  1468. SaveFileDialog sfd = new SaveFileDialog();
  1469. var particledata = new ParticleData(resultFile.FilePath);
  1470. DataTable ParticleAll = particledata.GetParticleTypeInformation();
  1471. DataTable ParticleClass = particledata.GetParticleClassAll();
  1472. //|ALL Files(*.*)|*.*
  1473. //BMP Files(*.bmp)| *.bmp |
  1474. sfd.Filter = "png Files(*.png)| *.png |BMP Files(*.bmp)| *.bmp |JPG Files(*.jpg)|*.jpg;*.jpeg";
  1475. if (sfd.ShowDialog() == DialogResult.OK)
  1476. {
  1477. this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  1478. OutPIC outpic = new OutPIC();
  1479. outpic.m_list_allDfield = m_list_allDfield;
  1480. outpic.resultFile = resultFile;
  1481. outpic.sfd = sfd;
  1482. outpic.type = (int)Outpic_enum.Render_pic;
  1483. outpic.ParticleData = ParticleAll.Copy();
  1484. outpic.ParticleClassData = ParticleClass.Copy();
  1485. outpic.m_ReportApp = m_ReportApp;
  1486. Thread bThread = new Thread(new ThreadStart(outpic.opencv_outpic));
  1487. bThread.IsBackground = true;
  1488. bThread.Start();
  1489. }
  1490. }
  1491. private void ToolStripMenuItemDelete_Particle_Click(object sender, EventArgs e)
  1492. {
  1493. DialogResult dr = MessageBox.Show("Remove all these particles permanently?", "Tips", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
  1494. if (dr == DialogResult.OK)
  1495. {
  1496. foreach (var p in m_list_allDPart)
  1497. {
  1498. if (p.IsSelect)
  1499. {
  1500. DeleteParticlesFromLibrary(p.objParticleData.ParticleId, p.objParticleData.FieldId);
  1501. p.IsDeleted = true;
  1502. }
  1503. }
  1504. MessageBox.Show("Deleted successfully");
  1505. Invalidate();
  1506. }
  1507. else
  1508. {
  1509. return;
  1510. }
  1511. }
  1512. public void DeletesParticlesSynchronously(List<Particle> list_Part)
  1513. {
  1514. foreach (var p in m_list_allDPart)
  1515. {
  1516. foreach (var p_Selected in list_Part)
  1517. {
  1518. if (p.ParticleId == p_Selected.ParticleId && p.FieldId == p_Selected.FieldId)
  1519. {
  1520. p.IsDeleted = true;
  1521. break;
  1522. }
  1523. }
  1524. }
  1525. Invalidate();
  1526. }
  1527. private bool DeleteParticlesFromLibrary(int in_clr_tagid, int in_clr_fieldid)
  1528. {
  1529. bool DoesItExist = false;
  1530. for (int i = 1; i < 201; i++)
  1531. {
  1532. if (System.IO.Directory.Exists(resultFile.FilePath + "\\FIELD_FILES\\Backups" + i.ToString()))
  1533. {
  1534. DoesItExist = true;
  1535. break;
  1536. }
  1537. }
  1538. if (!DoesItExist)
  1539. {
  1540. //备份数据库 ,.
  1541. BackupDatabase();
  1542. }
  1543. DoesItExist = false;
  1544. //防止为空校验判断
  1545. if (resultFile.List_OTSField == null)
  1546. return false;
  1547. Particle particle = resultFile.List_OTSField.Find(x => x.FieldID == in_clr_fieldid).ParticleList.Find(x => x.ParticleId == in_clr_tagid);
  1548. if (new ParticleData(resultFile.FilePath).DeleteFromData(Convert.ToString(particle.FieldId), Convert.ToString(particle.XrayId)))
  1549. {
  1550. return true;
  1551. }
  1552. else
  1553. {
  1554. return false;
  1555. }
  1556. }
  1557. public bool WhetherThereAreDeleteParticles()
  1558. {
  1559. foreach (var p in m_list_allDPart)
  1560. {
  1561. if (p.IsDeleted)
  1562. {
  1563. return true;
  1564. }
  1565. }
  1566. return false;
  1567. }
  1568. private bool BackupDatabase()
  1569. {
  1570. //创建备份数据库文件夹
  1571. string sourcePath = resultFile.FilePath + "\\FIELD_FILES\\Inclusion.db";//源文件路径
  1572. string sourceName = "Inclusion.db";//源文件名称
  1573. string folderPath = resultFile.FilePath + "\\FIELD_FILES\\Backups";//目标文件夹
  1574. string Fields = "";
  1575. for (int i = 1; i < 201; i++)
  1576. {
  1577. if (System.IO.Directory.Exists(folderPath + i.ToString()))
  1578. {
  1579. Fields = folderPath + i.ToString();
  1580. continue;
  1581. }
  1582. else
  1583. {
  1584. System.IO.Directory.CreateDirectory(folderPath + i.ToString());
  1585. Fields = folderPath + i.ToString();
  1586. break;
  1587. }
  1588. }
  1589. if (Fields == "")
  1590. {
  1591. return false;
  1592. }
  1593. //复制数据库文件
  1594. string targetPath = Path.Combine(Fields, sourceName);
  1595. FileInfo file = new FileInfo(sourcePath);
  1596. if (file.Exists)
  1597. {
  1598. file.CopyTo(targetPath, true);
  1599. }
  1600. return true;
  1601. }
  1602. int GetsIntersectionOfTheIntercepts(Point P1, Point P2, int y)
  1603. {
  1604. int x = (y - P1.Y * P2.X + P1.X * P2.Y) / (P2.Y - P1.Y);
  1605. return x;
  1606. }
  1607. private void 显示国标信息ToolStripMenuItem_Click(object sender, EventArgs e)
  1608. {
  1609. Cursor = Cursors.WaitCursor;
  1610. m_CurGBFields.Clear();
  1611. int index = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTS_REPORT_PROP_GRID_ITEMS.DATA_SOURCE);
  1612. for (int i = 0; i < m_ReportApp.m_rstDataMgr.ResultFilesList.Count; i++)
  1613. {
  1614. string anothername = m_ReportApp.m_rstDataMgr.ResultFilesList[i].anotherFileName.ToString();
  1615. string resultfile = m_ReportApp.m_rstDataMgr.ResultFilesList[i].FilePath.ToString() + "\\" + m_ReportApp.m_rstDataMgr.ResultFilesList[i].FileName_real.ToString();
  1616. m_ReportApp.m_rstDataMgr.m_ReportMgr.AddASmplMsrResultMgr(resultfile, anothername);
  1617. }
  1618. OTSCLRINTERFACE.CPropParamClr clr_prop = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetPropertyParamTable();
  1619. List<string> datasourcelist = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListByItemName(OTS_REPORT_PROP_GRID_ITEMS.DATA_SOURCE);
  1620. clr_prop.SetDataSourceList(datasourcelist);
  1621. clr_prop.SetDataSourceId(index);//
  1622. clr_prop.SetType((int)DisplayPicutureType.AnalyzeDataTable);//table
  1623. DataTable tbl;//
  1624. var menuItm = (ToolStripMenuItem)sender;
  1625. string tag = menuItm.Tag.ToString();
  1626. switch (tag)
  1627. {
  1628. case "All1":
  1629. clr_prop.SetCalTableType((int)CALCULATE_TABLE_TYPE.GB_Method1);
  1630. tbl = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetAllGBFields(clr_prop);
  1631. break;
  1632. case "DS1":
  1633. clr_prop.SetCalTableType((int)CALCULATE_TABLE_TYPE.GB_Method1);
  1634. tbl = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetGBDSParticles(clr_prop);
  1635. break;
  1636. case "All2":
  1637. clr_prop.SetCalTableType((int)CALCULATE_TABLE_TYPE.GB_Method2);
  1638. tbl = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetAllGBFields(clr_prop);
  1639. break;
  1640. case "DS2":
  1641. clr_prop.SetCalTableType((int)CALCULATE_TABLE_TYPE.GB_Method2);
  1642. tbl = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetGBDSParticles(clr_prop);
  1643. break;
  1644. case "ASTMAll":
  1645. clr_prop.SetCalTableType((int)CALCULATE_TABLE_TYPE.ASTM);
  1646. tbl = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetAllGBFields(clr_prop);
  1647. break;
  1648. default:
  1649. tbl = new DataTable();
  1650. break;
  1651. }
  1652. if (tag == "All1" || tag == "All2" || tag == "ASTMAll")
  1653. {
  1654. if (tbl.Rows.Count > 0)
  1655. {
  1656. foreach (DataRow r in tbl.Rows)
  1657. {
  1658. Point p = new Point(Convert.ToInt32(r["fieldX"]), Convert.ToInt32(r["fieldY"]));
  1659. Point screenP = imageDisHelper.ConvertOTSCoordToScreenCoord(p);
  1660. int gbfldwidth = Convert.ToInt32(710.0 / imageDisHelper.m_pixelSize);
  1661. var df = new DisplayField(gbfldwidth, gbfldwidth, p, screenP);
  1662. df.Zoom(m_zoom_record - 1, new PointF(0, 0));
  1663. df.Move(new SizeF(-m_backRect.X, -m_backRect.Y));
  1664. int topgrade = Convert.ToInt32(r["topGrade"]);
  1665. switch (topgrade)
  1666. {
  1667. case 0:
  1668. df.ContentColor = Color.White;
  1669. break;
  1670. case 1:
  1671. df.ContentColor = Color.DarkGray;
  1672. break;
  1673. case 2:
  1674. df.ContentColor = Color.Purple;
  1675. break;
  1676. case 3:
  1677. df.ContentColor = Color.Blue;
  1678. break;
  1679. case 4:
  1680. df.ContentColor = Color.Red;
  1681. break;
  1682. case 5:
  1683. df.ContentColor = Color.Red;
  1684. break;
  1685. default:
  1686. df.ContentColor = Color.Red;
  1687. break;
  1688. }
  1689. string grade = r["gradeDetail"].ToString();
  1690. df.gradeString = grade;
  1691. m_CurGBFields.Add(df);
  1692. }
  1693. }
  1694. }
  1695. else if (tag == "DS1" || tag == "DS2")
  1696. {
  1697. if (tbl.Rows.Count > 0)
  1698. {
  1699. foreach (DataRow r in tbl.Rows)
  1700. {
  1701. int fid = Convert.ToInt32(r["fieldId"]);
  1702. int pid = Convert.ToInt32(r["particleId"]);
  1703. foreach (var p in m_list_allDPart)
  1704. {
  1705. if (p.objParticleData.FieldId == fid && p.objParticleData.ParticleId == pid)
  1706. {
  1707. p.IsSelect = true;
  1708. break;
  1709. }
  1710. }
  1711. }
  1712. }
  1713. }
  1714. Cursor = Cursors.Default;
  1715. Invalidate();
  1716. }
  1717. private void 清除ToolStripMenuItem_Click(object sender, EventArgs e)
  1718. {
  1719. m_CurGBFields.Clear();
  1720. Invalidate();
  1721. }
  1722. private void ToolStripMenuItem_ParticleSplicing_Click(object sender, EventArgs e)
  1723. {
  1724. SaveFileDialog sfd = new SaveFileDialog();
  1725. sfd.Filter = "png Files(*.png)| *.png |BMP Files(*.bmp)| *.bmp |JPG Files(*.jpg)|*.jpg;*.jpeg";
  1726. if (sfd.ShowDialog() == DialogResult.OK)
  1727. {
  1728. this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  1729. OutPIC outpic = new OutPIC();
  1730. outpic.m_list_allDfield = m_list_allDfield;
  1731. outpic.resultFile = resultFile;
  1732. outpic.sfd = sfd;
  1733. outpic.type = (int)Outpic_enum.noBackground_pic;
  1734. outpic.m_ReportApp = m_ReportApp;
  1735. Thread bThread = new Thread(new ThreadStart(outpic.opencv_outpic));
  1736. bThread.IsBackground = true;
  1737. bThread.Start();
  1738. }
  1739. }
  1740. protected override bool ProcessDialogKey(Keys keyData)
  1741. {
  1742. if (keyData == Keys.Escape)
  1743. {
  1744. DeselectAllParticle();
  1745. frmReportApp.selectedParticles.Clear();
  1746. return false;
  1747. }
  1748. return base.ProcessDialogKey(keyData);
  1749. }
  1750. private void toolStripMenuItem_Segmentation_Click(object sender, EventArgs e)
  1751. {
  1752. Particle_Segmentation();
  1753. }
  1754. private void toolStripMenuItem_combinClass_Click(object sender, EventArgs e)
  1755. {
  1756. SaveFileDialog sfd = new SaveFileDialog();
  1757. sfd.Filter = "png Files(*.png)| *.png |BMP Files(*.bmp)| *.bmp |JPG Files(*.jpg)|*.jpg;*.jpeg";
  1758. if (sfd.ShowDialog() == DialogResult.OK)
  1759. {
  1760. this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  1761. OutPIC outpic = new OutPIC();
  1762. outpic.m_list_allDfield = m_list_allDfield;
  1763. outpic.resultFile = resultFile;
  1764. outpic.sfd = sfd;
  1765. outpic.type = (int)Outpic_enum.Render_pic;
  1766. outpic.m_ReportApp = m_ReportApp;
  1767. Thread bThread = new Thread(new ThreadStart(outpic.opencv_outpic));
  1768. bThread.IsBackground = true;
  1769. bThread.Start();
  1770. }
  1771. }
  1772. private void toolStripMenuItem_combin_Click(object sender, EventArgs e)
  1773. {
  1774. SaveFileDialog sfd = new SaveFileDialog();
  1775. sfd.Filter = "png Files(*.png)| *.png |BMP Files(*.bmp)| *.bmp |JPG Files(*.jpg)|*.jpg;*.jpeg";
  1776. if (sfd.ShowDialog() == DialogResult.OK)
  1777. {
  1778. this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  1779. OutPIC outpic = new OutPIC();
  1780. outpic.m_list_allDfield = m_list_allDfield;
  1781. outpic.resultFile = resultFile;
  1782. outpic.sfd = sfd;
  1783. outpic.type = (int)Outpic_enum.pic;
  1784. outpic.m_ReportApp = m_ReportApp;
  1785. Thread bThread = new Thread(new ThreadStart(outpic.opencv_outpic));
  1786. bThread.IsBackground = true;
  1787. bThread.Start();
  1788. }
  1789. }
  1790. private void 显示当前帧国标分类ToolStripMenuItem_Click(object sender, EventArgs e)
  1791. {
  1792. }
  1793. DataTable GetAllPartsOfCurrentGBField()
  1794. {
  1795. DataTable tbl;//
  1796. if (m_CurGBFields.Count == 0)
  1797. {
  1798. return new DataTable();
  1799. }
  1800. int index = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTS_REPORT_PROP_GRID_ITEMS.DATA_SOURCE);
  1801. OTSCLRINTERFACE.CPropParamClr clr_prop = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetPropertyParamTable();
  1802. List<string> datasourcelist = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListByItemName(OTS_REPORT_PROP_GRID_ITEMS.DATA_SOURCE);
  1803. clr_prop.SetDataSourceList(datasourcelist);
  1804. clr_prop.SetDataSourceId(index);//
  1805. clr_prop.SetType((int)DisplayPicutureType.AnalyzeDataTable);//table
  1806. DisplayField curfld = new DisplayField(1024,768,new Point(0,0),new Point(0,0));
  1807. foreach (var f in m_CurGBFields)
  1808. {
  1809. if (imageDisHelper.WhetherInRange(f, m_currentMouseDownPoint))
  1810. {
  1811. curfld = f;
  1812. }
  1813. }
  1814. clr_prop.SetCalTableType((int)CALCULATE_TABLE_TYPE.GB_Method1);
  1815. tbl = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetAllParticlesOfOneGBField(clr_prop, curfld.OTSCoordinatePos.X, curfld.OTSCoordinatePos.Y);
  1816. return tbl;
  1817. }
  1818. private void 全部ToolStripMenuItem_Click(object sender, EventArgs e)
  1819. {
  1820. Cursor = Cursors.WaitCursor;
  1821. //m_CurGBFields.Clear();
  1822. var tbl = GetAllPartsOfCurrentGBField();
  1823. if (tbl.Rows.Count > 0)
  1824. {
  1825. foreach (DataRow r in tbl.Rows)
  1826. {
  1827. int fid = Convert.ToInt32(r["fieldId"]);
  1828. int pid = Convert.ToInt32(r["particleId"]);
  1829. foreach (var p in m_list_allDPart)
  1830. {
  1831. if (p.objParticleData.FieldId == fid && p.objParticleData.ParticleId == pid)
  1832. {
  1833. p.IsSelect = true;
  1834. break;
  1835. }
  1836. }
  1837. }
  1838. }
  1839. Cursor = Cursors.Default;
  1840. Invalidate();
  1841. }
  1842. private void aToolStripMenuItem_Click(object sender, EventArgs e)
  1843. {
  1844. Cursor = Cursors.WaitCursor;
  1845. var tbl = GetAllPartsOfCurrentGBField();
  1846. if (tbl.Rows.Count > 0)
  1847. {
  1848. foreach (DataRow r in tbl.Rows)
  1849. {
  1850. int fid = Convert.ToInt32(r["fieldId"]);
  1851. int pid = Convert.ToInt32(r["particleId"]);
  1852. var typestr =Convert.ToString( r["gbClassify"]);
  1853. if (typestr == "A")
  1854. {
  1855. foreach (var p in m_list_allDPart)
  1856. {
  1857. if (p.objParticleData.FieldId == fid && p.objParticleData.ParticleId == pid)
  1858. {
  1859. p.IsSelect = true;
  1860. break;
  1861. }
  1862. }
  1863. }
  1864. }
  1865. }
  1866. Cursor = Cursors.Default;
  1867. Invalidate();
  1868. }
  1869. private void bToolStripMenuItem_Click(object sender, EventArgs e)
  1870. {
  1871. Cursor = Cursors.WaitCursor;
  1872. var tbl = GetAllPartsOfCurrentGBField();
  1873. if (tbl.Rows.Count > 0)
  1874. {
  1875. foreach (DataRow r in tbl.Rows)
  1876. {
  1877. int fid = Convert.ToInt32(r["fieldId"]);
  1878. int pid = Convert.ToInt32(r["particleId"]);
  1879. var typestr = Convert.ToString(r["gbClassify"]);
  1880. if (typestr == "B")
  1881. {
  1882. foreach (var p in m_list_allDPart)
  1883. {
  1884. if (p.objParticleData.FieldId == fid && p.objParticleData.ParticleId == pid)
  1885. {
  1886. p.IsSelect = true;
  1887. break;
  1888. }
  1889. }
  1890. }
  1891. }
  1892. }
  1893. Cursor = Cursors.Default;
  1894. Invalidate();
  1895. }
  1896. private void cToolStripMenuItem_Click(object sender, EventArgs e)
  1897. {
  1898. Cursor = Cursors.WaitCursor;
  1899. var tbl = GetAllPartsOfCurrentGBField();
  1900. if (tbl.Rows.Count > 0)
  1901. {
  1902. foreach (DataRow r in tbl.Rows)
  1903. {
  1904. int fid = Convert.ToInt32(r["fieldId"]);
  1905. int pid = Convert.ToInt32(r["particleId"]);
  1906. var typestr = Convert.ToString(r["gbClassify"]);
  1907. if (typestr == "C")
  1908. {
  1909. foreach (var p in m_list_allDPart)
  1910. {
  1911. if (p.objParticleData.FieldId == fid && p.objParticleData.ParticleId == pid)
  1912. {
  1913. p.IsSelect = true;
  1914. break;
  1915. }
  1916. }
  1917. }
  1918. }
  1919. }
  1920. Cursor = Cursors.Default;
  1921. Invalidate();
  1922. }
  1923. private void dToolStripMenuItem_Click(object sender, EventArgs e)
  1924. {
  1925. Cursor = Cursors.WaitCursor;
  1926. var tbl = GetAllPartsOfCurrentGBField();
  1927. if (tbl.Rows.Count > 0)
  1928. {
  1929. foreach (DataRow r in tbl.Rows)
  1930. {
  1931. int fid = Convert.ToInt32(r["fieldId"]);
  1932. int pid = Convert.ToInt32(r["particleId"]);
  1933. var typestr = Convert.ToString(r["gbClassify"]);
  1934. if (typestr == "D")
  1935. {
  1936. foreach (var p in m_list_allDPart)
  1937. {
  1938. if (p.objParticleData.FieldId == fid && p.objParticleData.ParticleId == pid)
  1939. {
  1940. p.IsSelect = true;
  1941. break;
  1942. }
  1943. }
  1944. }
  1945. }
  1946. }
  1947. Cursor = Cursors.Default;
  1948. Invalidate();
  1949. }
  1950. private DataTable GetGBDataTable(object sender, int met)
  1951. {
  1952. int index = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListIndexByItemName(OTS_REPORT_PROP_GRID_ITEMS.DATA_SOURCE);
  1953. for (int i = 0; i < m_ReportApp.m_rstDataMgr.ResultFilesList.Count; i++)
  1954. {
  1955. string anothername = m_ReportApp.m_rstDataMgr.ResultFilesList[i].anotherFileName.ToString();
  1956. string resultfile = m_ReportApp.m_rstDataMgr.ResultFilesList[i].FilePath.ToString() + "\\" + m_ReportApp.m_rstDataMgr.ResultFilesList[i].FileName_real.ToString();
  1957. m_ReportApp.m_rstDataMgr.m_ReportMgr.AddASmplMsrResultMgr(resultfile, anothername);
  1958. }
  1959. OTSCLRINTERFACE.CPropParamClr clr_prop = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetPropertyParamTable();
  1960. List<string> datasourcelist = m_ReportApp.m_conditionChoose.m_conditionData.GetComboDownListByItemName(OTS_REPORT_PROP_GRID_ITEMS.DATA_SOURCE);
  1961. clr_prop.SetDataSourceList(datasourcelist);
  1962. clr_prop.SetDataSourceId(index);//
  1963. clr_prop.SetType((int)DisplayPicutureType.AnalyzeDataTable);//table
  1964. DataTable tbl;//
  1965. clr_prop.SetCalTableType(met);
  1966. tbl = m_ReportApp.m_rstDataMgr.m_ReportMgr.GetAllGBFields(clr_prop);
  1967. return tbl;
  1968. }
  1969. private void 方法一ToolStripMenuItem_Click(object sender, EventArgs e)
  1970. {
  1971. SaveFileDialog sfd = new SaveFileDialog();
  1972. sfd.Filter = "png Files(*.png)| *.png |BMP Files(*.bmp)| *.bmp |JPG Files(*.jpg)|*.jpg;*.jpeg";
  1973. if (sfd.ShowDialog() == DialogResult.OK)
  1974. {
  1975. var datd = GetGBDataTable(sender, (int)CALCULATE_TABLE_TYPE.GB_Method1);
  1976. this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  1977. OutPIC outpic = new OutPIC();
  1978. outpic.GBDatatableOne = datd;
  1979. outpic.GridLength = Convert.ToInt32(710.0 / imageDisHelper.m_pixelSize);
  1980. outpic.m_list_allDfield = m_list_allDfield;
  1981. outpic.resultFile = resultFile;
  1982. outpic.sfd = sfd;
  1983. outpic.type = (int)Outpic_enum.GBOne;
  1984. outpic.m_ReportApp = m_ReportApp;
  1985. Thread bThread = new Thread(new ThreadStart(outpic.opencv_outpic));
  1986. bThread.IsBackground = true;
  1987. bThread.Start();
  1988. }
  1989. }
  1990. private void 方法二ToolStripMenuItem_Click(object sender, EventArgs e)
  1991. {
  1992. SaveFileDialog sfd = new SaveFileDialog();
  1993. sfd.Filter = "png Files(*.png)| *.png |BMP Files(*.bmp)| *.bmp |JPG Files(*.jpg)|*.jpg;*.jpeg";
  1994. if (sfd.ShowDialog() == DialogResult.OK)
  1995. {
  1996. var datd = GetGBDataTable(sender, (int)CALCULATE_TABLE_TYPE.GB_Method2);
  1997. this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  1998. OutPIC outpic = new OutPIC();
  1999. outpic.GBDatatableOne = datd;
  2000. outpic.GridLength = Convert.ToInt32(710.0 / imageDisHelper.m_pixelSize);
  2001. outpic.m_list_allDfield = m_list_allDfield;
  2002. outpic.resultFile = resultFile;
  2003. outpic.sfd = sfd;
  2004. outpic.type = (int)Outpic_enum.GBOne;
  2005. outpic.m_ReportApp = m_ReportApp;
  2006. Thread bThread = new Thread(new ThreadStart(outpic.opencv_outpic));
  2007. bThread.IsBackground = true;
  2008. bThread.Start();
  2009. }
  2010. }
  2011. private void aSTMToolStripMenuItem1_Click(object sender, EventArgs e)
  2012. {
  2013. SaveFileDialog sfd = new SaveFileDialog();
  2014. sfd.Filter = "png Files(*.png)| *.png |BMP Files(*.bmp)| *.bmp |JPG Files(*.jpg)|*.jpg;*.jpeg";
  2015. if (sfd.ShowDialog() == DialogResult.OK)
  2016. {
  2017. var datd = GetGBDataTable(sender, (int)CALCULATE_TABLE_TYPE.ASTM);
  2018. this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
  2019. OutPIC outpic = new OutPIC();
  2020. outpic.GBDatatableOne = datd;
  2021. outpic.GridLength = Convert.ToInt32(710.0 / imageDisHelper.m_pixelSize);
  2022. outpic.m_list_allDfield = m_list_allDfield;
  2023. outpic.resultFile = resultFile;
  2024. outpic.sfd = sfd;
  2025. outpic.type = (int)Outpic_enum.GBOne;
  2026. outpic.m_ReportApp = m_ReportApp;
  2027. Thread bThread = new Thread(new ThreadStart(outpic.opencv_outpic));
  2028. bThread.IsBackground = true;
  2029. bThread.Start();
  2030. }
  2031. }
  2032. private void 查找相似颗粒ToolStripMenuItem_Click(object sender, EventArgs e)
  2033. {
  2034. DisplayParticle selpart = new DisplayParticle();
  2035. var overlap = resultFile.GetOverlapParam();
  2036. foreach (var p in m_list_allDPart)
  2037. {
  2038. if (p.IsSelect)
  2039. {
  2040. selpart = p;
  2041. break;
  2042. }
  2043. }
  2044. var selpartPos = selpart.OTSRect.GetCenterPoint();
  2045. var selpartclrobj = GetParticleclrObjFromParticleData(selpart);
  2046. foreach (var otherP in m_list_allDPart)
  2047. {
  2048. var partPos = otherP.OTSRect.GetCenterPoint();
  2049. if ((Math.Abs(partPos.X - selpartPos.X )< (float)overlap * 2) && (Math.Abs(partPos.Y - selpartPos.Y) < 2 * (float)overlap))
  2050. {
  2051. var otherpartclrObj = GetParticleclrObjFromParticleData(otherP);
  2052. var sim= selpartclrobj.CalculateSimilarity(otherpartclrObj);
  2053. if (sim > 0.95)
  2054. {
  2055. otherP.IsSelect = true;
  2056. }
  2057. }
  2058. }
  2059. }
  2060. private COTSParticleClr GetParticleclrObjFromParticleData(DisplayParticle p)
  2061. {
  2062. COTSParticleClr newPart = new COTSParticleClr();
  2063. OTSMeasureApp._0_OTSModel.OTSDataType.COTSRect rec = p.OTSRect;
  2064. newPart.SetOTSRect((int)rec.GetTopLeft().X, (int)rec.GetTopLeft().Y, (int)rec.GetBottomRight().X, (int)rec.GetBottomRight().Y);
  2065. newPart.SetActualArea(p.objParticleData.Area);
  2066. newPart.SetAveGray((byte)p.objParticleData.AveGray);
  2067. newPart.SetDMAX(p.objParticleData.DMAX);
  2068. newPart.SetDMIN(p.objParticleData.DMIN);
  2069. newPart.SetDMEAN(p.objParticleData.DMEAN);
  2070. newPart.SetDMPERP(p.objParticleData.DPERP);
  2071. newPart.SetFeretDiameter(p.objParticleData.DFERET);
  2072. newPart.SetDPRIMETER(p.objParticleData.PERIMETER);
  2073. newPart.SetDELONG(p.objParticleData.DELONG);
  2074. newPart.SetDINSCR(p.objParticleData.DINSCR);
  2075. newPart.SetORIENTATION(p.objParticleData.ORIENTATION);
  2076. return newPart;
  2077. }
  2078. }
  2079. }