How I can divide a color image in to blocks and access the RGB of each individual block?

1 Ansicht (letzte 30 Tage)
I have tried using blockproc(), but could not get it.

Antworten (2)

Image Analyst
Image Analyst am 7 Jun. 2013
  3 Kommentare
syed musa
syed musa am 11 Jun. 2013
Sir, Could you help me in extracting the shape of a object in color image
Image Analyst
Image Analyst am 11 Jun. 2013
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
% Threshold
redBlobs = redChannel > 200 & greenChannel < 40 & blueChannel < 70; % or whatever.
labeledImage = bwlabel(redBlobs);
measurements = regionprops(labeledImage, 'all');
allAreas = [measurements.Area];
allPerimeters = [measurements.Perimeter];
allECD = [measurements.EquivDiameter];
allCircularities = allPerimeters.^2 ./ (4 * pi * allAreas);

Melden Sie sich an, um zu kommentieren.


yagnesh
yagnesh am 11 Jun. 2013
y=imread('colorimage.jpg');
R=y(:,:,1);
G=y(:,:,2);
B=y(:,:,3);
in this way you can saperate

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by