Statistics
4 Questions
0 Answers
RANK
110,009
of 295,467
REPUTATION
0
CONTRIBUTIONS
4 Questions
0 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
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
Question
code is supposed to take the input image, extract the objects, then overlap circle masks of decreasing radius (r=64,.....1) on each object. A histogram of the no. of white pixels that coincide with the circle mask should be plotted. How do I proceed?
A=imread('search.jpg'); figure,imshow(A); title('Original Image'); %Convert the Image to binary B=im2bw(A); ...
6 years ago | 0 answers | 0
0
answersQuestion
This code isn't working. How do I change the datatype of the image B such that it is also 128*128, the error is :
Error using .* Matrix dimensions must agree. Error in fy (line 33) circle_image = double(B).* circleMat; A=imr...
6 years ago | 1 answer | 0
1
answerQuestion
How do I access the output images from this program.
A=imread('search.jpg'); figure,imshow(A); title('Original Image'); %Convert the Image to binary B=im2bw(A); %...
6 years ago | 1 answer | 0
1
answerQuestion
How to extract and display the white parts of a binary image (attached)
I want the algoirthm to display each of the N's (in this case) as a separate figure
6 years ago | 1 answer | 0