How do I scale coordinates for different image sizes?
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a set of [x,y] coordinates on a 900x600 image. How do I calculate the values of the coordinates on the same image but 500x500 in size?
0 Commenti
Risposte (1)
Ameer Hamza
il 27 Giu 2018
You can use interp1() to linearly map the coordinates from old image size to new image size.
x_new = interp1([1 900], [1 500], x_old);
y_new = interp1([1 600], [1 500], y_old);
0 Commenti
Vedere anche
Categorie
Scopri di più su Geometric Transformation and Image Registration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!