How to divide images into square grid in matlab?

10 ビュー (過去 30 日間)
vina borkar
vina borkar 2013 年 8 月 16 日
コメント済み: Image Analyst 2018 年 6 月 22 日
Color images divide in sub parts individual but looking like single image to users. it will possible in matlab?
Basically the image is divided into parts called grids, and each grid will working individual, is this possible?
  1 件のコメント
Amith Kamath
Amith Kamath 2013 年 8 月 19 日
I'm sorry but I would re-phrase this question so that it is clearer for interested folk to try to answer. Could you please make the question clearer? It usually helps if you also show what you've tried until now.

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

採用された回答

Image Analyst
Image Analyst 2013 年 8 月 19 日

その他の回答 (1 件)

Ahmet TAvli
Ahmet TAvli 2018 年 4 月 25 日
The question is clear.
Assume, you have your image is 192 x 168 pixels.
You want to divide into 6 equal regions.
An example below:
I = imread('exampleImage.png');
R1 = I(1:64, 1:84);
R2 = I(1:64, 85:168);
R3 = I(65:128, 1:84);
R4 = I(65:128, 85:168);
R5 = I(129:192, 1:84);
R6 = I(129:192, 85:168);
  2 件のコメント
drummer
drummer 2018 年 6 月 22 日
Ahmet, how would the image divided into 6 equal regions be shown?
Image Analyst
Image Analyst 2018 年 6 月 22 日
You would use imshow():
imshow(R1);

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

Community Treasure Hunt

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

Start Hunting!

Translated by