photo

Ali nafaa


Last seen: plus d'un an il y a Actif depuis 2022

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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 ...

plus d'un an il y a | 0

Réponse apportée
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 ...

plus d'un an il y a | 0

Réponse apportée
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 ...

plus d'un an il y a | 0