photo

Rohit Patil


Last seen: environ 4 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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...

environ 4 ans il y a | 0