extending the line/curve in image and get the coordinate
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
prashant singh
le 12 Oct 2017
Réponse apportée : Image Analyst
le 12 Oct 2017
I have an image and I have fitted curve/line through a set of points.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168158/image.jpeg)
I want to extend the curve/line down in the image and get the coordinates through which the line passes, as show below in blue
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168160/image.jpeg)
0 commentaires
Réponse acceptée
Image Analyst
le 12 Oct 2017
Fit a line with polyfit(), then extrapolate with polyval():
% Sort in order of increasing y
[sortedY, sortOrder] = sort(y);
% Sort x the same way:
sortedX = x(sortOrder);
% Fit a line through existing training points.
coefficients = polyfit(sortedY, sortedX, 1); % Note: I swapped x and y intentionally!
% Define y for what we want
fittedY = 1 : rows;
% Get fit and extrapolated values.
fittedX = polyval(coefficients, fittedY);
hold on;
plot(fittedX, fittedY, 'c-', 'LineWidth', 2);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Descriptive Statistics dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!