Control_DrawDistrbutionImageAndBSE.cs 93 KB

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