how to normalize the image please provide the code for it

 Respuesta aceptada

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 comentarios

himanshu sharma
himanshu sharma el 26 de Abr. de 2015
Editada: Image Analyst el 26 de Abr. de 2015
A=importdata('E:\m@nshu\photos\B.jpg');
figure,image(A);
title('Original Image');
I = rgb2gray(A);
figure(1)
imshow(I);
title('GrayScale Image');
//this is my code .i have to convert this gray scale image to normalized form ,i am not getting any type of result from the above method ,please provide it in a detail for this querry.
Jan
Jan el 26 de Abr. de 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.
Try calling imread() instead of importdata().

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Read, Write, and Modify Image en Centro de ayuda y File Exchange.

Preguntada:

el 23 de Abr. de 2015

Comentada:

el 26 de Abr. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by