123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using OTSModelSharp.ServiceCenter;
- using static OTSDataType.otsdataconst;
- using OTSDataType;
- using System.Drawing;
- using System.Threading;
- using OTSCLRINTERFACE;
- using OTSMeasureApp._1_OTSMeasure.Measure._3_MeasureFlow;
- namespace OTSModelSharp
- {
-
-
-
- public class CSmplMeasure
- {
- protected static NLog.Logger log ;
- protected bool bSaveThreadWorking;
- protected System.Threading.Thread m_thread_ptr;
-
- protected COTSSample m_Sample;
-
- protected CMeasure m_pMsrThread;
- string m_strWorkingFolder;
- protected CSmplMsrResult m_pSampleRstFile;
-
-
- internal ISemController m_SemHardwareMgr;
- internal IScanController m_ScanHardwareMgr;
- internal IEDSController m_EDSController;
-
- protected Queue<COTSField> fieldQueue=new Queue<COTSField>();
-
- protected IClassifyEngine m_classifyEngine;
- private bool m_ifAquireClearParticleImage=false;
- public CSmplMeasure( string a_strWorkingFolder, COTSSample a_pSample)
- {
- m_Sample = a_pSample;
- log = NLog.LogManager.GetCurrentClassLogger();
- var expC = m_Sample.GetMsrParams().GetXRayParam().GetAnalyExpCount();
- var imgwidth = m_Sample.GetMsrParams().GetImageScanParam().GetImageResolutionSize().cx;
- var imgheight = m_Sample.GetMsrParams().GetImageScanParam().GetImageResolutionSize().cy;
-
- m_strWorkingFolder = a_strWorkingFolder;
- m_pSampleRstFile = new CSmplMsrResult( a_strWorkingFolder, a_pSample);
- m_SemHardwareMgr = SemController.GetSEMController();
- m_ScanHardwareMgr = ScanController.GetScanController();
- var ifautoid = m_Sample.GetMsrParams().GetXRayParam().IfAutoId;
- var knownelements = m_Sample.GetMsrParams().GetXRayParam().AnalysisElements;
- m_EDSController = EDSController.GetEDSController(imgwidth,imgheight,expC,ifautoid,knownelements);
-
-
- m_ifAquireClearParticleImage = FileHelper.GetIfAquireClearParticleImage();
- }
- public void SetSample(COTSSample a_pSample)
- {
-
- m_Sample = a_pSample;
- m_pSampleRstFile.SetSample(a_pSample);
- }
- public COTSSample GetSample() { return m_Sample; }
- public void SetMsrThread(CMeasure mt)
- {
- m_pMsrThread = mt;
-
-
- }
- bool SetSEMDataMrs(CSEMFieldData pSEMDataMsr)
- {
- //var pSEMDataMsr = sample.GetSEMDataMsr();
-
- double dMag = pSEMDataMsr.GetMagnification();
- double dWorkDis = pSEMDataMsr.GetWorkingDistance();
- double bri=pSEMDataMsr.Brightness;
- double contra = pSEMDataMsr.Contrast;
- try
- {
- var pSEMCtrl = m_pMsrThread.GetSEMController();
- pSEMCtrl.SetMagnification(dMag);
- pSEMCtrl.SetWorkingDistance(dWorkDis);
- //pSEMCtrl.SetSemBrightness(bri);
- //pSEMCtrl.SetSemContrast(contra);
- log.Warn("set magnification " + dMag);
- log.Warn("set wd "+ dWorkDis);
- //log.Warn("set brightness "+bri);
- //log.Warn("set contrast "+contra);
- }
- catch (Exception e)
- {
- log.Error(e.Message);
-
- }
-
- return true;
- }
-
- // set SEM external off
- bool SetSEMExteralOff()
- {
- var pSEMCtrlPtr = m_SemHardwareMgr;
-
- log.Warn("Set SEM Exteral Off!");
- pSEMCtrlPtr.SetScanExternal(false);
- return true;
- }
- internal bool InitScanControllerBSEParam()
- {
-
- // get scan controller
- var pScanController = m_ScanHardwareMgr;
- // scan parameters
- var pMsrParam = m_Sample.GetMsrParams();
- var pImgScanParam = pMsrParam.GetImageScanParam();
- // get image size
- var nImageSizeId = pImgScanParam.GetImageResulotion();
- int nResulotionId = RESOLUTION_ID_FIRST_TIE + (int)nImageSizeId;
- Size sizePixelImage = RESOLUTION_VALUE[nResulotionId];
- // get dwell time
- OTS_IMAGE_SCANSPEED_OPTIONS nDwellTime = pImgScanParam.GetScanImageSpeed();
- // convert dwell time to bruker dwell time
- DwellTimeLevel DwellTimeId;
- switch (nDwellTime)
- {
- case OTS_IMAGE_SCANSPEED_OPTIONS.low:
- DwellTimeId = DwellTimeLevel.Low;
- break;
- case OTS_IMAGE_SCANSPEED_OPTIONS.meddium:
- DwellTimeId = DwellTimeLevel.Medium;
- break;
- case OTS_IMAGE_SCANSPEED_OPTIONS.high:
- DwellTimeId = DwellTimeLevel.High;
- break;
- default:
- DwellTimeId = DwellTimeLevel.Low;
- break;
- }
-
- if (!pScanController.Init())
- {
- log.Error("InitScanControllerBSEParam: failed to get scan control.");
-
- return false;
- }
-
- // set dwell time
- if (!pScanController.SetDwellTime(DwellTimeId))
- {
-
- return false;
- }
- // set image size
- if (!pScanController.SetImageSize(sizePixelImage.Width,sizePixelImage.Height))
- {
- // failed to set dwell time
- log.Error("InitScanControllerBSEParam: failed to set dwell time (%d).", sizePixelImage.Height);
- return false;
- }
- return true;
- }
-
-
- public void SetWorkingFolder(String a_strWorkingFolder)
- {
- // add "\\" at the string end if it is not "\\"
- if (a_strWorkingFolder.PadRight(1)!="\\")
- {
- a_strWorkingFolder += "\\";
- }
- m_strWorkingFolder = a_strWorkingFolder + m_Sample.GetName() + "\\";
- }
-
- protected bool IsAborted()
- {
-
- return m_pMsrThread.IsMeasureStopped();
- }
- protected bool IsPaused()
- {
-
- var statu = m_pMsrThread.GetMsrThreadStatus();
- if (statu.GetStatus() == OTS_MSR_THREAD_STATUS.PAUSED)
- {
- return true;
- }
- else
- {
- return false;
- }
-
- }
- bool IsSampleOver(COTSImgScanPrm a_pScanParam)
- {
-
- string sStopMode = a_pScanParam.GetStopMode();
- int nStopField = a_pScanParam.GetStopParamFields();
- // completed fields number
- CMsrSampleStatus pMsrSampleStatus = m_Sample.GetMsrStatus();
- int nCompeltedField = pMsrSampleStatus.GetCompletedFields();
- CMsrResultItems pMsrResults = m_Sample.GetMsrResults();
- List<CMsrResultItem> listMsrResult = pMsrResults.GetResultItems();
- int nNumParticle = 0;
- foreach (var pResult in listMsrResult)
- {
- if (pResult.GetTypeId() > (int)OTS_PARTICLE_TYPE.NOT_IDENTIFIED)//summarize the number of the identified particle in this condition
- {
- nNumParticle += (int)pResult.GetNumber();
- }
- }
- TimeSpan timeSpan = pMsrSampleStatus.GetUsedTime();
- int nDay = timeSpan.Days;
- int nHour = timeSpan.Hours;
- int nMin = timeSpan.Minutes;
- int nSec = timeSpan.Seconds;
- int nUsedTime = nSec + nMin * 60 + nHour * 3600 + nDay * 86400;
- int NMeasArea = (int)pMsrResults.GetMeasuredArea();
- int nParticlAim = a_pScanParam.GetStopParamParticles();
- int nMeasTimeAim = a_pScanParam.GetStopParamMeasTime();
- int NMeasAreaAim = a_pScanParam.GetStopParamArea()*1000000 ;
- bool bRet = false;
- string[] str = sStopMode.Replace(" ", "").Split('+');
- for(int i=0;i< str.Length;i++)
- {
- switch (int.Parse(str[i].Split(':')[0])-1)
- {
- case (int)OTS_MEASURE_STOP_MODE.CoverMode:
- // completed fields number
- if (nCompeltedField == m_Sample.GetFieldsData().Count)
- {
- bRet = true;
- }
- break;
- case (int)OTS_MEASURE_STOP_MODE.FieldMode:
- if (nCompeltedField >= nStopField)
- {
- bRet = true;
- }
- break;
- case (int)OTS_MEASURE_STOP_MODE.ParticleMode:
- if (nNumParticle >= nParticlAim)
- {
- bRet = true;
- }
- break;
- case (int)OTS_MEASURE_STOP_MODE.TimeMode:
- if (nUsedTime >= nMeasTimeAim)
- {
- bRet = true;
- }
- break;
- case (int)OTS_MEASURE_STOP_MODE.AreaMode:
- if (NMeasArea >= NMeasAreaAim)
- {
- bRet = true;
- }
- break;
- default:
- break;
- }
- }
- return bRet;
- }
- // move SEM to the point
- internal bool MoveSEMToPoint(System.Drawing.PointF a_poi)
- {
- // get SEM controller
- var pSEMController = m_SemHardwareMgr;
-
- PointF a_SEMpt = new Point();
-
- CSEMStageData a_pCSEMStageData = m_pMsrThread.GetProjResultData().GetSEMStageData();
- int hardWareDelay = a_pCSEMStageData.GetHardWareDelay();
- if (!a_pCSEMStageData.ConvertOTSToSEMCoord(a_poi, ref a_SEMpt))
- {
- return false;
- }
- log.Info("Begin to move SEM stage to OTScoord:" + a_poi.X + "," + a_poi.Y);
- log.Info("Begin to move SEM stage to " + a_SEMpt.X + "," + a_SEMpt.Y);
-
- // move SEM to the position (rotation 0)
- if (!pSEMController.MoveSEMToPoint(a_SEMpt.X, a_SEMpt.Y))
- {
- log.Error("MoveSEMToPoint: failed to call MoveSEMToPoint method.");
- return false;
- }
- CSampleParam pMsrParam = m_Sample.GetMsrParams();
- if (pMsrParam.SlopParam.IsUsingSlopParam)
- {
- double wd = pMsrParam.SlopParam.GetWD(a_SEMpt);
- double originWd = 0;
- pSEMController.GetWorkingDistance(ref originWd);
- if ((wd - originWd) > 2)
- {
- log.Warn("Working Distance is invalid,outof the moving scope(2cm) wd=" + wd.ToString("F2"));
- }
- else
- {
- Thread.Sleep(hardWareDelay);
- pSEMController.SetWorkingDistance(wd);
- }
-
- }
- if (hardWareDelay > 0)
- {
- Thread.Sleep(hardWareDelay);
- }
-
- return true;
- }
- // Acquire a BSE image
- CBSEImgClr AcquireABSEImage()
- {
- // BSE image
- CBSEImgClr pBSEImage = null;
- // get scan controller
- var pScanController = m_ScanHardwareMgr;
- pBSEImage = pScanController.AcquireBSEImage();
-
- return pBSEImage;
- }
- public bool IsLowCounts(COTSParticleClr particle)
- {
- COTSXRayParam pXRayParam = m_Sample.GetMsrParams().GetXRayParam();
- if (pXRayParam.GetUsingXray() == true)
- {
- var thecount = particle.GetXray().GetTotalCount();
- var expect = pXRayParam.GetAnalyExpCount();
- if (thecount < expect)
- {
- particle.SetType((int)OTS_PARTICLE_TYPE.LOW_COUNT);
- particle.SetClassifyId((int)OTS_PARTICLE_TYPE.LOW_COUNT);
- particle.SetTypeColor("#000000");
- particle.SetTypeName("LowCounts");
- return true;
- }
- }
- return false;
- }
- public virtual void ClassifyFieldParticles(COTSField curFldData)
- {
- return;
- }
-
-
-
- private bool GetSEMDataGnrFromHw(ref CSEMDataGnr SemDataGnr)
- {
- double kv = 0, brightness = 0, contrast = 0;
- var hw = SemController.GetSEMController();
- hw.GetSemHighTension(ref kv);
- hw.GetSemBrightness(ref brightness);
- hw.GetSemContrast(ref contrast);
- SemDataGnr.SetValue(kv, brightness, contrast);
- return true;
- }
- public void DoMeasureForOneSample()
- {
- try
- {
- // let the main thread to know that this sample measurement starts
- var pStatus = m_Sample.GetMsrStatus();
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.INPROCESS);
- // set current time to current time
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.START);
- // let main App know that the sample begin to measure
- ST_MSTMsg MsgSmpStart = new ST_MSTMsg(m_Sample);
- MsgSmpStart.InitSampleStartMsg();
- m_pMsrThread.SendMessageToMeasureGUI(MsgSmpStart);
- log.Info(m_Sample.GetName() + " Measurement started!");
- // get SEM controller to set magnification and working distance
- if (!SetSEMDataMrs(m_Sample.GetSEMDataMsr()))
- {
- log.Error("DoMeasure: fail to set SEM data.");
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.FAILED);
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.STOPPED);
- return;
- }
- // set the BSE scan param
- if (!InitScanControllerBSEParam())
- {
- log.Error("DoMeasure: fail to set BSE param.");
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.FAILED);
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.STOPPED);
- return;
- }
- var pSEMDataGnr = new CSEMDataGnr();
- log.Info("Get current Kv, Brightness and Contrast!");
- GetSEMDataGnrFromHw(ref pSEMDataGnr);
- m_pSampleRstFile.SetSEMDataGnr(pSEMDataGnr);
- // record SEM data
- COTSMsrPrjResultData pProjMgrFile = m_pMsrThread.GetProjResultData();
- CSEMStageData pSEMStageData = pProjMgrFile.GetSEMStageData();
- m_pSampleRstFile.SetSEMStageData(pSEMStageData);
- CSampleHolder pSampleStage = pProjMgrFile.GetStageHolder();
- m_pSampleRstFile.SetSEMStage(pSampleStage);
- //-----save the static measure result file data into xml file and the dynamic data of every field will be saved into sqlite database
- log.Info("Create result file!");
- if (!m_pSampleRstFile.CreateResultFiles())
- {// failed to call measure result file Save method
- log.Error("DoMeasure: failed to call measure result file Save method.");
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.FAILED);
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.STOPPED);
- return;
- }
- //------
- var FldDatas = m_Sample.GetFieldsData();
- for (int i = 0; i < FldDatas.Count; ++i)
- {// check and break if stop button is clicked
- try
- {
- var curFld = FldDatas[i];
- if (curFld.GetIsMeasureComplete())
- {
- continue;
- }
- if (curFld.Enable == false)
- {
- continue;
- }
- if (IsPaused())
- {// measure stopped
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.PAUSED);
- // record end time
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.STOPPED);
- //must wait for the saving data thread finished,or we'll get null pointer exception when we stop the measure process.
- while (fieldQueue.Count() > 0)
- {
- Thread.Sleep(100);
- }
- SetSEMExteralOff();
- // update thread measure status class, let the main thread know that this sample measurement stopped
- ST_MSTMsg MsgSmpStop = new ST_MSTMsg(m_Sample);
- MsgSmpStop.InitSamplePausedMsg();
- m_pMsrThread.SendMessageToMeasureGUI(MsgSmpStop);
- while (IsPaused())
- {
- Thread.Sleep(300);
- }
- }
- if (IsAborted())
- {// measure stopped
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.STOPPED);
- // record end time
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.STOPPED);
- //must wait for the saving data thread finished,or we'll get null pointer exception when we stop the measure process.
- while (fieldQueue.Count() > 0)
- {
- Thread.Sleep(100);
- }
- break;
- }
- // check if sample measurement completes
- COTSImgScanPrm pScanParam = m_Sample.GetMsrParams().GetImageScanParam();
- if (IsSampleOver(pScanParam))
- {
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.SUCCESSED);
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.COMPLT);
- break;
- }
- // get a field center
- System.Drawing.PointF poiFieldCentre = curFld.GetOTSPosition();
- // update thread measure status class, let the main thread know that starts a new field
- ST_MSTMsg MsgFieldStart = new ST_MSTMsg(m_Sample, curFld);
- MsgFieldStart.InitFieldStartMsg();
- m_pMsrThread.SendMessageToMeasureGUI(MsgFieldStart);
- int fldNo = curFld.GetId();
- log.Warn("Current field:" + fldNo.ToString());
- // move SEM to the field center
- if (!MoveSEMToPoint(poiFieldCentre))
- {// failed to move SEM to the position
- log.Error("DoMeasure: failed to move SEM to the field centre point.");
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.FAILED);
- // record end time
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.STOPPED);
- return;
- }
- log.Info("Begin to Acquire BSE image!");
- // take BSE image for the fields
- CBSEImgClr pBSEImg = AcquireABSEImage();
- // let the main thread to know that image process is completed
- if (pBSEImg == null)
- {
- log.Error("ImageProcess: can't get BSE image.");
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.FAILED);
- return;
- }
- curFld.SetBSEImage(pBSEImg);
- //BSEData
- ST_MSTMsg MsgFieldBSE = new ST_MSTMsg(m_Sample, curFld);
- MsgFieldBSE.InitFieldBSEImageMsg();
- m_pMsrThread.SendMessageToMeasureGUI(MsgFieldBSE);
- log.Info("Acquire BSE image success! Processing image...");
- // image process
- FieldImageProcess(curFld);
- MsgFieldBSE.InitFieldBSEAnalysisPartsDataMsg();
- m_pMsrThread.SendMessageToMeasureGUI(MsgFieldBSE);
- if (m_ifAquireClearParticleImage)
- {
- var listAnalysisParts = curFld.GetListAnalysisParticles();
- foreach (var p in listAnalysisParts)
- {
- Rectangle r = (Rectangle)p.GetParticleRect();
- var img = m_ScanHardwareMgr.AcquireRectangleBSEImage(r);
- if (img != null)
- {
- curFld.particleImages.Add(img);
- }
- }
- }
- COTSXRayParam pXRayParam = m_Sample.GetMsrParams().GetXRayParam();
- if (pXRayParam.GetUsingXray() == true)
- {
- foreach (var p in curFld.GetListAnalysisParticles())
- {
- p.SetIsXrayParticle(true);
- }
- try
- {
- CollectParticlesXrayData(curFld);
- }
- catch (Exception e)
- {
- log.Error(e.Message);
- }
- }
- m_Sample.GetMsrStatus().SetStatus(OTS_MSR_SAMPLE_STATUS.SUCCESSED);
- curFld.SetIsMeasureComplete(true);
- log.Info("Begin to classify particles! particle num:" + curFld.GetListAnalysisParticles().Count);
- try
- {
- ClassifyFieldParticles(curFld);
- }
- catch (Exception e)
- {
- log.Error(e.Message);
- }
- MsgFieldBSE.InitFieldSTDColoredPartsDataMsg();
- m_pMsrThread.SendMessageToMeasureGUI(MsgFieldBSE);
- //start db save
- StartSaveFileThread(ref curFld);
- // record
- pStatus.AddCompletedFieldCenter(curFld.GetOTSPosition());
-
-
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.STOPPED);
- SendFieldParticlesInfoToGUI(curFld, m_Sample.GetMsrStatus());
- }
- catch (Exception e)
- {
- log.Error(e.Message);
- }
- }
- while (bSaveThreadWorking)//wait untill all the field data has been saved.
- {
- Thread.Sleep(1000);
- log.Warn("db saving!");
- }
- TheLastWorkOfSampleMeasure();
- }
- catch (Exception e)
- {
- log.Error(e.Message);
- }
- finally
- {
- SetSEMExteralOff();
- }
- }
- public void TheLastWorkOfSampleMeasure()
- {
- COTSSample theSample = m_Sample;
- var pStatus = theSample.GetMsrStatus();
-
- pStatus.ComputeTime(OTS_MSR_TIME_TYPE.COMPLT);
- pStatus.SetStatus(OTS_MSR_SAMPLE_STATUS.SUCCESSED);
- // let main thread to know that this sample measurement completes
- ST_MSTMsg MsgSmplEnd = new ST_MSTMsg(m_Sample);
- MsgSmplEnd.InitSampleCompleteMsg();
-
- m_pMsrThread.SendMessageToMeasureGUI(MsgSmplEnd);
-
- }
- public bool DoMEasureForReMeasure()
- {
- return true;
- }
-
- public virtual void FieldImageProcess(COTSField curFldData)
- {
- PointF fldCenter = curFldData.GetOTSPosition();
-
-
- CSEMStageData a_pCSEMStageData = m_pMsrThread.GetProjResultData().GetSEMStageData();
- PointF semPos = new Point();
- a_pCSEMStageData.ConvertOTSToSEMCoord(fldCenter, ref semPos);
- curFldData.SetSemPos(semPos);
- //first step:remove background of the bse image and compound all the finded particles.
- CSampleParam pMsrParam = m_Sample.GetMsrParams();
- COTSImageProcParam pImgProcessParam = pMsrParam.GetImageProcessParam();
- log.Info("Begin to process image and get all particles!");
- //according to the ECD scope,filter out the effective particles,remove the noise.
- curFldData.GetOriginalParticles(m_Sample.GetMsrParams(), m_Sample.CalculatePixelSize());
- if (curFldData.Sample.GetMsrParams().GetImageProcessParam().GetBGRemoveType() == OTS_BGREMOVE_TYPE.MATRIX)
- {
- curFldData.SetListAnalysisParticles(curFldData.GetAllParticles());
- }
- else
- {
- log.Info("Begin to filter particles!");
- curFldData.FilterParticles(m_Sample.GetMsrParams().GetXRayParam());//filter according to the xraylimit and outermost border
- log.Info("Begin to Calculate the image property of every particle!");
- var analysisparts = curFldData.GetListAnalysisParticles();
- curFldData.CalParticleImageProp(analysisparts);//calculate particle image property such as feret diameter, DMAX etc.
- curFldData.SelectParticlesAccordingImgProp(pImgProcessParam);
- var overlap = pImgProcessParam.GetOverlapParam();
- if (overlap > 0)
- {
- try
- {
- curFldData.RemoveDuplicateOverlapParticles(overlap);
- }
- catch (Exception e)
- {
- log.Error(e.Message);
- }
- }
- }
-
- curFldData.CalculateParticleAbsolutPos(m_pMsrThread.GetProjResultData().GetSEMStageData());
-
- curFldData.InitParticles(pImgProcessParam);
-
- return ;
- }
-
-
-
-
- public virtual void CollectParticlesXrayData(COTSField curFldData)
- {
-
- var allParts = curFldData.GetListXrayParticles();
-
- var smallparts = new List<COTSParticleClr>();
- var bigparts = new List<COTSParticleClr>();
- double quantifyThreshold = m_Sample.GetMsrParams().GetXRayParam().GetFeatureModeMinSize();
- foreach (var part in allParts)
- {
- double equalCircleDiameter = Math.Sqrt(part.GetActualArea() / 3.14159) * 2f;
- if (equalCircleDiameter < quantifyThreshold)
- {
- smallparts.Add(part);
- }
- else
- {
- bigparts.Add(part);
- }
- }
- log.Info("SmallQuantifyParts (<" + quantifyThreshold.ToString("f2") + "): " + smallparts.Count);
- log.Info("BigQuantifyParts (>=" + quantifyThreshold.ToString("f2") + "): " + bigparts.Count);
- curFldData.CreateXrayList(smallparts);
- curFldData.CreateXrayList(bigparts);
- // get x-ray parameters
- COTSXRayParam pXRayParam = m_Sample.GetMsrParams().GetXRayParam();
- var workmode = pXRayParam.GetScanMode();
-
- if (workmode == OTS_X_RAY_SCAN_MODE.PointMode)
- {
- uint nXRayAQTime;
- if (bigparts.Count > 0)
- {
- nXRayAQTime = (uint)pXRayParam.GetMidAnalyAQTime();
- log.Info("Begin to collect xraydata:" + bigparts.Count +"(" +nXRayAQTime.ToString()+") on " + workmode.ToString());
-
- m_EDSController.GetXRayByParts(bigparts, nXRayAQTime, true);
- }
- if (smallparts.Count > 0)
- {
- Thread.Sleep(1000);//add delay here,or else the eds system will halt.
- nXRayAQTime = (uint)pXRayParam.GetSmallPartXrayTime();
- log.Info("Begin to collect xraydata:" + smallparts.Count + "(" + nXRayAQTime.ToString() + ") on " + workmode.ToString());
-
- m_EDSController.GetXRayByParts(smallparts, nXRayAQTime, true);
- }
- }
- else if (workmode == OTS_X_RAY_SCAN_MODE.FeatureMode)
- {
-
- uint nXRayAQTime;
-
- if (bigparts.Count > 0)
- {
- log.Info("Begin to collect xraydata:" + bigparts.Count + " on " + OTS_X_RAY_SCAN_MODE.FeatureMode.ToString());
- nXRayAQTime = (uint)pXRayParam.GetMidAnalyAQTime();
- m_EDSController.GetXRayByFeatures(bigparts, nXRayAQTime, true);
- }
- if (smallparts.Count > 0)
- {
- Thread.Sleep(1000);
- log.Info("Begin to collect xraydata:" + smallparts.Count + " on " + OTS_X_RAY_SCAN_MODE.PointMode.ToString());
- nXRayAQTime = (uint)pXRayParam.GetSmallPartXrayTime();
- m_EDSController.GetXRayByParts(smallparts, nXRayAQTime, true);
- }
- }
- else if (workmode == OTS_X_RAY_SCAN_MODE.ExpandMode)
- {
- uint nXRayAQTime;
- if (bigparts.Count > 0)
- {
- log.Info("Begin to collect xraydata:" + bigparts.Count + " on " + OTS_X_RAY_SCAN_MODE.FeatureMode.ToString());
- nXRayAQTime = (uint)pXRayParam.GetMidAnalyAQTime();
- m_EDSController.GetXRayByExpandFeatures(bigparts, nXRayAQTime, true);
- }
- if (smallparts.Count > 0)
- {
- Thread.Sleep(500);
- log.Info("Begin to collect xraydata:" + smallparts.Count + " on " + OTS_X_RAY_SCAN_MODE.PointMode.ToString());
- nXRayAQTime = (uint)pXRayParam.GetSmallPartXrayTime();
- m_EDSController.GetXRayByParts(smallparts, nXRayAQTime, true);
- }
- }
- return;
- }
- public virtual void QuantifyParticlesXrayData(COTSField curFldData)
- {
- var parts = curFldData.GetListXrayParticles();
- foreach (var p in parts)
- {
- m_EDSController.QuantifyXrayByPart(p);
- }
-
-
- }
-
- // Cumulate field data info
- public virtual bool CumulateFieldData( List<COTSParticleClr> listParticles, double a_nMeasuredArea)
- {
- // get measure result items of the sample
- CMsrResultItems pMsrResults = m_Sample.GetMsrResults();
-
- // go through the particles list
- foreach (COTSParticleClr pParticle in listParticles)
- {
- // create a measure result item
- pMsrResults.CumulateMeasureResult(pParticle);
- }
- pMsrResults.CumulateMeasuredArea(a_nMeasuredArea);
- // cumulate ratio
- double dRatio = pMsrResults.GetTotalParticleArea();
- dRatio = dRatio / pMsrResults.GetMeasuredArea();
- pMsrResults.SetRatio(dRatio);
-
-
- m_Sample.SetMsrResults(pMsrResults);
-
- return true;
- }
-
-
- public bool SaveFieldData(COTSField fldData, string filedFileFoler)
- {
-
- string strFieldFileFolder = filedFileFoler;
- CBSEImageFileMgr pBSEImgFileMgr = new CBSEImageFileMgr();
- pBSEImgFileMgr.SetBSEImg(fldData.GetBSEImage());
- int nId = fldData.GetId();
- string sFieldId;
- sFieldId = nId.ToString();
- string strBSEFilePathname = strFieldFileFolder + "\\" + m_pSampleRstFile.SMPL_MSR_RESULT_FIELDS_BSE + sFieldId + pBSEImgFileMgr.BMP_IMG_FILE_EXT;
- if (!pBSEImgFileMgr.SaveIntoBitmap(strBSEFilePathname))
- {
- log.Error("SaveFieldFiles: save BSE file failed.");
- return false;
- }
- if (fldData.particleImages.Count > 0)
- {
- for (int i=0;i<fldData.particleImages.Count;i++)
- {
- strBSEFilePathname= m_pSampleRstFile.GetParticleImageFolder() + "\\" + sFieldId +"_" +i.ToString()+pBSEImgFileMgr.BMP_IMG_FILE_EXT;
- pBSEImgFileMgr.SetBSEImg(fldData.particleImages[i]);
- pBSEImgFileMgr.SaveIntoBitmap(strBSEFilePathname);
- }
-
- }
- // IncA Data list
- CIncAFileMgr pDBFileMgr = m_pSampleRstFile.DBFileMgr;
- pDBFileMgr.SaveStatusDataToDB();
- var fldDB = pDBFileMgr.GetFieldDB();
- log.Warn("Start saving particle data.");
- var fldcmd = fldDB.GetSavingAFieldcmdObj(fldData.GetId(), fldData.GetOTSPosition(), fldData.GetSemPos());
- List<KeyValuePair<string, System.Data.SQLite.SQLiteParameter[]>> fldcmds = new List<KeyValuePair<string, System.Data.SQLite.SQLiteParameter[]>>();
- fldcmds.Add(fldcmd);
- pDBFileMgr.ExecuteNonQueryBatch(ref fldcmds);
- //remomove the invalid particles
- var cmds = pDBFileMgr.GetSavingParticleDataToDBCmds(fldData.GetListAnalysisParticles(), fldData.GetOTSPosition());
- pDBFileMgr.ExecuteNonQueryBatch(ref cmds);
- CPosXrayDBMgr PosXrayDBMgr = pDBFileMgr.GetPosXrayDBMgr();
- var listAnalysisPosXray = new List<CPosXrayClr>();
- foreach (var p in fldData.GetListXrayParticles())
- {
- listAnalysisPosXray.Add(p.GetXray());
- }
- var cmds1 = PosXrayDBMgr.GetSavingXrayCmds(listAnalysisPosXray, true);
- pDBFileMgr.ExecuteNonQueryBatch(ref cmds1);
- return true;
- }
- protected void SaveFieldMgrData()
- {
- while (bSaveThreadWorking)
- {
- while (fieldQueue.Count() > 0)
- {
- COTSField f = fieldQueue.Dequeue();
-
- //save to disk first ,then pop . if the size is 0,then we know all the saving work is done.
- log.Info("Begin to save particles data! particle num:" + f.GetListAnalysisParticles().Count);
- SaveFieldData(f, m_pSampleRstFile.GetFieldFileSubFolderStr());
-
- }
- if (fieldQueue.Count() == 0)
- {
- bSaveThreadWorking = false; //must set this flag,so the main thread can know this thread has exited.
- log.Warn("finished batch saving");
- return;
- }
- }
- return;
- }
- private void SendFieldParticlesInfoToGUI(COTSField curFld,CMsrSampleStatus pStatus)
- {
- double measuredArea = 0; // this area should be the field area
- var a_pBSEImg = curFld.GetBSEImage();
- double dPixelSize = curFld.GetPixelSize();
- measuredArea = a_pBSEImg.GetHeight() * a_pBSEImg.GetWidth() * dPixelSize * dPixelSize; //Get measured area
- CumulateFieldData(curFld.GetListAnalysisParticles(), measuredArea);
- log.Info("Send field data to screen!");
-
- ST_MSTMsg MsgFieldEnd = new ST_MSTMsg(m_Sample,curFld);
- MsgFieldEnd.InitFieldDataMsg();
-
- m_pMsrThread.SendMessageToMeasureGUI(MsgFieldEnd);
- }
- protected void StartSaveFileThread(ref COTSField a_pFieldMgr)
- {
- fieldQueue.Enqueue(a_pFieldMgr);
- if (fieldQueue.Count() > 0) //if there's data in the queue and the previous thread has finished then start a new thread.
- {
- if (bSaveThreadWorking == false)
- {
- bSaveThreadWorking = true;
- m_thread_ptr = new System.Threading.Thread(this.SaveFieldMgrData);//m_thread_ptr = shared_ptr<thread>(new thread(&CSmplMeasureInc::SaveFieldMgrData, this));
- m_thread_ptr.IsBackground = true;
- m_thread_ptr.Start();
- }
- }
- }
-
-
- }
- }
|