I'm looking for documentation on the chamferMatching method from the OpenCV 2.4 C++. The OpenCV implementation given in /OpenCV-2.4.0/samples/cpp/chamfer.cpp which only uses the first four parameters. There are a total of 14 parameters which can be set which include:
Parameters:
img (Cv::Mat)
templ (Cv::Mat)
results (Std::Vector::Std_Vector_Cv_Point)
cost (Std::Vector::Float)
templ_scale (Double) (defaults to: 1)
max_matches (Fixnum) (defaults to: 20)
min_match_distance (Double) (defaults to: 1.0)
pad_x (Fixnum) (defaults to: 3)
pad_y (Fixnum) (defaults to: 3)
scales (Fixnum) (defaults to: 5)
min_scale (Double) (defaults to: 0.6)
max_scale (Double) (defaults to: 1.6)
orientation_weight (Double) (defaults to: 0.5)
truncate (Double) (defaults to: 20)
If anyone can point me out to an example or documentation which explains each of these parameters it would be highly appreciated.