Is there a a function/code which can make the darker bits darker and the lighter bits lighter?

4 vues (au cours des 30 derniers jours)
Duncan
Duncan le 21 Août 2014
Commenté : Iain le 22 Août 2014
just a random image I found on google. Is it possible to make the black parts (crack) darker and the background (concrete) lighter?

Réponses (3)

Matz Johansson Bergström
Matz Johansson Bergström le 21 Août 2014
If you have the image processing toolbox you can use imcontrast. http://www.mathworks.se/help/images/ref/imcontrast.html

Iain
Iain le 21 Août 2014
Yup.
Calculate the difference from the image's mid level (128 probably, but this depends on how you're dealing with the image), and multiply it by a number greater than 1. Add that difference back to the mid level.
  2 commentaires
Duncan
Duncan le 21 Août 2014
do you have any links or info about doing this?
thanks
Iain
Iain le 22 Août 2014
Adjusted_Contrast = (Image - meanlevel) * scale;
Adjusted_Image = meanlevel + Adjusted_Contrast;
You need to change data types & values of mean level & scale, as you need.

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 22 Août 2014
You can use imadjust() or just pass in the range you want to see into imshow().

Catégories

En savoir plus sur Red dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by