-
-
Notifications
You must be signed in to change notification settings - Fork 256
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
Questions about homography #144
Comments
Plane constraints are good approximations, which do well in most scenarios except when there is parallax. Is your camera moving? If not just disable camera motion estimation. |
Question1: Question2:
[Update] One solution for Question2: |
Q1: Since you have an indoor scene and targets are close, I suggest you disable camera motion compensation #95 and rely on feature matching. You can lower motion_weight and set detector_frame_skip to 1. If you know both camera extrinsics and intrinsics at each frame, and the 3D coordinates from depth map, you can sample a few 3D points in the bounding box and project them to the two frames to calculate homography for each track. But this is way more complicated. Q2: I can't access your output link. You are not supposed to move these lines. |
Since moving those two lines is not correct solution, output link is not important anymore. Can u access my input link? |
I still can’t. You need to change access to public.
…On Mon, Jul 5, 2021 at 6:37 PM Ann ***@***.***> wrote:
Since move those two lines is not correct solution, output link is not
important anymore.
Can u access my input link?
https://drive.google.com/file/d/1kxSSk3TRDysV2lXzytBulqKlPSna5_CK/view?usp=sharing
In the end of this video, target is not close. But it won’t continue to
tracking, and output “camera motion estimation failed”.
Can u reproduce this problem? Could u please tell me how to solve it
correctly?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#144 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGNJO5TLL56ODHIVRVYBA4TTWJM7FANCNFSM472HRQEQ>
.
|
It gets keypoints from |
BTW, I meet duplicate bboxes, and id switch. So i change these params for close target tracking:
I get better results (less duplicate bboxes, and less id switch) Will there be any hidden problems after adjusting these parameters? For example, tracking will fail when there are many people, people are close, etc. |
I believe these will result in more switches for crowded small targets. But the parameter changes should be good for large fast moving objects, which seems to be your case. |
Thank you for your prompt communication. All my problems have been resolved, and this issue can be closed. |
@sunniee is your close target tracking working? |
Hi, Thanks for your amazing job. I have two questions about homography.
Plane constraints
Homography needs to meet the plane constraints, or suppose the camera only rotates. Why can the background with the foreground removed can meet the requirements.
Close target tracking
In the scene I am dealing with, the target will be very close (0.5m). In this case, the background cannot be seen, so the homography cannot be calculated.
But I have a depth map and camera pose(rpy,xyz) . Can I use these informations to calculate homography? If the homography obtained in this way can be used to achieve good results for close target tracking task?
The text was updated successfully, but these errors were encountered: