Community Profile

photo

Ali nafaa


Last seen: mer än ett år ago Active since 2022

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
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 ...

mer än ett år ago | 0

Answered
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 ...

mer än ett år ago | 0

Answered
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 ...

mer än ett år ago | 0