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
num_features is implicitly coerced into a boolean; the one which determines if griding is performed with multiple threads. Is this a mistake or is it intentional?
The text was updated successfully, but these errors were encountered:
// NOTE: if we multi-thread this atomic can cause some randomness due to multiple thread detecting features
// NOTE: this is due to the fact that we select update features based on feat id
// NOTE: thus the order will matter since we try to select oldest (smallest id) to update with
// NOTE: not sure how to remove... maybe a better way?
At
ov_core/src/track/TrackKLT.cpp:532
, you call:where
num_features
is anint
.But
Grider_FAST::perform_griding
is defined atov_core/src/track/Grider_FAST.h:L94
as:num_features
is implicitly coerced into a boolean; the one which determines if griding is performed with multiple threads. Is this a mistake or is it intentional?The text was updated successfully, but these errors were encountered: