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_AUTO_THRESHOLD_VALUE_IMAGE_FILTER_H_ 00025 #define _SO_AUTO_THRESHOLD_VALUE_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 <Inventor/fields/SoSFVec2f.h> 00033 #include <ImageViz/Fields/SoSFImageDataAdapter.h> 00034 #include <ImageViz/Engines/SoImageVizEngineAnalysisOutput.h> 00035 00036 00176 class SoAutoThresholdingQuantification : public SoImageVizEngine 00177 { 00178 00179 SO_IMAGEVIZ_ENGINE_HEADER(SoAutoThresholdingQuantification); 00180 00181 public: 00183 SoAutoThresholdingQuantification(); 00184 00188 SoSFEnum computeMode; 00189 00193 class SbAutoThresholdingDetail 00194 { 00195 public: 00196 00197 SbAutoThresholdingDetail(SoImageAnalysisResult* analysis, int sequenceIndex=0); 00198 00200 inline float getThreshold() const 00201 { return m_threshold; } 00202 00203 private: 00204 00205 SbAutoThresholdingDetail(){}; 00206 00207 float m_threshold; 00208 }; 00209 00211 SoSFImageDataAdapter inGrayImage; 00212 00216 enum RangeMode{ 00220 MIN_MAX = 0, 00224 OTHER = 1 00225 }; 00226 00230 SoSFEnum rangeMode; 00231 00233 SoSFVec2f intensityRangeInput; 00234 00238 enum ThresholdCriterion{ 00242 ENTROPY = 0, 00246 FACTORISATION = 1, 00250 MOMENTS = 2 00251 }; 00252 00256 SoSFEnum thresholdCriterion; 00257 00259 SoImageVizEngineAnalysisOutput<SbAutoThresholdingDetail> outResult; 00260 00261 00262 private: 00264 virtual ~SoAutoThresholdingQuantification(); 00265 00266 }; 00267 00268 #endif