@@ -72,9 +72,9 @@ class CleaverImageToMeshFilter : public ImageToMeshFilter<TInputImage, TOutputMe
7272 itkSetMacro (Sigma, double );
7373 itkGetConstMacro (Sigma, double );
7474
75- /* * Sizing field sampling rate. The sampling rate of the input indicator functions or calculated indicator functions from segmentation files.
76- * The default sample rate will be the dimensions of the volume. Smaller sampling creates coarser meshes.
77- * Adjusting this parameter will also affect Cleaver’s runtime, with smaller values running faster. */
75+ /* * Sizing field sampling rate. The sampling rate of the input indicator functions or calculated indicator functions
76+ * from segmentation files. The default sample rate will be the dimensions of the volume. Smaller sampling creates
77+ * coarser meshes. Adjusting this parameter will also affect Cleaver’s runtime, with smaller values running faster. */
7878 itkSetMacro (SamplingRate, double );
7979 itkGetConstMacro (SamplingRate, double );
8080
@@ -84,7 +84,8 @@ class CleaverImageToMeshFilter : public ImageToMeshFilter<TInputImage, TOutputMe
8484 itkSetMacro (Lipschitz, double );
8585 itkGetConstMacro (Lipschitz, double );
8686
87- /* * Sizing field feature scaling. Scales features of the mesh effecting element size. Higher feature scaling creates coaser meshes. */
87+ /* * Sizing field feature scaling. Scales features of the mesh effecting element size. Higher feature scaling creates
88+ * coaser meshes. */
8889 itkSetMacro (FeatureScaling, double );
8990 itkGetConstMacro (FeatureScaling, double );
9091
@@ -106,20 +107,22 @@ class CleaverImageToMeshFilter : public ImageToMeshFilter<TInputImage, TOutputMe
106107 CleaverImageToMeshFilter ();
107108 ~CleaverImageToMeshFilter () override = default ;
108109
109- void PrintSelf (std::ostream & os, Indent indent) const override ;
110+ void
111+ PrintSelf (std::ostream & os, Indent indent) const override ;
110112
111113 using OutputRegionType = typename OutputMeshType::RegionType;
112114
113- void GenerateData () override ;
115+ void
116+ GenerateData () override ;
114117
115118private:
116- bool m_InputIsIndicatorFunction{false };
117- double m_Alpha{0.4 };
118- double m_SamplingRate{1.0 };
119- double m_Lipschitz{0.2 };
120- double m_FeatureScaling{1.0 };
121- int m_Padding{0 };
122- double m_Sigma{1.0 };
119+ bool m_InputIsIndicatorFunction{ false };
120+ double m_Alpha{ 0.4 };
121+ double m_SamplingRate{ 1.0 };
122+ double m_Lipschitz{ 0.2 };
123+ double m_FeatureScaling{ 1.0 };
124+ int m_Padding{ 0 };
125+ double m_Sigma{ 1.0 };
123126};
124127} // namespace itk
125128
0 commit comments