code for sampling an image to form patches
조회 수: 12 (최근 30일)
이전 댓글 표시
If any one knows the code for sampling an image to make the larg image into small sections then please share it with me.
댓글 수: 0
채택된 답변
Walter Roberson
2013년 12월 31일
patch_cell = mat2cell( 8*ones(1,size(IMAGE,1)/8), 8*ones(1,size(IMAGE,2)/8), size(IMAGE,3) );
for 8 x 8 patches.
Then patch_cell{5,19} would be the 5th row of patches, 19th patch over.
댓글 수: 2
Walter Roberson
2013년 12월 31일
This code does exactly that, using 8 x 8 pixel subdivisions of the image array named IMAGE. If you want to use a different size such as 64 x 64, replace the 8's by 64's.
추가 답변 (1개)
참고 항목
카테고리
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!