Ask Your Question

uadhikari's profile - activity

2015-07-25 16:46:40 -0600 received badge  Student (source)
2015-07-25 13:07:35 -0600 asked a question Potential bug in Shape Context

File: https://github.com/Itseez/opencv/blob...

Line: 235

In function computeDistance(InputArray contour1, InputArray contour2) the following line seems to be a potential bug. The computation of shape context descriptor of the first shape is fine since it uses its own mean distance for distance noramlisation. However, the second shape is using he mean distance of first shape. The two shapes can be different in the scales so they should use their own mean distance to normalise themselves.

set2SCE.extractSCD(set2, set2SCD, inliers2, set1SCE.getMeanDistance());