photo

Nitishselvakumar Nadar


Last seen: 3 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer

查看徽章

Feeds

排序方式:

已回答
How to implement a function to apply the 3x3 average filter to a gray-scale image.
img = imread("Tulip.jpg"); [row ,col] = size(img); for i = 2:1:row-1 for j = 2:1:col-1 x= img(i+1:i-1,j+1:...

3 years 前 | 0