Skip to content
Snippets Groups Projects
Commit 0a40ccfd authored by Jordi Inglada's avatar Jordi Inglada
Browse files

DOC: formatting for SURF example

parent a41cc494
No related branches found
No related tags found
No related merge requests found
......@@ -23,11 +23,12 @@ PURPOSE. See the above copyright notices for more information.
// Software Guide : BeginLatex
//
// This example illustrates the use of the \doxygen{otb}{ImageToSURFKeyPointSetFilter}.
// The Speed-Up Robust Features (or SURF) is an algorithm in
// computer vision to detect and describe local features in
// images. The algorithm is detailed in \cite{SURF}. The applications
// of SURF are the same as those for SIFT.
// This example illustrates the use of the
// \doxygen{otb}{ImageToSURFKeyPointSetFilter}. The Speed-Up Robust
// Features (or SURF) is an algorithm in computer vision to detect and
// describe local features in images. The algorithm is detailed in
// \cite{SURF}. The applications of SURF are the same as those for
// SIFT.
//
// The first step required to use this filter is to include its header file.
//
......@@ -164,7 +165,7 @@ int main(int argc, char * argv[])
// Software Guide : BeginLatex
//
// We set the regions of the image by copying the information from the
// input image and we allocate the memeory for the output image.
// input image and we allocate the memory for the output image.
//
// Software Guide : EndLatex
......@@ -258,7 +259,8 @@ int main(int argc, char * argv[])
ImageType::SpacingType spacing = reader->GetOutput()->GetSpacing();
ImageType::PointType origin = reader->GetOutput()->GetOrigin();
OutputImageType::SizeType size = outputImage->GetLargestPossibleRegion().GetSize();
OutputImageType::SizeType size =
outputImage->GetLargestPossibleRegion().GetSize();
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment