photo

Rohit Patil


Last seen: ungefär 4 år ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
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...

ungefär 4 år ago | 0