photo

Rohit Patil


Last seen: 4 years 前 自 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 years 前 | 0