CFieldDataMining.cs 957 B

1234567891011121314151617181920212223242526272829303132333435
  1. using OTSCLRINTERFACE;
  2. using OTSDataType;
  3. using OTSMeasureApp._0_OTSModel.Measure._5_OTSMining;
  4. using OTSModelSharp.ServiceCenter;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Drawing;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace OTSModelSharp.Measure
  12. {
  13. class CFieldDataMining : COTSFieldData
  14. {
  15. public CFieldDataMining(Point center, double a_dPixelSize) : base(center, a_dPixelSize)
  16. {
  17. }
  18. //List<CMatrixXrayParticle> matrixParts = new List<CMatrixXrayParticle>();
  19. // particle list
  20. //public void SplitRawParticleIntoMatricsParticleByXrayStep(List<COTSParticleClr> particles, double xrayStep)
  21. //{
  22. // m_ImagePro = new CImageHandler();
  23. // foreach (COTSParticleClr part in particles)
  24. // {
  25. // m_ImagePro.(part, m_pixelSize);
  26. // }
  27. // return true;
  28. //}
  29. }
  30. }