フィルターのクリア

please help me in dividing the color image into blocks and then finding mean color of each block seperately in matlab???

1 回表示 (過去 30 日間)
My project is based on image inpainting..................I have to divide the whole image into image block and then have to calculate mean color of image block ............. please help

回答 (1 件)

Image Analyst
Image Analyst 2013 年 1 月 27 日
See my code for dividing an image into blocks or tiles: http://www.mathworks.com/matlabcentral/answers/58545#answer_70831
Then to get the mean color of each block:
meanRed = mean2(rgbBlock(:,:,1));
meanGreen = mean2(rgbBlock(:,:,2));
meanBlue = mean2(rgbBlock(:,:,3));
  1 件のコメント
Image Analyst
Image Analyst 2013 年 1 月 28 日
In that other post you said it helped you, so go ahead and mark this post as "Accepted".

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeComputer Vision with Simulink についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by