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-2020 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_SEGMENT_IMAGE_FILTER_H_ 00025 #define _SO_AUTO_SEGMENT_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/SoSFVec2i32.h> 00033 #include <ImageViz/Fields/SoSFImageDataAdapter.h> 00034 #include <ImageViz/Fields/SoSFImageAnalysisResult.h> 00035 #include <ImageViz/Engines/SoImageVizEngineAnalysisOutput.h> 00036 00071 class SoAutoSegmentation3PhasesProcessing : public SoImageVizEngine 00072 { 00073 00074 SO_IMAGEVIZ_ENGINE_HEADER( SoAutoSegmentation3PhasesProcessing ); 00075 00076 public: 00078 SoAutoSegmentation3PhasesProcessing(); 00079 00083 SoSFEnum computeMode; 00084 00088 class SbAutoSegmentation3PhasesDetail 00089 { 00090 public: 00091 00092 SbAutoSegmentation3PhasesDetail( SoImageAnalysisResult* analysis, int sequenceIndex = 0 ); 00093 00095 inline float getThresholdLow() const 00096 { 00097 return m_threshold_low; 00098 } 00099 00101 inline float getThresholdHigh() const 00102 { 00103 return m_threshold_high; 00104 } 00105 00106 private: 00107 00108 SbAutoSegmentation3PhasesDetail() {}; 00109 00110 float m_threshold_low; 00111 float m_threshold_high; 00112 }; 00113 00115 SoSFImageDataAdapter inGrayImage; 00116 00117 00119 SoSFVec2i32 intensityRangeInput; 00120 00124 enum ThresholdCriterion 00125 { 00129 ENTROPY = 0, 00133 FACTORISATION = 1, 00137 MOMENTS = 2 00138 }; 00139 00143 SoSFEnum thresholdCriterion; 00144 00146 SoImageVizEngineOutput<SoSFImageDataAdapter, SoImageDataAdapter*> outLabelImage; 00147 00149 SoImageVizEngineAnalysisOutput<SbAutoSegmentation3PhasesDetail> outResult; 00150 00151 00152 private: 00154 virtual ~SoAutoSegmentation3PhasesProcessing(); 00155 00156 }; 00157 00158 #endif