123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Windows.Forms;
- using OTS.WinFormsUI.Docking;
- using System.IO;
- /*处理ImageDispos*/
- using OTSSysMgrTools;
- /*处理PropertyInfo*/
- using System.Reflection;
- using NSOTSController;
- using System.Data;
- using System.Collections;
- using System.Drawing.Imaging;
- using OTSIncAGraph.Controls;
- using OTSModelSharp;
- using OTSDataType;
- namespace OTSMeasureApp
- {
- public partial class OTSMeasureStatusWindow : DockContent
- {
- #region 全部变量
- public OTSIncAMeasureAppForm m_MeasureAppForm;
- /* 接收图像数据 */
- public byte[] Imagedata = new byte[m_iWidth];
- static int m_iWidth = 1024;
- static int m_iHeight = 704;
- OTSImageData m_ImageData = null;
- //获取BSE图时最初的位置
- Point m_GetBSEImageInitPoint = new Point();
- // 调试图图片数据
- public byte[] bBseData;
- //去背景图
- public byte[] cBseData;
- //灰度图数据
- public double[] dGrayLevelData;
- //灰度峰值
- public double dGrayLevelMax;
- //去背景灰度图数据
- public double[] dGrayAbandonLevelData;
- //去背景灰度峰值
- public double dGrayAbandonLevelMax;
- public string FileName;
- //原图Y轴
- int YSize = 0;
- int drawflag = 0;
- private int height = 0;
- private int width = 0;
- //画布大小
- private Bitmap bitmap;
- private Graphics graphics;
- private float Tension = 0.001f;
- //要画曲线的点y坐标值,x值为10s采集一次数据
- private float[] curvebuf = new float[] { 20.0f, 30.0f, 40.0f, 35.4f, 21.6f, 32.8f, 5.2f, 9.9f, 30f, 35.3f, 25.3f, 21.2f, 30.2f, 22.8f, 40.5f, 5.6f, 20.6f };
- //记录鼠标在BSE移动时 图像的位置
- double m_MouseMoveImageX = -1;
- double m_MouseMoveImageY = -1;
- //采集时间(毫秒)
- //int m_Milliseconds = 120;
- //记录采集点
- List<Point> m_ElementSignPoint = new List<Point>();
- //绘制采集点对象
- public static List<ARectangleGDIObject> m_ElementPointGDIObjects;
- Point m_mouseCurrentPoint = new Point();
- //鼠标缩放倍数
- float m_CurrentMultiple = 0;
- float m_Multiple = 0.2f;
- int m_MaxMultipleRange = 4;
- //单击采集的鼠标位置
- double dMouseImgX = 0;
- double dMouseImgY = 0;
- NLog.Logger log;
- //国际化
- OTSSysMgrTools.Language lan;
- Hashtable table;
- #endregion
- #region 在右下角状态栏中显示鼠标当前位置所需要的参数
- double dPositionX = 0;
- double dPositionY = 0;
- double dPositionR = 0;
- double Magnification = 0;
- int FieldWitdh = 0;
- double FieldHeight = 0;
- #endregion
- private enum ImageType
- {
- //BSE图
- BSEImage = 0,
- //去背景图
- RemoveBGImage = 1,
- //显示灰度曲线图
- GrayLevelChart = 2,
- //显示去背景BSE图灰度曲线
- GrayAbandonLevelChart = 4,
- //线扫描曲线
- GrayLevelLine = 3
- }
- //图bfResult
- public static bool bfResult = false;
- //当前是否显示线扫描
- public static bool IsShowGrayLevelLine = false;
- //当前默认值
- ImageType imagetype = ImageType.BSEImage;
- ImageType IsShowImageType = ImageType.BSEImage;
- public OTSMeasureStatusWindow(OTSIncAMeasureAppForm MeasureApp)
- {
- InitializeComponent();
- m_MeasureAppForm = MeasureApp;
- if (m_ImageData == null)
- {
- m_ImageData = new OTSImageData(this, m_MeasureAppForm);
- }
- m_ElementPointGDIObjects = new List<ARectangleGDIObject>();
- //进入时首先对XRayTable进行隐藏
- panelXray.Visible = false;
- //国际化
- lan = new OTSSysMgrTools.Language(this);
- table = lan.GetNameTable(this.Name);
- }
- /// <summary>
- /// 在控件中显示BSE图像
- /// </summary>
- /// <param name="m_iWidth"></param>
- /// <param name="m_iHeigh"></param>
- /// <param name="bBseData"></param>
- public void ShowImage(int m_iWidth, int m_iHeigh, byte[] bBseData)
- {
- try
- {
- Bitmap bitmap = Imagepro.ToGrayBitmap(bBseData, m_iWidth, m_iHeigh);
- pbBSEImage.Image = bitmap;
- //设置Pictrue显示位置
- pbBSEImage.Height = this.RestoreBounds.Height;
- pbBSEImage.Width = this.RestoreBounds.Height * 4 / 3;
- //获取黄线坐标位置
- Rectangle rectangle = GetPictureBoxZoomSize(pbBSEImage);
- m_GetBSEImageInitPoint = rectangle.Location;
- pointStart.X = rectangle.X;
- pointEnd.X = rectangle.X + rectangle.Width;
- pointStart.Y = rectangle.Y + (rectangle.Height) / 2;
- pointEnd.Y = rectangle.Y + (rectangle.Height) / 2;
- pbBSEImage.Left = 0;
- pbBSEImage.Top = 0;
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.ShowImage) " + ex.ToString());
- }
- }
- /// <summary>
- /// 在控件中显示图像
- /// </summary>
- /// <param name="m_iWidth"></param>
- /// <param name="m_iHeigh"></param>
- /// <param name="bBseData"></param>
- public Image ShowImageStatus(int m_iWidth, int m_iHeigh, byte[] bBseData)
- {
- try
- {
- return Imagepro.ToGrayBitmap(bBseData, m_iWidth, m_iHeigh);
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.ShowImage) " + ex.ToString());
- return null;
- }
- }
- //显示扫描曲线图方法
- #region 显示扫描曲线图方法
- private void DrawCurve(byte[] buf, PaintEventArgs e)
- {
- try
- {
- //创建位图
- Rectangle rectangle = GetPictureBoxZoomSize(pbBSEImage);
- double rate = (double)rectangle.Height / (double)pbBSEImage.Image.Height;
- width = rectangle.Width;
- height = rectangle.Height;
- bitmap = new Bitmap(width, height);
- //创建Graphics类对象
- graphics = Graphics.FromImage(bitmap);
- //清空图片背景色
- //graphics.Clear(Color.White);
- Font font = new System.Drawing.Font("Arial", 9, FontStyle.Regular);
- Brush brush2 = new SolidBrush(Color.SaddleBrown);
- Brush brushPoint = new SolidBrush(Color.Red);
- Pen mypenRed = new Pen(Color.Red, 1);
- Pen mypenYellow = new Pen(Color.Yellow, 0.001f);//点颜色
- //画曲线
- if (drawflag == 1)
- {
- int len = Imagedata.Length;
- PointF[] CurvePointF = new PointF[len];//坐标点
- float pointX = 0;
- float pointY = 0;
- for (int i = 0; i < Imagedata.Length; i++)
- {
- pointX = (pbBSEImage.Width - rectangle.Width) / 2 + Convert.ToSingle(i * rate);
- float imagei = (int)GrayLevel.Max - Convert.ToInt32(Imagedata[i]);
- float imagerate = (Convert.ToSingle(Convert.ToDouble(rectangle.Height) / 510));
- pointY = imagei * imagerate + (rectangle.Height) / 4;
- if (pointY > ((rectangle.Height) * 3 / 4))
- {
- float ii = pointY;
- }
- CurvePointF[i] = new PointF(pointX, pointY);
- }
- e.Graphics.DrawCurve(mypenYellow, CurvePointF, Tension);//画曲线
- }
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.DrawCurve) " + ex.ToString());
- }
- }
- #endregion
- //处理获取调试图菜单事件
- #region 处理获取调试图菜单事件
- private void AcquireBSEImage_Click(object sender, EventArgs e)
- {
- try
- {
- if (m_ElementPointGDIObjects != null)
- {
- m_ElementPointGDIObjects.Clear();
- }
- //设置右键菜单中的项 是否可编辑
- SetContextMenuEnabled(true);
- GetAcquireBSEImage();
- }
- catch (Exception ex)
- {
- MessageBox.Show(table["message20"].ToString() + ex.ToString());
- }
- try
- {
- DelElementPointGDIObjects();
- panelXray.Visible = false;
- m_CurrentMultiple = 0;
- }
- catch (Exception ex)
- {
- MessageBox.Show(table["message21"].ToString() + ex.ToString());
- }
- }
- /// <summary>
- /// 获取BSE图方法
- /// </summary>
- private void GetAcquireBSEImage()
- {
- try
- {
- //获取电镜中图像大小
- string str = m_MeasureAppForm.m_ProjParam.GetBSEImageSize();// 举例:1024X768
- string[] sArray = str.Split('X');
- if (sArray[0] != "" && sArray[1] != "")
- {
- m_iWidth = Convert.ToInt32(sArray[0]);
- m_iHeight = Convert.ToInt32(sArray[1]);
- }
- //建立图像数据
- bBseData = new byte[m_iWidth * m_iHeight];
- //获取图像数据
- int nDwellTime = 4;
- try
- {
- int level = (int)m_MeasureAppForm.m_ProjParam.m_ResultData.GetWorkingSample().GetMsrParams().GetImageScanParam().GetScanImageSpeed();
- switch (level)
- {
- case 0:
- nDwellTime = 4;
- break;
- case 1:
- nDwellTime = 8;
- break;
- case 2:
- nDwellTime = 16;
- break;
- }
- }
- catch (Exception)
- {
- nDwellTime = 8;
- }
- OTSBSEImageFun m_GetBseImage = new OTSBSEImageFun();
- int imageCount = m_GetBseImage.GetScanImage(m_iWidth, m_iHeight, ref bBseData);
- //取图不成功就返回
- if (imageCount > 0)
- {
- bfResult = true;
- }
- if (!bfResult)
- {
- if (contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Enabled == true)
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Enabled = false;
- }
- //显示单点扫描元素信息菜单
- contextMenuStrip1.Items[(int)MeasureStateMenuType.PointScanElementMenuItem].Enabled = false;
- pbBSEImage.Hide();
- return;
- }
- else
- {
- //显示单点扫描元素信息菜单
- contextMenuStrip1.Items[(int)MeasureStateMenuType.PointScanElementMenuItem].Enabled = true;
- }
- //获取灰度图数据
- dGrayLevelData = new double[(int)GrayLevel.Max];
- dGrayLevelData = m_ImageData.GetGaryData(bBseData, dGrayLevelData);
- //计算灰度最大值
- dGrayLevelMax = dGrayLevelData[0];
- for (int i = 1; i < (int)GrayLevel.Max; i++)
- {
- dGrayLevelMax = Math.Max(dGrayLevelMax, dGrayLevelData[i]);
- }
- SetClickMenuBSEImg();
- //更新当前的图
- UpdataImageChart();
- myChart.Visible = false;
- //图像加载后的显示位置
- m_CurrentMultiple = 0;
- //pbBSEImage.Height = this.RestoreBounds.Height;
- //pbBSEImage.Width = this.RestoreBounds.Width;
- pbBSEImage.Height = this.RestoreBounds.Height;
- pbBSEImage.Width = this.RestoreBounds.Height * 4 / 3;
- pbBSEImage.Left = 0;
- pbBSEImage.Top = 0;
-
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.AcquireBSEImage_Click) " + ex.ToString());
- }
- }
- #endregion
- #region 设置点击BSE菜单
- public void SetClickMenuBSEImg()
- {
- //用于线扫描曲线
- IsShowImageType = ImageType.BSEImage;
- imagetype = ImageType.BSEImage;
- pbBSEImage.Show();
- //panel1.Visible = false;
- //panel1.Hide();
- }
- #endregion
- //更新当前的图
- #region 更新当前的图
- private void UpdataImageChart()
- {
- try
- {
- switch (imagetype)
- {
- case ImageType.BSEImage:
- {
- //在控件中显示图像
- ShowImage(m_iWidth, m_iHeight, bBseData);
- Imagedata = new byte[m_iWidth];
- IsShowGrayLevelLine = false;
- //获取默认Y轴
- GetYSize();
- //获取行数据
- GetLineImage(YSize, m_iWidth, ref Imagedata);
- }
- break;
- case ImageType.RemoveBGImage:
- {
- ShowImage(m_iWidth, m_iHeight, cBseData);
- Imagedata = new byte[m_iWidth];
- IsShowGrayLevelLine = false;
- //获取默认Y轴
- GetYSize();
- //获取行数据
- GetLineImage(YSize, m_iWidth, ref Imagedata);
- }
- break;
- case ImageType.GrayLevelLine:
- {
- GetLineImage(YSize, m_iWidth, ref Imagedata);
- }
- break;
- default:
- { }
- break;
- }
- this.Refresh();
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.UpdataImageChart) " + ex.ToString());
- }
- }
- #endregion
- //显示去背景图 = AUTO
- #region 显示去背景图
- private void ShowRemoveBGImage_Click(object sender, EventArgs e)
- {
- //设置右键菜单中的项 是否可编辑
- SetContextMenuEnabled(true);
- ShowRemoveBGImage();
- m_CurrentMultiple = 0;
- panelXray.Visible = false;
- }
- protected void ShowRemoveBGImage()
- {
- try
- {
- //获取电镜中图像大小
- string str = m_MeasureAppForm.m_ProjParam.GetBSEImageSize();
- string[] sArray = str.Split('X');
- if (sArray[0] != "" && sArray[1] != "")
- {
- m_iWidth = Convert.ToInt32(sArray[0]);
- m_iHeight = Convert.ToInt32(sArray[1]);
- }
- //获取图像数据
- COTSSample WSample = m_MeasureAppForm.m_ProjData.GetWorkingSample();
- bfResult = m_ImageData.ShowRemoveBGImage(WSample,m_iWidth, m_iHeight, bBseData, ref cBseData);
-
-
- //取图不成功就返回
- if (!bfResult) { return; }
- //获取去背景灰度图数据
- dGrayAbandonLevelData = new double[(int)GrayLevel.Max];
- dGrayAbandonLevelData = m_ImageData.GetGrayAbandonData(cBseData, dGrayAbandonLevelData);
- //计算灰度去背景最大值
- dGrayAbandonLevelMax = dGrayAbandonLevelData[0];
- for (int i = 1; i < (int)GrayLevel.Max; i++)
- {
- dGrayAbandonLevelMax = Math.Max(dGrayAbandonLevelMax, dGrayAbandonLevelData[i]);
- }
- //用于线扫描曲线
- IsShowImageType = ImageType.RemoveBGImage;
- imagetype = ImageType.RemoveBGImage;
- UpdataImageChart();
- //panel1.Hide();
- //panel1.Visible = false;
- myChart.Visible = false;
- pbBSEImage.Show();
- //切换显示至BSE图
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Enabled = true;
- if (OTSSysMgrTools.Language.ReadDefaultLanguage() == "ZH")
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "切换显示至BSE图";
- }
- else
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "SwitchDisplayToBSEDiagram";
- }
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.ShowRemoveBGImage_Click) " + ex.ToString());
- }
- }
- #endregion
- //显示灰度曲线
- #region 显示灰度曲线
- private void ShowGrayLevelImage_Click(object sender, EventArgs e)
- {
- //设置右键菜单中的项 是否可编辑
- SetContextMenuEnabled(false);
- ShowGrayLevelImage();
- myChart.Visible = true;
- panelXray.Visible = false;
- IsShowGrayLevelLine = false;
- }
- protected void ShowGrayLevelImage()
- {
- try
- {
- imagetype = ImageType.GrayLevelChart;
- //panel1.Visible = true;
- //panel1.Show();
- pbBSEImage.Hide();
- m_ImageData.Line = idLine.GrayImage;
- //切换显示至BSE图
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Enabled = true;
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Enabled = true;
- if (OTSSysMgrTools.Language.ReadDefaultLanguage() == "ZH")
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "切换显示至BSE图";
- }
- else
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "SwitchDisplayToBSEDiagram";
- }
- UpdataImageChart();
- int[] XData = new int[(int)GrayLevel.Max];
- for (int i = 0; i < (int)GrayLevel.Max; i++)
- {
- XData[i] = i + 1;
- }
- int[] YData = new int[dGrayLevelData.Length];
- for (int i = 0; i < dGrayLevelData.Length; i++)
- {
- YData[i] = (int)dGrayLevelData[i];
- }
- chartData(XData, YData);
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.ShowGrayLevelImage_Click) "
- + ex.ToString());
- }
- }
- #endregion
- //显示线扫描曲线
- #region 显示线扫描曲线
- private void ShowGrayLevelLine_Click(object sender, EventArgs e)
- {
- panelXray.Visible = false;
- ShowGrayLevelLine();
- }
- protected void ShowGrayLevelLine()
- {
- try
- {
- imagetype = ImageType.GrayLevelLine;
- //取图不成功就返回
- if (!bfResult) { return; }
- UpdataImageChart();
- m_ImageData.Line = idLine.GrayLine;
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.ShowGrayLevelLine_Click) " + ex.ToString());
- }
- }
- #endregion
- #region 扫描线轴X
- public Rectangle GetPictureBoxZoomSize(PictureBox p_PictureBox)
- {
- if (p_PictureBox != null)
- {
- PropertyInfo _ImageRectanglePropert = p_PictureBox.GetType().GetProperty("ImageRectangle", BindingFlags.Instance | BindingFlags.NonPublic);
- return (Rectangle)_ImageRectanglePropert.GetValue(p_PictureBox, null);
- }
- return new Rectangle(0, 0, 0, 0);
- }
- #endregion
- private void OTSMeasureStatusWindow_Load(object sender, EventArgs e)
- {
- //panel1.Hide();
- //添加鼠标点击事件
- myChart.MouseClick += new MouseEventHandler(this.LZMeasureStatusWindow_MouseClick);
- pbBSEImage.MouseClick += new MouseEventHandler(HiddenXrayTablePanel_MouseClick);
- //
- // pbBSEImage添加鼠标操作
- //
- this.pbBSEImage.MouseUp += new MouseEventHandler(this.pbBSEImage_MouseUp);
- this.pbBSEImage.MouseDown += new MouseEventHandler(this.pbBSEImage_MouseDown);
- //this.pbBSEImage.MouseMove += new MouseEventHandler(this.pbBSEImage_MouseMove);
- this.MouseUp += new MouseEventHandler(this.pbBSEImage_MouseUp);
- this.MouseDown += new MouseEventHandler(this.pbBSEImage_MouseDown);
- //this.MouseMove += new MouseEventHandler(this.pbBSEImage_MouseMove);
- this.MouseWheel += new MouseEventHandler(this.pbBSEImage_MouseWheel);
- log = NLog.LogManager.GetCurrentClassLogger();
- }
- private void HiddenXrayTablePanel_MouseClick(object sender, MouseEventArgs e)
- {
- if (e.Button != MouseButtons.Right)
- {
- if (!IsShowGrayLevelLine)
- {
- if (m_ElementPointGDIObjects != null)
- {
- if (m_ElementPointGDIObjects.Count > 0)
- {
- foreach (var item in m_ElementPointGDIObjects)
- {
- Rectangle rect = new Rectangle(e.Location, new Size(1, 1));
- if (Math.Abs(e.Y - item.DrawRegionF.Y) < 5 && Math.Abs(e.X - item.DrawRegionF.X) < 5)
- {
- //显示Xray图像
- panelXray.Visible = true;
- }
- else
- {
- panelXray.Visible = false;
- }
- }
- }
- }
- }
- }
- }
- private void LZMeasureStatusWindow_MouseClick(object sender, MouseEventArgs e)
- {
- try
- {
- if (e.Button == MouseButtons.Right && e.Clicks == 1)
- {
- contextMenuStrip1.Show(PointToScreen(e.Location));
- SetContentMenu();
- }
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.LZMeasureStatusWindow_MouseClick) " + ex.ToString());
- }
- }
- #region 设置右键菜单中的项 是否可编辑
- protected void SetContextMenuEnabled(bool isEnabled)
- {
- //隐藏右键菜单中的项
- MenuItemLineScam.Checked = false;
- MenuItemLineScam.Enabled = isEnabled;
- PointScanElementMenuItem.Enabled = isEnabled;
- bool showExprot = m_ElementPointGDIObjects.Count > 0 ? true : false;
- ExportScanInfoMenuItem.Enabled = showExprot;
- IsShowGrayLevelLine = false;
- ViewStripMenuItem.Enabled = isEnabled;
- this.Cursor = Cursors.Default;
- this.Validate();
- }
- #endregion
- #region 获取行数据
- private void GetLineImage(int iHeight, int iWidth, ref byte[] bdata)
- {
- try
- {
- Stream stream = null;
- if (IsShowImageType == ImageType.BSEImage)
- {
- stream = new MemoryStream(bBseData);
- }
- else if (IsShowImageType == ImageType.RemoveBGImage)
- {
- stream = new MemoryStream(cBseData);
- }
- if (iHeight >= 0)
- {
- stream.Seek(iHeight * iWidth, SeekOrigin.Begin);
- }
- stream.Read(bdata, 0, iWidth);
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.GetLineImage) " + ex.ToString());
- }
- }
- #endregion
- private void panel1_Click(object sender, EventArgs e)
- {
- pbBSEImage.Show();
- }
- private void contextMenuStrip1_Opened(object sender, EventArgs e)
- {
- try
- {
- if (bfResult)
- {
- SampleParaLock.Enabled = true;
- ToolStripMenuItem.Enabled = true;
- grayToolStripMenuItem.Enabled = true;
- AbandonGrayStripMenuItem.Enabled = true;
- if (0 <= m_MouseMoveImageX && m_MouseMoveImageX <= 1024)
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.PointScanElementMenuItem].Enabled = true;
- }
- else
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.PointScanElementMenuItem].Enabled = false;
- }
- if (!MenuItemLineScam.Checked)
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.PointScanElementMenuItem].Enabled = true;
- bool showExprot = m_ElementPointGDIObjects.Count > 0 ? true : false;
- if (showExprot)
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ExportReport].Enabled = true;
- }
- }
- else
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.PointScanElementMenuItem].Enabled = false;
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ExportReport].Enabled = false;
- return;
- }
- if (myChart.Visible)
- {
- MenuItemLineScam.Enabled = false;
- contextMenuStrip1.Items[(int)MeasureStateMenuType.PointScanElementMenuItem].Enabled = false;
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ExportReport].Enabled = false;
- }
- else
- {
- MenuItemLineScam.Enabled = true;
- contextMenuStrip1.Items[(int)MeasureStateMenuType.PointScanElementMenuItem].Enabled = true;
- bool showExprot = m_ElementPointGDIObjects.Count > 0 ? true : false;
- if (showExprot)
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ExportReport].Enabled = true;
- }
- }
- //根据去背景方式 设置可视化使用状态
- COTSSample WSample = m_MeasureAppForm.m_ProjData.GetWorkingSample();
- COTSImageProcParam ImgProcPrm = WSample.GetMsrParams().GetImageProcessParam();
- if (ImgProcPrm.GetBGRemoveType() == otsdataconst.OTS_BGREMOVE_TYPE.MANUAL)
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.SetVisualGray].Enabled = true;
- }
- else
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.SetVisualGray].Enabled = false;
- }
- }
- else
- {
- ToolStripMenuItem.Enabled = false;
- grayToolStripMenuItem.Enabled = false;
- MenuItemLineScam.Enabled = false;
- AbandonGrayStripMenuItem.Enabled = false;
- }
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.contextMenuStrip1_Opened) " + ex.ToString());
- }
- }
- //拖动灰度线
- #region 拖动灰度线
- int LineX = 0;
- int LineXEnd = 0;
- public Point pointStart = new Point(100, 100);
- public Point pointEnd = new Point(400, 100);
- private bool m_bMouseDown = false;
- private void pictureBox1_Paint(object sender, PaintEventArgs e)
- {
- try
- {
- if (bfResult)
- {
- if (MenuItemLineScam.Checked)
- {
- IsShowGrayLevelLine = true;
- Rectangle rectangle = GetPictureBoxZoomSize(pbBSEImage);
- if (pointStart.Equals(pointEnd))
-
- {
- return;
- }
- Point start = new Point(100, pointStart.Y);
- Point end = new Point(500, pointEnd.Y);
- int lens = curvebuf.Length;
- if (lens <= 1)
- {
- drawflag = 0;
- MessageBox.Show(table["message22"].ToString(), table["message23"].ToString(), MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
- }
- else
- {
- drawflag = 1;
- //Y值
- double rate = (double)pbBSEImage.Image.Height / (double)rectangle.Height;
- int YSize = Convert.ToInt32((rate * (double)pointStart.Y));
- //显示线扫描 黄色线的曲线数据
- GetLineImage(YSize, m_iWidth, ref Imagedata);
- DrawCurve(Imagedata, e);
- }
- e.Graphics.DrawLine(new Pen(Color.Red), new Point(rectangle.X, rectangle.Y + (rectangle.Height) / 4), new Point(rectangle.X + rectangle.Width, rectangle.Y + (rectangle.Height) / 4));
- e.Graphics.DrawLine(new Pen(Color.Red), new Point(rectangle.X, rectangle.Y + rectangle.Height * 3 / 4), new Point(rectangle.X + rectangle.Width, rectangle.Y + rectangle.Height * 3 / 4));
- e.Graphics.DrawLine(new Pen(Color.Blue), new Point(rectangle.X, pointStart.Y), new Point(rectangle.X + rectangle.Width, pointEnd.Y));
- #region 绘制刻度条
- float offHeight = (rectangle.Y + (rectangle.Height) / 4) - (rectangle.Y + rectangle.Height * 3 / 4);
- float grayValue = Math.Abs(offHeight / 255);
- //设置文字对齐方式
- StringFormat sf = new StringFormat();
- sf.Alignment = StringAlignment.Center;
- sf.LineAlignment = StringAlignment.Center;
- SolidBrush solidBrush = new SolidBrush(Color.FromArgb(100, Color.Red));
- //字体大小 根据样品孔Rectangle大小
- float fontSize = 15;
- Font font = new Font("黑体", fontSize, FontStyle.Bold);
- Pen pen = new Pen(Color.Red, 1);
- pen.DashStyle = System.Drawing.Drawing2D.DashStyle.Custom;
- pen.DashPattern = new float[] { 5, 5 };
- int fontOffWidth = 50;
- int fontOffHeight = 10;
-
- int scaleLine = 0;
- for (int i = 25; i <= 225; i+=25)
- {
- scaleLine = (int)(grayValue * i);
- e.Graphics.DrawLine(pen, new Point(rectangle.X, (rectangle.Y + rectangle.Height * 3 / 4) - scaleLine), new Point(rectangle.X + fontOffWidth, (rectangle.Y + rectangle.Height * 3 / 4) - scaleLine));
- e.Graphics.DrawString(i.ToString(), font, solidBrush, rectangle.X + 20, (rectangle.Y + rectangle.Height * 3 / 4) - scaleLine - fontOffHeight, sf);
- }
- #endregion
- }
- else
- {
- IsShowGrayLevelLine = false;
- }
- }
- if (!MenuItemLineScam.Checked)
- {
- if (m_ElementPointGDIObjects != null)
- {
- if (m_ElementPointGDIObjects.Count > 0)
- {
- //绘制采集点标记
- foreach (ARectangleGDIObject item in m_ElementPointGDIObjects)
- {
- if (item != null)
- {
- item.OnPaint(e);
- }
- }
- }
- }
- }
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.pictureBox1_Paint) " + ex.ToString());
- }
- }
- private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
- {
- try
- {
- //如果pictureBox1中没有图像 则return退出
- if (pbBSEImage.Image == null)
- {
- return;
- }
- Control lCtrl = (sender as Control);
- Rectangle rectangle = GetPictureBoxZoomSize(pbBSEImage);
- int startimageX = 0;
- int startimageY = 0;
- //处理灰度值
- int grayValue = 0;
- // 生成鼠标的位置
- int MouseLine = e.X;
- //当前鼠标所在图片中的位置
- int imageX = 0;
- int imageY = 0;
- //当前pictrueBox与实际图片的X、Y比例
- double rateX = 0;
- double rateY = 0;
- if (bBseData != null)
- {
- if ((pbBSEImage.Width - rectangle.Width) / 2 < e.X && e.X < (pbBSEImage.Width - rectangle.Width) / 2 + rectangle.Width)
- {
- imageX = e.X - (pbBSEImage.Width - rectangle.Width) / 2;
- rateX = (double)m_iWidth / (double)rectangle.Width;
- startimageX = Convert.ToInt32(imageX * rateX);
- m_MouseMoveImageX = startimageX;
- if (MoveFlag)
- {
- pbBSEImage.Left += Convert.ToInt32(e.X - xPos);//设置x坐标.
- pbBSEImage.Top += Convert.ToInt32(e.Y - yPos);//设置y坐标.
- }
- }
- else
- {
- startimageX = 0;
- m_MouseMoveImageX = -1;
- }
- if ((pbBSEImage.Height - rectangle.Height) / 2 < e.Y && e.Y < (pbBSEImage.Height - rectangle.Height) / 2 + rectangle.Height)
- {
- imageY = e.Y - (pbBSEImage.Height - rectangle.Height) / 2;
- rateY = (double)m_iHeight / (double)rectangle.Height;
- startimageY = Convert.ToInt32(imageY * rateY);
- m_MouseMoveImageY = startimageY;
- }
- //如果当前鼠标在图像Y轴中
- if (imageX > 0 && imageY > 0)
- {
- if (imageY > 1)
- {
- startimageX = startimageX + (startimageY * m_iWidth);
- if (IsShowImageType == ImageType.BSEImage)
- {
- grayValue = bBseData[startimageX];
- }
- else
- {
- grayValue = cBseData[startimageX];
- }
- }
- else if (startimageY == 1)
- {
- if (IsShowImageType == ImageType.BSEImage)
- {
- grayValue = bBseData[startimageX];
- }
- else
- {
- grayValue = cBseData[startimageX];
- }
- }
- }
- else
- {
- grayValue = 0;
- }
- }
- LineX = rectangle.X + 1;
- LineXEnd = rectangle.X + rectangle.Width;
- if (LineX < MouseLine && MouseLine < LineXEnd)
- {
- if (MenuItemLineScam.Checked)
- {
- if (Math.Abs(e.Y - pointStart.Y) < 2)
- {
- this.Cursor = Cursors.SizeNS;
- }
- else
- {
- this.Cursor = Cursors.Default;
- }
- }
- }
- //Y值
- double rate = (double)pbBSEImage.Image.Height / (double)rectangle.Height;
- int YSize = Convert.ToInt32((rate * (double)e.Y));
- //显示线扫描 黄色线的曲线数据
- GetLineImage(YSize, m_iWidth, ref Imagedata);
- string strGrayValue = grayValue.ToString();
- switch (strGrayValue.ToString().Length)
- {
- case 1:
- strGrayValue = " " + grayValue.ToString();
- break;
- case 2:
- strGrayValue = " " + grayValue.ToString();
- break;
- }
- //此处调接口显示灰度值
- m_MeasureAppForm.ShowGrayVal(strGrayValue.ToString());
- if (!IsShowGrayLevelLine)
- {
- if (m_ElementPointGDIObjects != null)
- {
- if (m_ElementPointGDIObjects.Count > 0)
- {
- foreach (var item in m_ElementPointGDIObjects)
- {
- Rectangle rect = new Rectangle(e.Location, new Size(1, 1));
- if (Math.Abs(e.Y - item.DrawRegionF.Y) < 5 && Math.Abs(e.X - item.DrawRegionF.X) < 5)
- {
- //设置鼠标样式
- this.Cursor = Cursors.Hand;
- }
- else
- {
- this.Cursor = Cursors.Default;
- }
- }
- }
- }
- }
- if (e.Button != MouseButtons.Left)
- {
- return;
- }
- pointStart = new Point(pointStart.X, e.Y);
- pointEnd = new Point(pointEnd.X, e.Y);
- pbBSEImage.Refresh();
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.pictureBox1_MouseMove) " + ex.ToString());
- }
- }
- private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
- {
- try
- {
- m_mouseCurrentPoint = e.Location;
- if (e.Button != MouseButtons.Left)
- {
- return;
- }
- m_bMouseDown = !m_bMouseDown;
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.pictureBox1_MouseDown) " + ex.ToString());
- }
- }
- #endregion
- //显示去背景BSE图得灰度曲线值
- #region 显示去背景BSE图得灰度曲线值
- private void ShowAbandonGrayLevelImage_Click(object sender, EventArgs e)
- {
- //设置右键菜单中的项 是否可编辑
- SetContextMenuEnabled(false);
- ShowAbandonGrayLevelImage();
- myChart.Visible = true;
- panelXray.Visible = false;
- IsShowGrayLevelLine = false;
- }
- protected void ShowAbandonGrayLevelImage()
- {
- try
- {
- imagetype = ImageType.GrayAbandonLevelChart;
- COTSSample WSample = m_MeasureAppForm.m_ProjData.GetWorkingSample();
- bool bfResult = m_ImageData.ShowRemoveBGImage(WSample,m_iWidth, m_iHeight, bBseData, ref cBseData);
- if (bfResult)
- {
- dGrayAbandonLevelData = new double[(int)GrayLevel.Max];
- m_ImageData.GetGrayAbandonData(cBseData, dGrayAbandonLevelData);
- //计算灰度去背景最大值
- dGrayAbandonLevelMax = dGrayAbandonLevelData[0];
- for (int i = 0; i < (int)GrayLevel.Max; i++)
- {
- dGrayAbandonLevelMax = Math.Max(dGrayAbandonLevelMax, dGrayAbandonLevelData[i]);
- }
- }
-
- pbBSEImage.Hide();
- m_ImageData.Line = idLine.GrayImage;
- //切换显示至BSE图
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Enabled = true;
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Enabled = true;
- if (OTSSysMgrTools.Language.ReadDefaultLanguage() == "ZH")
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "切换显示至BSE图";
- }
- else
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "SwitchDisplayToBSEDiagram";
- }
-
- UpdataImageChart();
- int[] XData = new int[(int)GrayLevel.Max];
- for (int i = 0; i < (int)GrayLevel.Max; i++)
- {
- XData[i] = i + 1;
- }
- int[] YData = new int[dGrayAbandonLevelData.Length];
- for (int i = 0; i < dGrayAbandonLevelData.Length; i++)
- {
- YData[i] = (int)dGrayAbandonLevelData[i];
- }
- chartData(XData, YData);
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.ShowAbandonGrayLevelImage_Click) " + ex.ToString());
- }
- }
- #endregion
- private void pictureBox1_MouseClick(object sender, MouseEventArgs e)
- {
- try
- {
- if (e.Button == MouseButtons.Right && e.Clicks == 1)
- {
- int XMenu = pbBSEImage.Left + e.Location.X;
- int YMenu = pbBSEImage.Top + e.Location.Y;
- Point mousePoint = new Point(XMenu, YMenu);
- contextMenuStrip1.Show(PointToScreen(mousePoint));
- //电镜位置信息
- Point semLocatin = new Point((int)dPositionX, (int)dPositionY);
- Rectangle semRect = new Rectangle();
- if (IsSEMLocationOnTheSampleStage(semLocatin, ref semRect))
- {
- SetContentMenu();
- }
- if (m_MeasureAppForm.MeasureThreadRunFlag)
- {
- foreach (ToolStripItem item in contextMenuStrip1.Items)
- {
- item.Enabled = false;
- }
- }
- }
- }
- catch (Exception ex)
- {
- log.Error("(LZMeasureStatusWindow.pictureBox1_MouseClick) " + ex.ToString());
- }
- }
- private void ChangeDiffImageShow_Click(object sender, EventArgs e)
- {
- //设置右键菜单中的项 是否可编辑
- SetContextMenuEnabled(true);
- //显示切换至BSE图
- if (contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text == "切换显示至BSE图"|| contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text == "SwitchDisplayToBSEDiagram")
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Enabled = true;
- if (OTSSysMgrTools.Language.ReadDefaultLanguage() == "ZH")
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "切换显示至BSE去背景图";
- }
- else
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "SwitchDisplayToBSEBackgroundImage";
- }
- //显示BSE图
- if (bBseData != null)
- {
- //用于线扫描曲线
- IsShowImageType = ImageType.BSEImage;
- imagetype = ImageType.BSEImage;
- //在控件中显示图像
- ShowImage(m_iWidth, m_iHeight, bBseData);
- pbBSEImage.Show();
- //panel1.Visible = false;
- }
- }
- else if (contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text == "切换显示至BSE去背景图"|| contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text == "SwitchDisplayToBSEBackgroundImage")
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Enabled = true;
- if (OTSSysMgrTools.Language.ReadDefaultLanguage() == "ZH")
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "切换显示至BSE图";
- }
- else
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.ChangeDiffImageShow].Text = "SwitchDisplayToBSEDiagram";
- }
-
- //显示去背景BSE图
- if (bBseData != null)
- {
- //用于线扫描曲线
- IsShowImageType = ImageType.RemoveBGImage;
- imagetype = ImageType.RemoveBGImage;
- ShowImage(m_iWidth, m_iHeight, cBseData);
- //panel1.Visible = false;
- pbBSEImage.Show();
- }
- }
- myChart.Visible = false;
- UpdataImageChart();
- GetLineImage(YSize, m_iWidth, ref Imagedata);
- m_CurrentMultiple = 0;
- panelXray.Visible = false;
- }
- #region 显示鼠标位置
- /// <summary>
- /// 显示鼠标位置
- /// </summary>
- /// <param name="eMouseLocation">当前处理后的鼠标路径 减去边缘</param>
- /// <param name="imageRect">Pictrue中的图像尺寸与位置</param>
- public void ShowMouseSEMCurrentLocation(Point eMouseLocation, Rectangle imageRect, Rectangle semRect)
- {
- //真实图像中心点
- Point imgRealCenterPoint = new Point();
- //显示图像中心点
- Point imgCenterPoint = new Point();
- int imgWidth = 0;
- int imgHeight = 0;
- //获取真实图片的分辨率
- m_MeasureAppForm.m_ProjParam.GetBSEImageSize(ref imgWidth, ref imgHeight);
- //根据真实图像的像素 获取真实图像中心点
- imgRealCenterPoint.X = imgWidth / 2;
- imgRealCenterPoint.Y = imgHeight / 2;
- //图像与真是图像的宽高的比例
- double witdhRote = 0;
- double heightRote = 0;
- //获取显示图像与真是图像的宽高的比例
- witdhRote = (double)imageRect.Width / imgWidth;
- heightRote = (double)imageRect.Height / imgHeight;
- //获取每个单位中包含多少像素 根据帧图的长度 与 真实图像的长度计算
- double lenghtInPixWidth = (double)FieldWitdh / imgWidth / witdhRote;
- double lenghtInPixHeight = (double)FieldHeight / imgHeight / heightRote;
- //通过鼠标当前位置 获取位置 原点为控件的左上角起始点
- double MouseWidth = (double)eMouseLocation.X * lenghtInPixWidth;
- double MouseHeight = (double)eMouseLocation.Y * lenghtInPixHeight;
- //根据显示图像的像素 获取真实图像中心点
- imgCenterPoint.X = imageRect.Width / 2;
- imgCenterPoint.Y = imageRect.Height / 2;
- //通过鼠标当前位置 获取位置 原点为控件的左上角起始点
- double imgCenterWidth = (double)imgCenterPoint.X * lenghtInPixWidth;
- double imgCenterHeight = (double)imgCenterPoint.Y * lenghtInPixHeight;
- //获取当前鼠标坐标与SEM当前坐标的距离 单位毫米
- double apartCenterPointWidth = MouseWidth - imgCenterWidth;
- double apartCenterPointHeight = MouseHeight - imgCenterHeight;
- //将微米转换为毫米
- float mousePointX = Convert.ToSingle((apartCenterPointWidth / 1000).ToString("F3"));
- float mousePointY = Convert.ToSingle((apartCenterPointHeight / 1000).ToString("F3"));
- //根据Sem电镜当前位置 计算与SEM坐标起始点相差的距离
- //1.获取电镜当前位置
- double semX = dPositionX;
- double semY = dPositionY;
- //2.获取当前电镜位置与SEM原点位置的距离
- string apartToSEMWidth = Convert.ToSingle(semX + mousePointX).ToString("F3");
- string apartToSEMHeight = Convert.ToSingle(semY - mousePointY).ToString("F3");
- //编辑显示内容
- string STSemCoordinate = "X:" + apartToSEMWidth + "|Y:" + apartToSEMHeight + "";
- //显示XY轴
- //m_MeasureAppForm.ShowSemCoordvAL(STSemCoordinate);
- }
- #endregion
- #region 设置测量状态初始化
- /// <summary>
- /// 设置测量状态初始化
- /// </summary>
- public void SetMeasureStatusInit()
- {
- //panel1.Hide();
- //panel1.Visible = false;
- pbBSEImage.Hide();
- foreach (ToolStripItem item in contextMenuStrip1.Items)
- {
- if (item != contextMenuStrip1.Items[(int)MeasureStateMenuType.SampleParaLock])
- {
- item.Enabled = false;
- }
- }
- }
- #endregion
- #region 获取SEM当前位置
- public void GetSEMLocation(ref double dPositionX, ref double dPositionY, ref double dPositionR)
- {
- try
- {
- //获取SEM当前位置
- m_ImageData.GetSemPositionXY(ref dPositionX, ref dPositionY, ref dPositionR);
- }
- catch (Exception ex)
- {
-
- MessageBox.Show(table["message24"].ToString() + ex.ToString());
- }
- }
- #endregion
-
-
- #region 鼠标是否在图像上移动
- /// <summary>
- /// 鼠标是否在图像上移动
- /// </summary>
- /// <param name="mouseCurrentLocation"></param>
- /// <param name="picBox"></param>
- /// <returns></returns>
- public bool IsOnTheImage(Point mouseCurrentLocation, PictureBox picBox, ref Point mouseLocation, ref Rectangle imageRect)
- {
- //通过Pictrue获取图像尺寸位置
- Rectangle rectangle = GetPictureBoxZoomSize(picBox);
- imageRect = rectangle;
- //当前鼠标坐标是否包含在图像中
- bool result = imageRect.Contains(mouseCurrentLocation);
- if (result)
- {
- //获取与边框的间隔
- mouseLocation.X = mouseCurrentLocation.X - rectangle.X;
- mouseLocation.Y = mouseCurrentLocation.Y;
- return true;
- }
- return false;
- }
- #endregion
- #region 判断当前电镜位置是否在样品台内部
- /// <summary>
- /// 判断当前电镜位置是否在样品台内部
- /// </summary>
- /// <param name="semLocation">电镜当前位置</param>
- /// <param name="SampleStage">样品台尺寸与位置</param>
- /// <returns></returns>
- public bool IsSEMLocationOnTheSampleStage(Point semLocation, ref Rectangle semRect)
- {
- //获取样品台信息
- StageDrawingData SData = m_MeasureAppForm.m_SamplepaceWindow.m_OTSSampleStageData;
- string stageName = SData.sStageName;
- int widthDomain = 0;
- int heightDomain = 0;
- //获取样品台
- int StageShape = SData.bStageShape;
- ValueType XDomain = new Point(SData.StageDomain.Left, SData.StageDomain.Top);
- ValueType YDomain = new Point(SData.StageDomain.Right, SData.StageDomain.Bottom);
- //转换类型
- Point xDomain = ((System.Drawing.Point)XDomain);
- Point yDomain = ((System.Drawing.Point)YDomain);
- //宽度
- widthDomain = Math.Abs(((Point)yDomain).X - ((Point)xDomain).X);
- heightDomain = Math.Abs(((Point)yDomain).Y - ((Point)xDomain).Y);
- //设置样品台宽度
- int wDomain = widthDomain;
- int IsWidth = this.Height > this.Width ? 0 : 1;
- int Shape = SData.bStageShape;
- CreateRectangle CreateBourary = null;
- //0:区域圆形 1:区域矩形 2:文字
- if (SData.bStageShape == (int)CreateRectangleType.Rectangle)
- {
- CreateBourary = OTSSamplespaceGraphicsPanelFun.GetPixRect(widthDomain, xDomain, yDomain, (int)CreateRectangleType.Rectangle, "", "", IsWidth, this.Width, this.Height);
- }
- else
- {
- CreateBourary = OTSSamplespaceGraphicsPanelFun.GetPixRect(widthDomain, xDomain, yDomain, (int)CreateRectangleType.SampleBackGround_CirCle, "", "", IsWidth, this.Width, this.Height);
- }
- //获取SEM位置
- CreateRectangle semRectangle = OTSSamplespaceGraphicsPanelFun.GetPixRect(widthDomain, semLocation, semLocation, (int)CreateRectangleType.Rectangle, "", "", IsWidth, this.Width, this.Height);
- semRect = semRectangle.Region;
- return CreateBourary.Region.Contains(semRectangle.Region.Location);
- }
- #endregion
- #region 设置右键菜单项是否可用
- /// <summary>
- /// 设置右键菜单项是否可用
- /// </summary>
- public void SetContentMenu()
- {
- int sampleCount = m_MeasureAppForm.m_ProjParam.GetSampleCount();
- if (sampleCount == 0)
- {
- foreach (ToolStripItem item in contextMenuStrip1.Items)
- {
- item.Enabled = false;
- }
- }
- else
- {
- contextMenuStrip1.Items[(int)MeasureStateMenuType.SampleParaLock].Enabled = true;
- }
- }
- #endregion
- #region 获取线扫描初始位置
- public void GetYSize()
- {
- Rectangle rectangle = GetPictureBoxZoomSize(pbBSEImage);
- double rate = (double)pbBSEImage.Image.Height / (double)rectangle.Height;
- YSize = Convert.ToInt32((rate * (double)pointStart.Y));
- }
- #endregion
- public void chartData(int[] XData, int[] YData)
- {
- //添加数据
- myChart.Series[0].Points.DataBindXY(XData, YData);
- myChart.Series[0].Label = "";
- myChart.Series[0].LegendText = "";
- if (OTSSysMgrTools.Language.ReadDefaultLanguage() == "ZH")
- {
- myChart.Series[0].Name = "曲线图";
- }
- else
- {
- myChart.Series[0].Name = "Graph";
- }
- myChart.Series[0].IsVisibleInLegend = false;
- switch (imagetype)
- {
- case ImageType.GrayLevelChart:
- if (OTSSysMgrTools.Language.ReadDefaultLanguage() == "ZH")
- {
- myChart.Titles[0].Text = "灰度曲线图";
- }
- else
- {
- myChart.Titles[0].Text = "B-GrayCurve";
- }
- break;
- case ImageType.GrayAbandonLevelChart:
- if (OTSSysMgrTools.Language.ReadDefaultLanguage() == "ZH")
- {
- myChart.Titles[0].Text = "去背景灰度曲线图";
- }
- else
- {
- myChart.Titles[0].Text = "Background-freeGray-scaleCurve";
- }
- break;
- default:
- myChart.Titles[0].Text = "";
- break;
- }
- }
- //[Serializable]
- //public class ShowElementInfo
- //{
- // public string ElementName;
- // public double Percentage;//实际能谱返回的质量百分比
- // public double dKF;//K峰,元素周期表中固定值
- //}
- private void PointScanElementMenuItem_Click(object sender, EventArgs e)
- {
- MenuItemLineScam.Checked = false;
- //电镜设置对象
- //控制类对象初始化
- COTSControlFunExport cfun = new COTSControlFunExport();
- //1.连接电镜
- if (cfun.ConncetSem())
- {
- bool initResult = false;
- //线程调用 加载
- initResult = cfun.EDSInit();
- if (initResult)
- {
- COTSMsrPrjResultData cProjMgr = m_MeasureAppForm.m_ProjParam.m_ResultData;
- //获取工作样品对象
- COTSSample sampleClr = cProjMgr.GetWorkingSample();
- //清空之前记录的标识
- if (m_ElementPointGDIObjects != null)
- {
- if (m_ElementPointGDIObjects.Count > 0)
- {
- //清空
- m_ElementPointGDIObjects.Clear();
- }
- }
- //2.获取鼠标在图像的位置
- dMouseImgX = m_MouseMoveImageX;
- dMouseImgY = m_MouseMoveImageY;
- //3.根据所要扫描的位置进行元素分析
- uint a_Milliseconds = 0;
- //采集时间
- a_Milliseconds = Convert.ToUInt32(sampleClr.GetMsrParams().GetXRayParam().GetMidAnalyAQTime());
- //元素数量
- ValueType a_nElementNum = 0;
- //元素名称
- string a_strElementName = "";
- //元素Xray数据
- uint[] a_ElementXrayData = new uint[2000];
- if (cfun.GetXRayAndElements(a_Milliseconds, (int)dMouseImgX, (int)dMouseImgY, ref a_ElementXrayData, ref a_nElementNum, ref a_strElementName))
- {
- log.Trace("--获取单点扫描数据:元素数量:'" + a_nElementNum + "' ,元素名称:'" + a_strElementName + "'--");
- //4.在BSE上绘制扫描标记
- //4-1 获取鼠标在BSE图上的位置
- Point p_mouseCurrentTempPoint = m_mouseCurrentPoint;
- //4-2 根据位置绘制标记
- Point ImgPoint = new Point((int)dMouseImgX, (int)dMouseImgY);
- Rectangle rect = new Rectangle(p_mouseCurrentTempPoint, new Size(1, 1));
- CreateRectangle createRect = new CreateRectangle(rect, ImgPoint, m_CurrentMultiple, (int)CreateRectangleType.DrawBSEElementSignPoint);
- m_ElementPointGDIObjects.Add(createRect);
- //5.获取成功后弹出对话框
- //计数率
- double electronicCount = 0;
- uint[] u_ElementXrayData = new uint[2000];
- for (int i = 0; i < a_ElementXrayData.Length; i++)
- {
- u_ElementXrayData[i] = (uint)a_ElementXrayData[i];
- //累加计数率
- electronicCount += a_ElementXrayData[i];
- }
- //显示Xray控件
- panelXray.Visible = true;
- //获取数据后,需要对xraytable设置
- string[] strGroup = a_strElementName.Split('\n');
- //get CElementChemistryClr list
- List<ShowElementInfo> list_showelementinfo = new List<ShowElementInfo>();
- for (int i = 0; i < strGroup.Length; i++)
- {
- if (!strGroup[i].Equals(""))
- {
- ShowElementInfo ls_sei = new ShowElementInfo();
- ls_sei.ElementName = strGroup[i].Split(':')[0];
- ls_sei.Percentage = Convert.ToDouble(strGroup[i].Split(':')[1]);
- list_showelementinfo.Add(ls_sei);
- }
- }
- //设置分析Xray数据
- control_XRayTable1.SetXRayShowLineValue(new uint[2000], u_ElementXrayData, list_showelementinfo);
- //需要显示计数率
- string strElectronicCount = string.Empty;
- if (electronicCount > 1000)
- {
- strElectronicCount = (Convert.ToDouble(electronicCount) / 1000).ToString("f2") + "kcps";
- }
- control_XRayTable1.List_ShowElementInfo = list_showelementinfo;
- }
- ExportScanInfoMenuItem.Enabled = true;
- this.Invalidate();
- }
- try
- {
- //cfun.DisConnectSem();
- //cfun.FreeHardware();
-
- log.Trace("-------释放单击采集对象------");
- }
- catch (Exception)
- {
- }
- }
- }
- #region 根据夹杂物编号获取夹杂物名称
- public string GetInclusionName(int nInclusionID)
- {
- //获取使用标准库的名称,也许这个也不是很正确??
- string str_stdname = "";
- string str_IncALibName = "";
- COTSSample cSample = m_MeasureAppForm.m_ProjParam.m_ResultData.GetWorkingSample();
- if (nInclusionID < 1000)
- {
- //小于1000,使用系统默认分类
- str_IncALibName = "";
- str_stdname = "默认标准库";
- }
- else if (nInclusionID >= 1000 && nInclusionID < 10000)
- {
- //大于等于1000,并且小于10000时,使用系统数据库中夹杂物来分析
- str_IncALibName = "";
- str_stdname = "用户定义标准库";
- }
- else if (nInclusionID > 10000)
- {
- //查询数据中的化合物名称
- SQliteManageClass sQliteManageClass = new SQliteManageClass();
- str_IncALibName = sQliteManageClass.GetNameByIncAId(nInclusionID.ToString());
- //大于10000时,使用用户标准库来分析夹杂物名称
- if (str_stdname == "")
- str_stdname = "系统标准库";
- }
- return str_IncALibName;
- }
- #endregion
- public void DelElementPointGDIObjects()
- {
- if (m_ElementPointGDIObjects != null)
- {
- if (m_ElementPointGDIObjects.Count > 0)
- {
- //删除点标记
- m_ElementPointGDIObjects.Clear();
- this.Invalidate();
- }
- }
- }
- private void ExportScanInfoMenuItem_Click(object sender, EventArgs e)
- {
- try
- {
- //导出图片到报告中
- ExportReport();
- }
- catch (Exception ex)
- {
- log.Error("ExportScanInfoMenuItem_Click:保存图片错误日志: " + ex.ToString());
- }
- }
- /// <summary>
- /// 导出Image到报告
- /// </summary>
- private bool ExportReport()
- {
- string startupPath = System.Windows.Forms.Application.StartupPath + "\\TempReport\\";
- if (!Directory.Exists(startupPath))
- {
- Directory.CreateDirectory(startupPath);
- }
- //保存Xray图片
- string ImgFilePath = startupPath + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".jpg";
- Bitmap bseBM = new Bitmap(this.pbBSEImage.Width, this.pbBSEImage.Height);
- this.pbBSEImage.DrawToBitmap(bseBM, new Rectangle(0, 0, this.pbBSEImage.Width, this.pbBSEImage.Height));
- //保存图片
- bseBM.Save(ImgFilePath, System.Drawing.Imaging.ImageFormat.Jpeg);
- //释放资源
- bseBM.Dispose();
- //保存Xray图片
- string ImgXrayFilePath = startupPath + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".jpg";
- int xrayWidth = control_XRayTable1.Width;
- int xrayHeight = control_XRayTable1.Height;
- Bitmap xrayBM = new Bitmap(xrayWidth, xrayHeight);
- this.control_XRayTable1.DrawToBitmap(xrayBM, new Rectangle(0, 0, xrayWidth, xrayHeight));
- //保存图片
- xrayBM.Save(ImgXrayFilePath, System.Drawing.Imaging.ImageFormat.Jpeg);
- //释放资源
- xrayBM.Dispose();
- List<string> listFilePath = new List<string>();
- listFilePath.Add(ImgFilePath);
- listFilePath.Add(ImgXrayFilePath);
- List<ShowElementInfo> list_ElementInfo = control_XRayTable1.List_ShowElementInfo;
- //1.编辑信息
- DataTable dt = new DataTable();
- dt.Columns.Add("元素名称");
- dt.Columns.Add("原子数");
- dt.Columns.Add("质量百分比");
- dt.Columns.Add("摩尔比");
- foreach (var item in list_ElementInfo)
- {
- //获取摩尔比与原子数
- CElementChemistry cElementChemistry = new CElementChemistry();
- cElementChemistry.SetName(item.ElementName);
- cElementChemistry.SetPercentage(item.Percentage);
- double molarValue = Math.Round(cElementChemistry.GetMolarPercentage(), 2);
- int atomNum = (int)CElement.GetAtomicNum(item.ElementName);
- DataRow dr = dt.NewRow();
- dr[0] = item.ElementName;
- dr[1] = atomNum;
- dr[2] = item.Percentage;
- dr[3] = molarValue;
- dt.Rows.Add(dr);
- }
- DataGridView dgv = new DataGridView();
- dgv.DataSource = dt.DefaultView;
- List<DataTable> list_ElementData = new List<DataTable>();
- list_ElementData.Add(dt);
- //将数据插入Excel中
- return m_ImageData.InsertDataToExcelTable(list_ElementData, startupPath, listFilePath);
- }
- public void HideXRayTable()
- {
- panelXray.Visible = false;
- //清空元素标记对象
- if (m_ElementPointGDIObjects != null)
- {
- if (m_ElementPointGDIObjects.Count > 0)
- {
- m_ElementPointGDIObjects.Clear();
- }
- }
- }
- //在picturebox的鼠标按下事件里,记录三个变量.
- int xPos;
- int yPos;
- bool MoveFlag = false;
- private void pbBSEImage_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
- {
- if (e.Button == MouseButtons.Left)
- {
- //在线扫描未选中的情况下 设置移动标识与获取当前鼠标位置
- if (!((System.Windows.Forms.ToolStripMenuItem)contextMenuStrip1.Items[(int)MeasureStateMenuType.MenuItemLineScam]).Checked)
- {
- MoveFlag = true;//已经按下.
- xPos = e.X;//当前x坐标.
- yPos = e.Y;//当前y坐标.
- }
- }
- }
- //在picturebox的鼠标按下事件里.
- private void pbBSEImage_MouseUp(object sender, MouseEventArgs e)
- {
- //dMouseImgX = e.X;//当前x坐标移动后的位置.
- //dMouseImgY = e.Y;//当前y坐标移动后的位置.
- int moveX = e.X - xPos;
- int moveY = e.Y - yPos;
- MoveFlag = false;
- }
- //在picturebox鼠标移动
- private void pbBSEImage_MouseMove(object sender, MouseEventArgs e)
- {
- if (MoveFlag)
- {
- pbBSEImage.Left = Convert.ToInt32(e.X - xPos);//设置x坐标.
- pbBSEImage.Top = Convert.ToInt32(e.Y - yPos);//设置y坐标.
- }
- }
- //在picturebox鼠标缩放
- private void pbBSEImage_MouseWheel(object sender, MouseEventArgs e)
- {
- //鼠标滚动缩放 BSE图
- if (e.Delta > 0)
- {
- if (m_CurrentMultiple < m_MaxMultipleRange)
- {
- m_CurrentMultiple += Convert.ToSingle(m_Multiple.ToString("f2"));
- pbBSEImage.Width += Convert.ToInt32(m_iWidth * m_Multiple);
- pbBSEImage.Height += Convert.ToInt32(m_iHeight * m_Multiple);
- WheelElementPointGDIObjects(m_CurrentMultiple);
- }
- }
- else
- {
- m_CurrentMultiple -= Convert.ToSingle(m_Multiple.ToString("f2"));
- if (m_CurrentMultiple > 0)
- {
- pbBSEImage.Width -= Convert.ToInt32(m_iWidth * m_Multiple);
- pbBSEImage.Height -= Convert.ToInt32(m_iHeight * m_Multiple);
- }
- else
- {
- m_CurrentMultiple = 0;
- //pbBSEImage.Height = this.RestoreBounds.Height;
- //pbBSEImage.Width = this.RestoreBounds.Width;
- pbBSEImage.Height = this.RestoreBounds.Height;
- pbBSEImage.Width = this.RestoreBounds.Height * 4 / 3;
- pbBSEImage.Left = 0;
- pbBSEImage.Top = 0;
- Rectangle rectangle = GetPictureBoxZoomSize(pbBSEImage);
- Point sizeChangePoint = rectangle.Location;
- //修改窗体宽度后,设置单点采集的位置
- if (m_ElementPointGDIObjects != null)
- {
- if (m_ElementPointGDIObjects.Count > 0)
- {
- if (m_GetBSEImageInitPoint != sizeChangePoint)
- {
- int sizeChangeX = sizeChangePoint.X - m_GetBSEImageInitPoint.X;
- int sizeChangeY = sizeChangePoint.Y - m_GetBSEImageInitPoint.Y;
- RectangleF sizeChangeRectF = m_ElementPointGDIObjects[0].RegionF;
- sizeChangeRectF.X = m_ElementPointGDIObjects[0].RegionF.X + sizeChangeX;
- m_ElementPointGDIObjects[0].RegionF = sizeChangeRectF;
- m_ElementPointGDIObjects[0].DrawRegionF = sizeChangeRectF;
- m_GetBSEImageInitPoint = sizeChangePoint;
- }
- }
- }
- }
- WheelElementPointGDIObjects(m_CurrentMultiple);
- }
- }
- /// <summary>
- /// 缩放时改变 单点标识位置
- /// </summary>
- /// <param name="m_CurrentMultiple"></param>
- public void WheelElementPointGDIObjects(float m_CurrentMultiple)
- {
- if (m_ElementPointGDIObjects.Count > 0)
- {
- foreach (ARectangleGDIObject item in m_ElementPointGDIObjects)
- {
- RectangleF rectF = new RectangleF();
- rectF.X = item.RegionF.X + Convert.ToSingle(dMouseImgX) * m_CurrentMultiple;
- rectF.Y = item.RegionF.Y + Convert.ToSingle(dMouseImgY) * m_CurrentMultiple;
- //改变位置
- RectangleF elementPointRctF = new RectangleF();
- elementPointRctF.X = rectF.X;
- elementPointRctF.Y = rectF.Y;
- item.DrawRegionF = elementPointRctF;
- }
- }
- }
- private void button1_Click(object sender, EventArgs e)
- {
- COTSSample cSample = m_MeasureAppForm.m_ProjParam.GetWorkSample();
- int start = cSample.GetMsrParams().GetImageProcessParam().GetBGGray().GetStart();
- int end = cSample.GetMsrParams().GetImageProcessParam().GetBGGray().GetEnd();
- Image bInput = pbBSEImage.Image;
- List<ColorMap> colorMapTemp = new List<ColorMap>();
- for (int i = start; i <= end; i++)
- {
- ColorMap colorMap = new ColorMap();
- string colorName = "#" + Color.FromArgb(i, i, i).Name.ToString();
- colorMap.OldColor = ColorTranslator.FromHtml(colorName);
- colorMap.NewColor = Color.Red;
- colorMapTemp.Add(colorMap);
- }
- Bitmap outBitmap = new Bitmap(bInput);
- //创建Graphics对象
- Graphics g = Graphics.FromImage(outBitmap);
- //生成的图像大小
- int width = bInput.Width;
- int height = bInput.Height;
- //编辑被着急图像所要显示的位置
- Rectangle DrawRect = new Rectangle(0, 0, 1024, 768);
- //编辑输出画布中着色的位置
- Rectangle ShowRect = new Rectangle(0, 0, 1024, 768);
- ImageAttributes attr = new ImageAttributes();
- attr.SetRemapTable(colorMapTemp.ToArray());
- //从输入图像中截图至临时图像中
- g.DrawImage(bInput, ShowRect, 0, 0, DrawRect.Width, DrawRect.Height, GraphicsUnit.Pixel, attr);
- pbBSEImage.Image = outBitmap;
- }
- private void OTSMeasureStatusWindow_MouseClick(object sender, MouseEventArgs e)
- {
- try
- {
- if (e.Button == MouseButtons.Right && e.Clicks == 1)
- {
- contextMenuStrip1.Show();
- contextMenuStrip1.Show(PointToScreen(e.Location));
- SetContentMenu();
- }
- }
- catch (Exception ex)
- {
- log.Error("(OTSMeasureStatusWindow.OTSMeasureStatusWindow_MouseClick) " + ex.ToString());
- }
- }
- private void ViewStripMenuItem_Click(object sender, EventArgs e)
- {
- ToolWindow toolWindow = new ToolWindow(m_MeasureAppForm, this);
- int grayStart = 0;
- int grayEnd = 0;
- if (bBseData != null)
- {
- Bitmap bitmap = Imagepro.ToGrayBitmap(bBseData, m_iWidth, m_iHeight);
- toolWindow.BseImg = bitmap;
- toolWindow.BBseData = bBseData;
- //获取去背景灰度值
- grayStart = m_MeasureAppForm.m_ProjParam.GetWorkSample().GetMsrParams().GetImageProcessParam().GetBGGray().GetStart();
- grayEnd = m_MeasureAppForm.m_ProjParam.GetWorkSample().GetMsrParams().GetImageProcessParam().GetBGGray().GetEnd();
- //设置可视化中的属性
- toolWindow.BseGrayMinValue = grayStart;
- toolWindow.BseGrayMaxValue = grayEnd;
- }
- DialogResult dialogResult = toolWindow.ShowDialog();
- if (dialogResult == DialogResult.Yes)
- {
- //获取去背景参数
- grayStart = toolWindow.BseGrayMinValue;
- grayEnd = toolWindow.BseGrayMaxValue;
- //设置去背景参数
- COTSImageProcParam cOTSImgProc = new COTSImageProcParam();
- cOTSImgProc = m_MeasureAppForm.m_ProjParam.m_ResultData.GetWorkingSample().GetMsrParams().GetImageProcessParam();
- CIntRange cIntRange = new CIntRange();
- cIntRange.SetStart(grayStart);
- cIntRange.SetEnd(grayEnd);
- cOTSImgProc.SetBGGray(cIntRange);
- m_MeasureAppForm.m_ProjParam.m_ResultData.GetWorkingSample().GetMsrParams().SetImageProcessParam(cOTSImgProc);
- //更新属性窗口
- m_MeasureAppForm.UpdatePropertyVal();
- //确认后进行去背景
- ShowRemoveBGImage();
- return;
- }
- }
- }
- }
|