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-2021 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : Martial PAPILLON (Jan 2015) 00022 **=======================================================================*/ 00023 #ifndef _SO_CENTERLINE_APPROXIMATION_3D_H_ 00024 #define _SO_CENTERLINE_APPROXIMATION_3D_H_ 00025 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/SoSFBool.h> 00032 #include <Inventor/fields/SoSFDouble.h> 00033 #include <Inventor/fields/SoSFFieldContainer.h> 00034 #include <Inventor/fields/SoSFUInt32.h> 00035 #include <Inventor/nodes/SoIndexedLineSet.h> 00036 #include <ImageViz/Fields/SoSFImageDataAdapter.h> 00037 00078 class SoCenterLineApproximation3d : public SoImageVizEngine 00079 { 00080 00081 SO_IMAGEVIZ_ENGINE_HEADER( SoCenterLineApproximation3d ); 00082 00083 public: 00085 SoCenterLineApproximation3d(); 00086 00090 SoSFImageDataAdapter inLabelImage; 00091 00097 SoSFBool autoMode; 00098 00103 SoSFUInt32 numberOfBranches; 00104 00111 SoSFDouble newBranchSensibility; 00112 00119 SoSFDouble distanceMapSmoothing; 00120 00125 SoSFUInt32 smoothingIteration; 00126 00131 SoImageVizEngineOutput<SoSFImageDataAdapter, SoImageDataAdapter*> outBinaryImage; 00132 00138 SoImageVizEngineOutput<SoSFFieldContainer, SoIndexedLineSet*> outLineSet; 00139 00140 private: 00142 virtual ~SoCenterLineApproximation3d(); 00143 00144 }; 00145 00146 #endif