How to get high & low pixel intensity value from a image?

How to get high & low pixel intensity value from a image ? Can any one share ideas ?

Answers (1)

Considering gray Image, say image_gray
high_pixel=max(image_gray(:));
low_pixel=min(image_gray(:));

3 Comments

Its giving a maximum value and minimum value only. so its not used to extract high pixel intensity compoenents ? so?
May be both intensities are present in your image.
To ensure, please check with other images (Which dont have larger pixels, like dark image)
See I have test with black image-
high_pixel =
uint8
22
low_pixel =
uint8
8
Let me know!
What's your definition of "extract"? Do you just want a list of N elements, all having the same values? Seems useless? Do you want a binary image mapping out where those values occur in the image?

Sign in to comment.

Categories

Find more on Images in Help Center and File Exchange

Products

Release

R2017b

Asked:

on 19 Jul 2019

Commented:

on 19 Jul 2019

Community Treasure Hunt

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

Start Hunting!