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 CenterFile Exchange에서 MATLAB 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