From 86cb6a56b5025962df225b54e5ca675824e39fa4 Mon Sep 17 00:00:00 2001 From: Emmanuel Christophe <emmanuel.christophe@orfeo-toolbox.org> Date: Thu, 15 Jan 2009 11:15:53 +0800 Subject: [PATCH] DOC: add doxygen description --- .../otbSiftFastImageFilter.h | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Code/FeatureExtraction/otbSiftFastImageFilter.h b/Code/FeatureExtraction/otbSiftFastImageFilter.h index 451155c0a1..80b52cd359 100755 --- a/Code/FeatureExtraction/otbSiftFastImageFilter.h +++ b/Code/FeatureExtraction/otbSiftFastImageFilter.h @@ -10,8 +10,8 @@ Copyright (c) Centre National d'Etudes Spatiales. All rights reserved. See OTBCopyright.txt for details. -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +This software is distributed WITHOUT ANY WARRANTY; without even +the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ @@ -27,7 +27,7 @@ namespace otb /** \class SiftFastImageFilter - * \brief + * \brief Generate the SIFT points of interest from an image * */ template <class TInputImage, class TOutputPointSet> @@ -40,13 +40,13 @@ namespace otb typedef ImageToPointSetFilter<TInputImage,TOutputPointSet> Superclass; typedef itk::SmartPointer<Self> Pointer; typedef itk::SmartPointer<const Self> ConstPointer; - + /** Creation through object factory macro */ - itkNewMacro(Self); + itkNewMacro(Self); /** Type macro */ itkTypeMacro(SiftFastImageFilter,ImageToPointSetFilter); - + /** Template parameters typedefs */ typedef TInputImage InputImageType; typedef typename TInputImage::Pointer InputImagePointerType; @@ -57,9 +57,9 @@ namespace otb typedef typename TOutputPointSet::PixelType OutputPixelType; typedef typename TOutputPointSet::PointType OutputPointType; typedef typename TOutputPointSet::PointIdentifier OutputPointIdentifierType; - + typedef otb::Image<float,2> FloatImageType; - + // Used to rescale data in the [0,1] range typedef itk::RescaleIntensityImageFilter<InputImageType,FloatImageType> RescalerType; @@ -69,13 +69,13 @@ namespace otb protected: /** Actually process the input */ virtual void GenerateData(); - + /** Constructor */ SiftFastImageFilter(); - + /** Destructor */ virtual ~SiftFastImageFilter() {} - + /** PrintSelf method */ virtual void PrintSelf(std::ostream& os, itk::Indent indent) const; -- GitLab