![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/28489877_1669747526919_DEF.jpg)
Ali nafaa
Followers: 0 Following: 0
Statistics
0 Questions
3 Answers
RANK
126 259
of 297 016
REPUTATION
0
CONTRIBUTIONS
0 Questions
3 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20 419
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 157 725
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
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 ...
ungefär 2 år ago | 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 ...
ungefär 2 år ago | 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 ...
ungefär 2 år ago | 0