photo

Rohit Patil


Last seen: 約4年 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

  • First Answer

バッジを表示

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

約4年 前 | 0