How can I reduce false positives when using the "readAprilTag" function?
13 views (last 30 days)
Show older comments
MathWorks Support Team
on 30 May 2023
Answered: MathWorks Support Team
on 5 Jun 2023
I have an image that contains an AprilTag. When I use the "readAprilTag" function, MATLAB correctly identifies the AprilTag, but also picks up an extraneous AprilTag in the background of the image.
How can I reduce the number of false positives that the "readAprilTag" function returns?
Accepted Answer
MathWorks Support Team
on 30 May 2023
The easiest way to assist in accurate AprilTag detection is to increase the contrast or brightness of the image. Please refer to the following example, where "I" refers to the image:
I = I + 70; % Increases the contrast of the image
I = imadjust(I, [], [], 0.2); % Increases the brightness of the image
Alternatively, try measuring the area of the AprilTag using the returned "loc" data. False positive AprilTags will most likely have different size from true positive AprilTags. That may allow for easy filtering.
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!