필터 지우기
필터 지우기

Replacing vision.Geo​metericTra​nsformEsti​mator call

조회 수: 2 (최근 30일)
Zhiren
Zhiren 2023년 4월 22일
답변: Qu Cao 2023년 4월 24일
I am trying to use an open-source code that was developed in 2013. (https://github.com/prclibo/calibration-toolbox/blob/master/scripts/CameraCalibrationBase.m)
Unfortunately, it uses vision.GeometricTransformEstimator, which I understand is no longer included in MATLAB. (https://www.mathworks.com/matlabcentral/answers/521519-what-function-replaced-vision-geometrictransformestimator)
For the specific case here, what is a good way to replace the following lines of code? (Line 151 of the code shared on Github)
estimator = vision.GeometricTransformEstimator;
estimator.Transform = 'projective';
estimator.AlgebraicDistanceThreshold = obj.maxInlierError;
[~, inliersMaskH] = estimator.step(patternPoints, photoPoints);
It seems that the purpose of the GeometricTransformEstimator is to obtain inliersMaskH according to some projective transform. What is the recommended way to do this nowadays?
Thank you for the feedback!!

답변 (1개)

Qu Cao
Qu Cao 2023년 4월 24일
https://www.mathworks.com/matlabcentral/answers/521519-what-function-replaced-vision-geometrictransformestimator

카테고리

Help CenterFile Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by