Rohit Patil
Followers: 0 Following: 0
Feeds
已回答
Write a function called blur that blurs the input image. The function is to be called like this:
function output = blur(img,w) blurimg=img; B=blurimg; [row col] = size(B); k=2*w+1; for r=2:row-k for c=2:col-k MeanPixel...
Write a function called blur that blurs the input image. The function is to be called like this:
function output = blur(img,w) blurimg=img; B=blurimg; [row col] = size(B); k=2*w+1; for r=2:row-k for c=2:col-k MeanPixel...
4 years 前 | 0