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_HISTOGRAM_IMAGE_FILTER_H_ 00025 #define _SO_HISTOGRAM_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/Engines/SoImageVizEngineAnalysisOutput.h> 00035 00036 00062 class SoIntensityHistogramQuantification : public SoImageVizEngine 00063 { 00064 00065 SO_IMAGEVIZ_ENGINE_HEADER(SoIntensityHistogramQuantification); 00066 00067 public: 00069 SoIntensityHistogramQuantification(); 00070 00074 class SbIntensityHistogramDetail 00075 { 00076 public: 00077 00078 SbIntensityHistogramDetail(SoImageAnalysisResult* analysis, int sequenceIndex=0); 00079 00081 inline long getIntensityValue() const 00082 { return m_intensityValue; } 00083 00085 inline unsigned long getCount() const 00086 { return m_count; } 00087 00088 private: 00089 00090 SbIntensityHistogramDetail(){}; 00091 00092 long m_intensityValue; 00093 unsigned long m_count; 00094 }; 00095 00097 SoSFImageDataAdapter inImage; 00098 00102 enum RangeMode{ 00106 MIN_MAX = 0, 00110 OTHER = 1 00111 }; 00112 00116 SoSFEnum rangeMode; 00117 00119 SoSFVec2i32 intensityRangeInput; 00120 00122 SoImageVizEngineAnalysisOutput<SbIntensityHistogramDetail> outResult; 00123 00124 00125 private: 00127 virtual ~SoIntensityHistogramQuantification(); 00128 00129 }; 00130 00131 #endif