Gradient of Image using window size
조회 수: 1 (최근 30일)
이전 댓글 표시
I am new to MATLAB and trying to calculate the magnitude of the gradient using a specified window size but I receive the error: Attempted to access img(0,5); index must be a positive integer or logical. I am not sure how to solve this. Does anyone have any suggestions?
img = imread('image.png');
img = im2double(img);
[row, col] = size(img);
windowSize = 5;
for x = 1:row
for y = 1:col
if (x >= windowSize && x < row - windowSize && y >= windowSize && y < col - windowSize)
gradient(x,y) = abs(img(x+windowSize,y) - img(x-windowSize,y)) + abs(img(x,y+windowSize) -img(x,y-windowSize));
else
gradient(x,y) = 0;
end end end
댓글 수: 0
답변 (1개)
Image Analyst
2015년 5월 1일
Just use imgradient(img). Why go to all the trouble of doing it yourself when there's a built-in function that does it for you?
댓글 수: 0
참고 항목
카테고리
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!