extract only white pixels from an image

2 views (last 30 days)
Mary Baratzadeh
Mary Baratzadeh on 28 Dec 2019
Commented: Mary Baratzadeh on 30 Dec 2019
How can I extract mean and variance of only white pixels of an image?

Answers (1)

Image Analyst
Image Analyst on 28 Dec 2019
Edited: Image Analyst on 28 Dec 2019
What value do you consider "white"? Let's say it's 230. Then you can get a binary image
binaryImage = grayImage >= 230;
Now, exactly what does "extract" mean to you? You want to consider all the gray values in the binary image? If so do
maskMean = mean(grayImage(binaryImage));
maskSD = std(grayImage(binaryImage));
maskVar = var(grayImage(binaryImage));
  1 Comment
Mary Baratzadeh
Mary Baratzadeh on 30 Dec 2019
excuse me, my mean is calculate the average white pixels of an image

Sign in to comment.

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!