Converting from volume (or image) to meshgrid
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Burke Rosen
il 28 Apr 2017
Risposto: Prannay Jain
il 1 Mag 2017
How does one convert a gray-scale volume into meshgrid format?
0 Commenti
Risposta accettata
Prannay Jain
il 1 Mag 2017
>> A=imread('grayimage.jpeg');
>> [X,Y]=meshgrid(1:size(A,1), 1:size(A,2));
You can also refer to this link, https://www.mathworks.com/matlabcentral/answers/79590-how-to-convert-an-image-to-the-cartesian-x-y-coordinates
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Convert Image Type in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!