Control_DrawDistrbutionImageAndBSE.cs 102 KB

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