You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However isA may be empty (it was in my case) which results in convTri not called at all. However the matlab code always applies convTri to all channels. So the convTri needs to be outside of the parallel_for call, maybe in it's own.
The text was updated successfully, but these errors were encountered:
* issue described here #69 : convTri was skipped in cases where `isA` is empty
* use standard c++11 style opencv cv::parallel_for_ on lambdas
* use a random scale scheduler (should be better than uniform slices)
I'll make an issue to add some kind of pixel level pyramid tests in place for c++ vs matlab. I think we can store ACF output from matlab, possibly in *.mat format, and load it via cvmatio for comparisons.
* run convTri on all scales/types in all cases
* issue described here #69 : convTri was skipped in cases where `isA` is empty
* use standard c++11 style opencv cv::parallel_for_ on lambdas
* use a random scale scheduler (should be better than uniform slices)
* bump version
* bump patch version : v0.1.10
* relocate create_random_indices (move out of public header)
This is the matlab variant:
and this is yours:
However
isA
may be empty (it was in my case) which results inconvTri
not called at all. However the matlab code always appliesconvTri
to all channels. So theconvTri
needs to be outside of theparallel_for
call, maybe in it's own.The text was updated successfully, but these errors were encountered: