how to normalize the image please provide the code for it

 채택된 답변

Ahmet Cecen
Ahmet Cecen 2015년 4월 23일
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

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.
@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().

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

질문:

2015년 4월 23일

댓글:

2015년 4월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by