1 | initial version |
so, problem solved !
the sum Mat in bif.cpp:204 should be accessed like sum.at<double>(y1,x1)
, not float.
now, just wait for pr getting merged, or, if you're in a hurry:
git checkout -b fix_bif
(to avoid merge conflicts later)git commit -m fixit
once the pr is in,
git checkout master
git pull upstream master
2 | No.2 Revision |
so, problem solved !
the sum Mat in bif.cpp:204 should be accessed like sum.at<double>(y1,x1)
, not float.
now, just wait for pr getting merged, or, if you're in a hurry:
git checkout -b fix_bif
so: git commit -m fixit
once the pr is in,
git checkout master
git pull upstream master
and
rebuild (cmake, make make install)3 | No.3 Revision |
so, problem solved ! (laughing too early here ..)
the sum Mat in bif.cpp:204 should be accessed like sum.at<double>(y1,x1)
, not float.
so: get updates with: git pull upstream master
and rebuild (cmake, make make install)