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

2 visualizaciones (últimos 30 días)
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+');

Respuesta aceptada

Matt Gaidica
Matt Gaidica el 27 de Feb. de 2019
Do:
plot(imagePoints(:,1),imagePoints(:,2),'r+');

Más respuestas (0)

Categorías

Más información sobre MATLAB Support Package for USB Webcams en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by