how to divide the RGB color space into 64 cubic blocks ?

2 visualizzazioni (ultimi 30 giorni)
Hello
can any one tell me how to to divide the RGB color space into 64 cubic blocks with four equal partitions along each dimension.
  2 Commenti
John D'Errico
John D'Errico il 27 Dic 2013
Modificato: John D'Errico il 27 Dic 2013
How? You do it. Whats the problem? All that matters is what you will do with it, and only you know that.
SAM
SAM il 28 Dic 2013
Modificato: SAM il 28 Dic 2013
i want to compute color distribution, distinguishing multi-colored images from monochromatic, sepia or simply low contrast images.
and i want to use each cube as a sample point for my further process.

Accedi per commentare.

Risposta accettata

Image Analyst
Image Analyst il 27 Dic 2013
Modificato: Image Analyst il 27 Dic 2013
Like John said, it depends on what you will do with it - how you will use it. If you want to make a histogram, you need to find out what block you're in
for col = 1 : cols
for row = 1 : rows
% Get the RGB values of the image.
rValue = rgbImage(row, col, 1);
gValue = rgbImage(row, col, 2);
bValue = rgbImage(row, col, 3);
% Find out which of the 64 blocks they belong to.
% Block numbers range from 1 to 4.
rBlock = ceil(rValue / 64);
gBlock = ceil(gValue / 64);
bBlock = ceil(bValue / 64);
% Increment the histogram.
rgbHist(rBlock, gBlock, bBlock) = rgbHist(rBlock, gBlock, bBlock) + 1;
end
end
Also see attached file.
  5 Commenti
Image Analyst
Image Analyst il 28 Dic 2013
I don't know what that means exactly, but good luck to you.
SAM
SAM il 29 Dic 2013
Thanks For your Help And Support. i really appreciate your helping Nature Towards the Biginners ...........

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by