Skip to content
Snippets Groups Projects
Commit 71402ffc authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

ENH : add comments

parent 533c8a34
No related branches found
No related tags found
No related merge requests found
......@@ -31,8 +31,17 @@ namespace otb
{
/** \class KeyPointDensityImageFilter
* \brief
* \brief This class computes the density of the characteristic
* points detected in the image.
*
* The density computed is a ratio of the number of keypoints over
* the total number of pixels within a region.
*
* This class use the key point detector specified in the 3rd argument
* template to detect the keypoints. Then for every pixel, the density of the key points
* within its neighborhood is computed.
*
* The output is a map of key points density.
*/
template <class TInputImage, class TOutputImage , class TDetector>
......
......@@ -51,7 +51,7 @@ KeyPointDensityImageFilter<TInputImage, TOutputImage, TDetector >
*/
/**
* ThreadedGenerateData Performs the pixel-wise addition
* GenerateData Performs the pixel-wise addition
*/
template <class TInputImage , class TOutputImage, class TDetector>
void
......
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