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_AREA_IMAGE_FILTER_H_ 00025 #define _SO_AREA_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 <ImageViz/Fields/SoSFImageDataAdapter.h> 00032 #include <ImageViz/Engines/SoImageVizEngineAnalysisOutput.h> 00033 00034 00077 class SoAreaQuantification2d : public SoImageVizEngine 00078 { 00079 00080 SO_IMAGEVIZ_ENGINE_HEADER(SoAreaQuantification2d); 00081 00082 public: 00084 SoAreaQuantification2d(); 00085 00089 class SbArea2DDetail 00090 { 00091 public: 00092 00093 SbArea2DDetail(SoImageAnalysisResult* analysis, int sequenceIndex=0); 00094 00096 inline float getArea() const 00097 { return m_area; } 00098 00100 inline unsigned long getPixelNumber() const 00101 { return m_pixelNumber; } 00102 00104 inline float getPixelDensity() const 00105 { return m_pixelDensity; } 00106 00107 private: 00108 00109 SbArea2DDetail(){}; 00110 00111 float m_area; 00112 unsigned long m_pixelNumber; 00113 float m_pixelDensity; 00114 }; 00115 00117 SoSFImageDataAdapter inImage; 00118 00120 SoImageVizEngineAnalysisOutput<SbArea2DDetail> outResult; 00121 00122 00123 private: 00125 virtual ~SoAreaQuantification2d(); 00126 00127 }; 00128 00129 #endif