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