how to normalize the image please provide the code for it

3 views (last 30 days)
to noramlize an image please provide the matlab code

Accepted Answer

Ahmet Cecen
Ahmet Cecen on 23 Apr 2015
Since you graced us with absolutely no specifics, I am assuming you are looking for the simplest take on the term image normalization, in that case:
NormalizedImage=(Image-min(Image(:)))*(255/range(Image(:)));
  3 Comments
Jan
Jan on 26 Apr 2015
@himanshu sharma: Please format your code properly. And please give us a chance to answer your question by providing the definition of what you call "normalization". The code posted by Ahmet does create a result and it is a usual type of normalization. Claiming only that you do not get a result does not allow to give further suggestions without guessing, what you exactly do and get.
So I strongly recommend to editi the original question and provide the required information where the readers expect them.

Sign in to comment.

More Answers (0)

Categories

Find more on Read, Write, and Modify Image 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!