Skip to content
Snippets Groups Projects
Commit 5f83ff72 authored by Julien Michel's avatar Julien Michel
Browse files

DOC: Removing few french comments

parent 67f7b528
No related branches found
No related tags found
No related merge requests found
......@@ -488,7 +488,7 @@ ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
PixelValue lHessianTrace2 = (dxx + dyy) * (dxx + dyy);
PixelValue lHessianDet = dxx * dyy - dxy * dxy;
// DoG threshold : si l'extrema detect n'est pas assez marqu, il est ignor
// DoG threshold : ignore detected extrema if is not sufficiently noticeable
accepted = fabs(lDoHInterpolated) > fabs(det * m_DoHThreshold);
if (!accepted)
......@@ -578,12 +578,12 @@ ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
i += pas;
}
//Find Orientation
//Find Orientation
double indice = 0;
double max = 0;
double length = 0;
//Detection de l'orientation du point courant
// Detecting current point orientation
for (int i = 0; i < NbBins * 2; i = i + 2)
{
length = vcl_sqrt(tab[i] * tab[i] + tab[i + 1] * tab[i + 1]);
......
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