how divide image to blocks?
이전 댓글 표시
I want to divided image to non-overlapping blocks, then I will appliy DWT on each block
can any one help me with this please
채택된 답변
추가 답변 (1개)
KALYAN ACHARJYA
2019년 3월 9일
편집: madhan ravi
2019년 3월 9일
result=blockproc(image,[m n],fun)
Which processes the image by applying the function fun to each distinct block of size [m n] and concatenating the results into the output result matrix. You have to create the function
Also you can look for sliding window (one by one pixel), check
kernel=create window
result=conv2(image, kernel, 'same');
If it still unclear, let me know?
카테고리
도움말 센터 및 File Exchange에서 Neighborhood and Block Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!