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 : Martial Papillon (Sep 2014) 00022 **=======================================================================*/ 00023 #ifndef _SO_DATA_MEASURE_ATTRIBUTES_H_ 00024 #define _SO_DATA_MEASURE_ATTRIBUTES_H_ 00025 00026 #include <ImageViz/SoImageViz.h> 00027 #include <Inventor/fields/SoFieldContainer.h> 00028 #include <Inventor/fields/SoMFFloat.h> 00029 #include <Inventor/fields/SoMFVec2f.h> 00030 #include <Inventor/fields/SoSFInt32.h> 00031 #include <Inventor/fields/SoSFBool.h> 00032 #include <Inventor/fields/SoMFVec2i32.h> 00033 #include <Inventor/fields/SoSFFloat.h> 00034 00043 class SoDataMeasureAttributes : public SoFieldContainer 00044 { 00045 SO_FIELDCONTAINER_HEADER(SoDataMeasureAttributes); 00046 public: 00048 SoDataMeasureAttributes(); 00049 00054 SoMFFloat feretAngles2D; 00055 00061 SoMFVec2f feretAngles3D; 00062 00066 SoMFVec2i32 cooccurrenceDirections; 00067 00068 #if 0 // Available in the next Visilog version 00069 00073 SoSFFloat cooccurrenceMinGrayLevel; 00074 00079 SoSFFloat cooccurrenceMaxGrayLevel; 00080 00085 SoSFFloat cooccurrenceBinSize; 00086 00090 SoSFBool cooccurrenceAutoAdjust; 00091 #endif 00092 00097 SoSFFloat histogramMinGrayLevel; 00098 00103 SoSFFloat histogramMaxGrayLevel; 00104 00109 SoSFFloat histogramBinSize; 00110 00114 SoSFBool histogramAutoAdjust; 00115 00120 SoMFFloat quantilePercents; 00121 00126 SoSFInt32 breadth3DNumAngles; 00127 00132 SoSFFloat overlap; 00133 00138 SoSFFloat neighborDistance; 00139 00144 SoSFBool neighborDistanceInSpatialUnit; 00145 00146 private: 00148 virtual ~SoDataMeasureAttributes(); 00149 }; 00150 00151 #endif /* _SO_DATA_MEASURE_ATTRIBUTES_H_ */ 00152