photo

Yaksha SJ


Last seen: 대략 4년 전 2020년부터 활동

Followers: 0   Following: 0

통계학

  • First Answer

배지 보기

Feeds

보기 기준

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

대략 4년 전 | 2

답변 있음
[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 ...

대략 4년 전 | 1