1234567891011121314151617181920212223242526272829303132333435 |
- using OTSCLRINTERFACE;
- using OTSDataType;
- using OTSMeasureApp._0_OTSModel.Measure._5_OTSMining;
- using OTSModelSharp.ServiceCenter;
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OTSModelSharp.Measure
- {
- class CFieldDataMining : COTSFieldData
- {
- public CFieldDataMining(Point center, double a_dPixelSize) : base(center, a_dPixelSize)
- {
- }
-
- //List<CMatrixXrayParticle> matrixParts = new List<CMatrixXrayParticle>();
- // particle list
- //public void SplitRawParticleIntoMatricsParticleByXrayStep(List<COTSParticleClr> particles, double xrayStep)
- //{
- // m_ImagePro = new CImageHandler();
- // foreach (COTSParticleClr part in particles)
- // {
- // m_ImagePro.(part, m_pixelSize);
- // }
- // return true;
- //}
- }
- }
|