photo

Ali nafaa


Last seen: 1年以上 前 2022 年からアクティブ

Followers: 0   Following: 0

統計

  • First Answer

バッジを表示

Feeds

表示方法

回答済み
How can I convert grayscale image to a binary image without using a toolbox function?
x = imread('cameraman.tif'); figure,imshow(x); [r,c] = size (x); output=zeros(r,c); for i = 1 : r for j = 1 : c ...

1年以上 前 | 0

回答済み
How can i use threshold to convert a gray-scaled image into binary image ?
x = imread('cameraman.tif'); figure,imshow(x); [r,c] = size (x); output=zeros(r,c); for i = 1 : r for j = 1 : c ...

1年以上 前 | 0

回答済み
how to convert a grayscale image to binary sequence
x = imread('cameraman.tif'); figure,imshow(x); [r,c] = size (x); output=zeros(r,c); for i = 1 : r for j = 1 : c ...

1年以上 前 | 0