Я попытался использовать системный объект, чтобы найти матрицу преобразования, соответствующую парам точек сопоставления, с использованием алгоритма RANSAC, и отсутствует ошибка «Точка входа в файл Mex отсутствует. Проверьте правильность написания (с учетом регистра)mexFunction "было показано.что мне делать?Вот код:
geoTransformEst = vision.GeometricTransformEstimator; % defaults to RANSAC
% Configure the System object.
geoTransformEst.Transform = 'Nonreflective similarity';
geoTransformEst.NumRandomSamplingsMethod = 'Desired confidence';
geoTransformEst.MaximumRandomSamples = 1000;
geoTransformEst.DesiredConfidence = 99.8;
% Invoke the step() method on the geoTransformEst object to compute the
% transformation from the distorted to the original image. You
% may see varying results of the transformation matrix computation because
% of the random sampling employed by the RANSAC algorithm.
[tform_matrix inlierIdx] = step(geoTransformEst, matchedDistorted.Location, ...
matchedOriginal.Location);
Я использую MATLAB R2013a на 32-битной Windows.