How to divide images into square grid in matlab?
조회 수: 3 (최근 30일)
이전 댓글 표시
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
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
2013년 8월 19일
Perhaps this is covered by the FAQ: http://matlab.wikia.com/wiki/FAQ#How_do_I_split_an_image_into_non-overlapping_blocks.3F
댓글 수: 0
추가 답변 (1개)
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!