photo

Ali nafaa


Last seen: 1 year 前 自 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 year 前 | 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 year 前 | 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 year 前 | 0