photo

Nitishselvakumar Nadar


Last seen: circa 3 anni fa Attivo dal 2021

Followers: 0   Following: 0

Statistica

  • First Answer

Visualizza badge

Feeds

Visto da

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

oltre 3 anni fa | 0