-
Notifications
You must be signed in to change notification settings - Fork 540
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
Some questions about reliability of identification #235
Comments
Would you have a chance to add diffuse lights/LEDs to the bottom of the copter? Or add multiple tags next to each other? Or add a circle in a thicker line around it then you can switch the algorithm from Apriltag-detection to tracking the circle's center. |
Do you mean you get issues when the shadow covers the white blocks? If the contrast between the dark and light areas of the tag (you can use different colours, it's just about the edges) is too low, the edge detector will have issues. You can try to play around with the exposure value or manually threshold the image into dark and light areas and feed this image to the AprilTag detector. |
Very late to the party, but way back when I was doing a similar project; landing a quadcopter onto an AprilTag in outdoors. We basically used the "illumination invariant transform" proposed by Will Maddern: Source:
Link: https://www.robots.ox.ac.uk/~mobile/Papers/2014ICRA_maddern.pdf The only requirement is the camera has to be RGB, and by manipulating the RGB channels via the transform you can form a 1 channel illumination invariant image. The result is if you print a color AprilTag you can mitigate the affects of shadows outdoors like so: https://www.youtube.com/watch?v=CgcqxZ-QGTc Page 33 (Landing Target Detection): https://uwspace.uwaterloo.ca/bitstream/handle/10012/14192/Choi_Christopher.pdf?sequence=3&isAllowed=y |
Im working on a project that landing a copter on the apriltags ,here comes some diffculties,the first is that when the copter is very close to the apriltag, I found that the shadow of copter covered some black blocks of tag, and I can't get good identification result.How can I do to deal with shadows to get better reliability of identification?
The text was updated successfully, but these errors were encountered: