Display the image X using its associated colormap, map, which has 220 colors.
figure
image(X)
colormap(map)
axis off
Make a movie that shows the effect of reducing the number of colors of the image. There will be eight movie frames in total. Preallocate an array of structures to store the movie frames.
F(8) = struct('cdata',[],'colormap',[]);
In a loop, reduce the number of colors in the indexed image by using the imapprox function. Use the im2frame function to convert the images into frames of a movie. The first frame is the original image with all 220 colors. The second frame has 128 colors. Each successive frame has half the number of colors. The last frame has the minimum number of colors, 2.
for j = 1:8
q = 2^(9-j);
[Y,newmap] = imapprox(X,map,q,'nodither');
F(j) = im2frame(Y,newmap);
end
To play the movie twice with a frame rate of three frames per second, use movie(F,2,3).
Truecolor image, specified as an
m-by-n-by-3 numeric array. If you
specify an image of data type double, then values must be
in the range [0, 1].
Data Types: double | uint8
Indexed image, specified as an
m-by-n matrix of integers.
Data Types: double | uint8
Colormap associated with indexed image X, specified
as a c-by-3 numeric matrix with values in the range [0,
1]. Each row of map is a three-element RGB triplet that
specifies the red, green, and blue components of a single color of the
colormap.
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window.
Web browsers do not support MATLAB commands.
Seleziona un sito web
Seleziona un sito web per visualizzare contenuto tradotto dove disponibile e vedere eventi e offerte locali. In base alla tua area geografica, ti consigliamo di selezionare: .
Puoi anche selezionare un sito web dal seguente elenco:
Come ottenere le migliori prestazioni del sito
Per ottenere le migliori prestazioni del sito, seleziona il sito cinese (in cinese o in inglese). I siti MathWorks per gli altri paesi non sono ottimizzati per essere visitati dalla tua area geografica.