Why is my algorithm (detect corners of checker board) fail?

2 vues (au cours des 30 derniers jours)
Mahdi Noroozi
Mahdi Noroozi le 27 Fév 2019
Commenté : Mahdi Noroozi le 27 Fév 2019
I=checkerboard(80,5,5);
I=I>0.5;
[imagePoints,boardSize] = detectCheckerboardPoints(I);
figure;
subplot(1,2,1);
imshow(I);hold on;
plot(imagePoints,'r+');
title('detectCheckerboardPoints method');
subplot(1,2,2);
plot(imagePoints,'r+');

Réponse acceptée

Matt Gaidica
Matt Gaidica le 27 Fév 2019
Do:
plot(imagePoints(:,1),imagePoints(:,2),'r+');

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB Support Package for USB Webcams dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by