photo

Nitishselvakumar Nadar


Last seen: alrededor de 3 años hace Con actividad desde 2021

Followers: 0   Following: 0

Estadística

  • First Answer

Ver insignias

Feeds

Ver por

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

más de 3 años hace | 0