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

2 ビュー (過去 30 日間)
Mahdi Noroozi
Mahdi Noroozi 2019 年 2 月 27 日
コメント済み: Mahdi Noroozi 2019 年 2 月 27 日
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+');

採用された回答

Matt Gaidica
Matt Gaidica 2019 年 2 月 27 日
Do:
plot(imagePoints(:,1),imagePoints(:,2),'r+');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB Support Package for USB Webcams についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by