how to convert a tif image to a m-by-n-by-3 array
19 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi. How can I a convert a tif image to a m-by-n-by-3 array? I am trying to use the code of boxcount but I am having problems because my image is in the format, being that the code is for m-by-n or m-by-n-by-3 array.
8 Kommentare
Walter Roberson
am 22 Jul. 2022
A = imread('B2.tif');
RGB = repmat(A, 1, 1, 3);
imshow(RGB)
Antworten (1)
Chunru
am 22 Jul. 2022
[a, cmap] = imread("corn.tif");
subplot(121); imshow(a, cmap);
b = ind2rgb(a, cmap);
subplot(122); imshow(b);
whos b
3 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!