photo

Yaksha SJ


Last seen: plus de 4 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
How can blur an image
function out = blur(img,w) % convert to double for doing calculations imgD = double(img); [row, col] = size(img);...

presque 5 ans il y a | 2

Réponse apportée
[Assignment]Write a function called saddle that finds saddle points in the input matrix M.
function s = saddle(M) [r, c] = size(M); % Initialize the saddle points to an empty array s = []; % Check the dimensions to ...

presque 5 ans il y a | 1