Statistics
2 Questions
0 Answers
RANK
227,599
of 301,432
REPUTATION
0
CONTRIBUTIONS
2 Questions
0 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 21,280
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,555
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
i have a rgb image,i have splitted that image into 3 different planes and got single dimensional array.now i want to apply algorithm steps and also the values which are below 20 are need to be zero and all other values are retained as it is.Thanks
clc close all im = imread('11.bmp'); im = imresize (im,[256,256]); %im = double(im)/255; imshow(im) title('Original ...
10 years ago | 0 answers | 0
0
answersQuestion
I have rgb image,the rgb image is splitted into 3 different planes and for every plane I have taken single dimensional array values.Now i want to make pixel values less then 20 as zero and all other values need to be retained as it is.
a=imread('41.bmp'); red=a; green=a; blue=a; red(:,:,2:3)=0; subplot(2,2,1); imshow(a); title('input image'); ...
10 years ago | 1 answer | 0