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_SOLOCALMAXIMAQUANTIFICATION_IMAGE_FILTER_H_ 00025 #define _SO_SOLOCALMAXIMAQUANTIFICATION_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 #include <Inventor/fields/SoSFEnum.h> 00031 00032 #include <Inventor/fields/SoSFFloat.h> 00033 #include <Inventor/fields/SoSFInt32.h> 00034 #include <Inventor/fields/SoSFVec3i32.h> 00035 #include <ImageViz/Fields/SoSFImageDataAdapter.h> 00036 #include <ImageViz/Engines/SoImageVizEngineAnalysisOutput.h> 00037 00038 00124 class SoLocalMaximaQuantification : public SoImageVizEngine 00125 { 00126 00127 SO_IMAGEVIZ_ENGINE_HEADER(SoLocalMaximaQuantification); 00128 00129 public: 00131 SoLocalMaximaQuantification(); 00132 00136 SoSFEnum computeMode; 00137 00141 class SbLocalMaximaDetail 00142 { 00143 public: 00144 00145 SbLocalMaximaDetail(SoImageAnalysisResult* analysis, int sequenceIndex=0); 00146 00148 inline float getValue() const 00149 { return m_value; } 00150 00152 inline float getPositionX() const 00153 { return m_positionX; } 00154 00156 inline float getPositionY() const 00157 { return m_positionY; } 00158 00160 inline float getPositionZ() const 00161 { return m_positionZ; } 00162 00163 private: 00164 00165 SbLocalMaximaDetail(){}; 00166 00167 float m_value; 00168 float m_positionX; 00169 float m_positionY; 00170 float m_positionZ; 00171 }; 00172 00174 SoSFImageDataAdapter inGrayImage; 00175 00177 SoSFVec3i32 localWindow; 00178 00180 SoSFFloat thresholdLevel; 00181 00185 enum PrecisionMode{ 00189 PIXEL = 0, 00193 SUB_PIXEL = 1 00194 }; 00195 00199 SoSFEnum precisionMode; 00200 00202 SoSFInt32 numberOfPatterns; 00203 00205 SoImageVizEngineAnalysisOutput<SbLocalMaximaDetail> outResult; 00206 00207 00208 private: 00210 virtual ~SoLocalMaximaQuantification(); 00211 00212 }; 00213 00214 #endif