mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +08:00
Fix arguments list in loadindex for histogram intersection
This commit is contained in:
parent
a84afb6334
commit
6a045fd678
@ -801,7 +801,7 @@ bool Index::load(InputArray _data, const String& filename)
|
||||
loadIndex< ::cvflann::MaxDistance<float> >(this, index, data, fin);
|
||||
break;
|
||||
case FLANN_DIST_HIST_INTERSECT:
|
||||
loadIndex< ::cvflann::HistIntersectionDistance<float> >(index, data, fin);
|
||||
loadIndex< ::cvflann::HistIntersectionDistance<float> >(this, index, data, fin);
|
||||
break;
|
||||
case FLANN_DIST_HELLINGER:
|
||||
loadIndex< ::cvflann::HellingerDistance<float> >(this, index, data, fin);
|
||||
|
Loading…
Reference in New Issue
Block a user