00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2019 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : ImageViz-Generator (Sep 2013) 00022 ** Modified by : ImageViz-Generator 00023 **=======================================================================*/ 00024 #ifndef _SO_STATMASK_IMAGE_FILTER_H_ 00025 #define _SO_STATMASK_IMAGE_FILTER_H_ 00026 #include <ImageViz/SoImageViz.h> 00027 #include <ImageViz/Engines/SoSubImageVizEngine.h> 00028 #include <ImageViz/Engines/SoImageVizEngineOutput.h> 00029 #include <ImageViz/Engines/SoImageVizEngine.h> 00030 00031 #include <Inventor/fields/SoSFEnum.h> 00032 #include <ImageViz/Fields/SoSFImageDataAdapter.h> 00033 #include <ImageViz/Engines/SoImageVizEngineAnalysisOutput.h> 00034 00035 00063 class SoMaskedStatisticsQuantification : public SoImageVizEngine 00064 { 00065 00066 SO_IMAGEVIZ_ENGINE_HEADER(SoMaskedStatisticsQuantification); 00067 00068 public: 00070 SoMaskedStatisticsQuantification(); 00071 00075 SoSFEnum computeMode; 00076 00080 class SbStatisticsDetail 00081 { 00082 public: 00083 00084 SbStatisticsDetail(SoImageAnalysisResult* analysis, int sequenceIndex=0); 00085 00087 inline unsigned long getPixelNumber() const 00088 { return m_pixelNumber; } 00089 00091 inline float getMinimum() const 00092 { return m_minimum; } 00093 00095 inline float getMaximum() const 00096 { return m_maximum; } 00097 00099 inline float getIntensityRange() const 00100 { return m_intensityRange; } 00101 00103 inline float getMean() const 00104 { return m_mean; } 00105 00107 inline float getStandardDeviation() const 00108 { return m_standardDeviation; } 00109 00111 inline float getSkewness() const 00112 { return m_skewness; } 00113 00115 inline float getKurtosis() const 00116 { return m_kurtosis; } 00117 00118 private: 00119 00120 SbStatisticsDetail(){}; 00121 00122 unsigned long m_pixelNumber; 00123 float m_minimum; 00124 float m_maximum; 00125 float m_intensityRange; 00126 float m_mean; 00127 float m_standardDeviation; 00128 float m_skewness; 00129 float m_kurtosis; 00130 }; 00131 00133 SoSFImageDataAdapter inImage; 00134 00136 SoSFImageDataAdapter inMaskImage; 00137 00139 SoImageVizEngineAnalysisOutput<SbStatisticsDetail> outResult; 00140 00141 00142 private: 00144 virtual ~SoMaskedStatisticsQuantification(); 00145 00146 }; 00147 00148 #endif