i have an RGB image and i would like to convert it into numerical data
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ahmed Abdulla
am 13 Jun. 2019
Beantwortet: Theron FARRELL
am 13 Jun. 2019
the image below uses an RGB scale to show the magnetic field strength at each point on the map. I've been struggling to find a way to convert this image into an array that shows the x and y coordinates of the pixel along with the magnetic field value at each coordinate using MATLAB
0 Kommentare
Akzeptierte Antwort
Theron FARRELL
am 13 Jun. 2019
I suppose you know how to read an image
% I will be a numerical array, then
I = imread(...)
% Then you may use
% k is ones of channels
surf(I(:, :, k));
mesh(I(:, :, k));
% If you want to examine each pixel precisely, you may use
imtool(I)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!