-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have some questions about em1 and em2. #5
Comments
ef.templated_decimated is a boolean to indicated whether the template has undergone sphere decimation. Do you mean ef.prev_shifted_points? In that case, there is the option to use this as the template for em1 to simplify the flow estimation step. I'm not sure what you mean by the second question, but the transformation is defined as x' = A*(x-xdot * dt), so the points are time shifted, and then the affine transformation is applied. |
Thank you Alex, |
Hmm I think you're right... I think the best way would be to replace feature_pos with feature_pos_out there. Have you tested this locally, does the tracking still work? I'm out of the office for the week so will have to check next week. |
Thank you for your help. Yes, I replace feature_pos with feature_pos_out, the tracking still works.But by observing the results, I don't know the tracking accuracy is improving or not. |
My first confuse is:
This system defines two templates 'ef.prev_shifted_weights' and 'ef.template_decimated'? Can em1 use 'ef.template_decimated' as a template?
My second confuse is:
In the em2_affine.m,Line 230:
time_shifted_points = bsxfun(@minus, events(1:2, :), ...
feature_pos + flow * dt) + ...
bsxfun(@times, flow, (events(3, end) - events(3, :)));
In order to calculate 'time_shifted_points', Can this use the new feature point position and the new optical flow after the affine warping?
The text was updated successfully, but these errors were encountered: