Control_DrawDistrbutionImageAndBSE.cs 95 KB

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