diff --git a/Code/FeatureExtraction/otbGenericRoadExtractionFilter.txx b/Code/FeatureExtraction/otbGenericRoadExtractionFilter.txx index 0a227ea86729cb13a9985142fb1313ed5e05c393..d64ace2691d3a2e3bae1703757f448e23c646879 100644 --- a/Code/FeatureExtraction/otbGenericRoadExtractionFilter.txx +++ b/Code/FeatureExtraction/otbGenericRoadExtractionFilter.txx @@ -53,12 +53,12 @@ GenericRoadExtractionFilter<TInputImage, TOutputPath> /** Tolerance for segment consistency (tolerance in terms of distance) (use by the SimplifyPathFilter)*/ m_Tolerance = static_cast<ToleranceType>(1.); /** Max angle (use bye the BreakAngularPathListFilter)*/ - m_MaxAngle = static_cast<MaxAngleType>(CONST_PI/8.); + m_MaxAngle = static_cast<MaxAngleType>(CONST_PI_8); /** Tolerance for segment consistency (tolerance in terms of distance) (use by RemoveTortuousPathFilter)*/ m_FirstMeanDistanceThreshold = static_cast<MeanDistanceThresholdType>(1.); m_SecondMeanDistanceThreshold = static_cast<MeanDistanceThresholdType>(10.); /** The angular threshold (use by LinkPathFilter) */ - m_AngularThreshold = static_cast<LinkRealType>(CONST_PI/8.); + m_AngularThreshold = static_cast<LinkRealType>(CONST_PI_8); /** The distance threshold (use by LinkPathFilter) */ m_DistanceThreshold = 25.; diff --git a/Code/FeatureExtraction/otbRemoveWrongDirectionFilter.h b/Code/FeatureExtraction/otbRemoveWrongDirectionFilter.h index f09307d3550eb381f1b8847bf15b25bd1608db5a..731c172cbfeaf2e90bdb1c74434cc6e6b113a367 100644 --- a/Code/FeatureExtraction/otbRemoveWrongDirectionFilter.h +++ b/Code/FeatureExtraction/otbRemoveWrongDirectionFilter.h @@ -43,7 +43,7 @@ public: ~RemoveWrongDirectionFunctor() {}; inline TOutput operator()(const TInput1 &A, const TInput2 &B) { - if (B < CONST_PI/8) + if (B < CONST_PI_8) { return 0; }