(SORRY, intended to add this note at bottom:

Here’s the Matlab code for you under-the-hood-types:

%% Reads in a TIFF Image and makes a SORTED RGB Image
% BLACK = 0, WHITE = 16,777,215
clear
format compact
itif = imread('Matisse09r.tif');
info = imfinfo('Matisse09r.tif');
ixxx = info.Height;
iyyy = info.Width;
itf1 = reshape(itif, 1, ixxx*iyyy, 3);
itfa = [num2str(dec2hex(uint32(itf1(:,:,1))*65536 + uint32(itf1(:,:,2))*256 + uint32(itf1(:,:,3))))];
itfa = sort(itfa);
iixy = ixxx * iyyy;
itfc(:, 1) = uint8(hex2dec(itfa(:, 1:2)));
itfc(:, 2) = uint8(hex2dec(itfa(:, 3:4)));
itfc(:, 3) = uint8(hex2dec(itfa(:, 5:6)));
itfx = reshape(itfc, ixxx, iyyy, 3);
imshow(itfx);
imwrite(itfx, 'MP MATLAB01 2005.tif', 'tif');

)


On May 28, 2005, at 10:39 AM, mwp wrote:

Six studies after Matisse 2005
mwp

[classic Matisse images RGB-sorted]

http://kunst.no/alias/HJEMMESIDE/bjornmag/mpphp2004/MATISSE2005/ M01r.jpg http://kunst.no/alias/HJEMMESIDE/bjornmag/mpphp2004/MATISSE2005/ M04r.jpg http://kunst.no/alias/HJEMMESIDE/bjornmag/mpphp2004/MATISSE2005/ M06r.jpg http://kunst.no/alias/HJEMMESIDE/bjornmag/mpphp2004/MATISSE2005/ M07r.jpg http://kunst.no/alias/HJEMMESIDE/bjornmag/mpphp2004/MATISSE2005/ M08r.jpg http://kunst.no/alias/HJEMMESIDE/bjornmag/mpphp2004/MATISSE2005/ M09r.jpg


-

Reply via email to