Cannot detect dots in calibration image with detectCircleGridPoints
Show older comments
Hi all,
I'm trying to calibrate my camera based on a dotted pattern on a board. I see I can use the detectCircleGridPoints algorithm, but cannot get it to detect any of the points and get imagePoints = []. Below my code.
What am I doing wrong?
Best,
clc; clear all; close all;
fileName = 'dotted_cali_fig.tiff'; %to attach the file I had to put it in .png
img = imread(fileName);
patternDims = [7 35];
imagePoints = detectCircleGridPoints(img,patternDims,PatternType="symmetric")
Accepted Answer
More Answers (0)
Categories
Find more on Camera Calibration in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!