photo

Yaksha SJ


Last seen: circa 4 anni fa Attivo dal 2020

Followers: 0   Following: 0

Statistica

  • First Answer

Visualizza badge

Feeds

Visto da

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

circa 4 anni fa | 2

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

circa 4 anni fa | 1