From c17d0beb707abb79717a573e5eb357f37ddb3c3d Mon Sep 17 00:00:00 2001 From: Mihail Isakov Date: Mon, 1 Apr 2019 19:51:25 +0200 Subject: [PATCH 1/3] STYLE: spelling, header included twice --- .../Filtering/Path/include/itkContourExtractor2DImageFilter.h | 4 ++-- .../Path/include/itkContourExtractor2DImageFilter.hxx | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h b/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h index d45bd56bf0f..a2d6d5d6065 100644 --- a/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h +++ b/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h @@ -59,12 +59,12 @@ namespace itk * * Outputs are not guaranteed to be closed paths: contours which intersect the * image edge will be left open. All other paths will be closed. (The - * closed-ness of a path can be tested by checking whether the beginning point + * closeness of a path can be tested by checking whether the beginning point * is the same as the end point.) * * Produced paths are oriented. Following the path from beginning to end, image * intensity values lower than the contour value are to the left of the path and - * intensity values grater than the contour value are to the right. In other + * intensity values greater than the contour value are to the right. In other * words, the image gradient at a path segment is (approximately) in the direct * of that segment rotated right by 90 degrees, because the image intensity * values increase from left-to-right across the segment. This means that the diff --git a/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.hxx b/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.hxx index 496bdec5534..77813ef4045 100644 --- a/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.hxx +++ b/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.hxx @@ -20,7 +20,6 @@ #include "itkConstShapedNeighborhoodIterator.h" #include "itkProgressReporter.h" -#include "itkConstShapedNeighborhoodIterator.h" #include "itkContourExtractor2DImageFilter.h" namespace itk From 610114e63c594c8d68290885a5a4dd836a7e70e4 Mon Sep 17 00:00:00 2001 From: issakomi Date: Mon, 1 Apr 2019 19:57:41 +0200 Subject: [PATCH 2/3] Update itkContourExtractor2DImageFilter.h --- .../Filtering/Path/include/itkContourExtractor2DImageFilter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h b/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h index a2d6d5d6065..0adcf236f14 100644 --- a/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h +++ b/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h @@ -59,7 +59,7 @@ namespace itk * * Outputs are not guaranteed to be closed paths: contours which intersect the * image edge will be left open. All other paths will be closed. (The - * closeness of a path can be tested by checking whether the beginning point + * closedness of a path can be tested by checking whether the beginning point * is the same as the end point.) * * Produced paths are oriented. Following the path from beginning to end, image From 75faf8ef9ae82846679a778635c7a5e31e906b9e Mon Sep 17 00:00:00 2001 From: issakomi Date: Mon, 1 Apr 2019 20:03:35 +0200 Subject: [PATCH 3/3] STYLE: spelling, header included twice --- .../Filtering/Path/include/itkContourExtractor2DImageFilter.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h b/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h index 0adcf236f14..3902bb60c7e 100644 --- a/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h +++ b/Modules/Filtering/Path/include/itkContourExtractor2DImageFilter.h @@ -92,6 +92,7 @@ namespace itk * \wikiexample{Segmentation/ContourExtractor2DImageFilter,Extract contours from an image} * \endwiki */ + template< typename TInputImage > class ITK_TEMPLATE_EXPORT ContourExtractor2DImageFilter: public ImageToPathFilter< TInputImage, PolyLineParametricPath< 2 > >