Contrast stretching diagram formula with imadjust function in matlab

11 vues (au cours des 30 derniers jours)
Nayuta Altria
Nayuta Altria le 23 Jan 2020
Commenté : Ali Abdullah le 22 Oct 2020
Help me.... I have an image output contrast stretching use function "imadjust"
How i can see a diagram like bellow with my image contrast stretching...?

Réponses (2)

KALYAN ACHARJYA
KALYAN ACHARJYA le 23 Jan 2020
Modifié(e) : KALYAN ACHARJYA le 23 Jan 2020
  1. Suppose you have input image, say input_image
  2. Do the some gray lebel operation, say the result is output_image;
Here when apply the transfer function, pixel values will be changed, right,
Say Pixel Values in input image After transfer function Pixel Values in output image
0 2
1 5
.................................
255 255
Now plot the cloumn1 vs cloumn 2 in above example. The plot in nothing about the image, its how you replace the invividual pixel value using some maths equation right (Transfer Function)
Let see the an example, transfer function is log(r), r represent the pixel values in input image
input_pixels=0:255;
output_pixels=log(input_pixels)
%% Plot
plot(input_pixels,output_pixels);
xlabel('Input Intensity Levels');
ylabel('Output Intensity Levels');
xlim([0,255])
99.png
In the plot, you have shown of contrast stretching having three relations between input vs output
First Segment-
Second Segment-
Third Segment-
Hope it helps!, Any questions are welcome
  2 commentaires
Nayuta Altria
Nayuta Altria le 23 Jan 2020
Hmm.. Actualy i want get diagram in contrast stretching formula with output images use function "imadjust"...
KALYAN ACHARJYA
KALYAN ACHARJYA le 23 Jan 2020
Modifié(e) : KALYAN ACHARJYA le 23 Jan 2020
input_im=rgb2gray(imread('2.png'));
input_pix_value=unique(input_im(:));
output_pix_value=10+imadjust(input_pix_value,[0.3 0.7],[]);
plot(input_pix_value,output_pix_value,'linewidth',3);
xlabel('Input Intensity Levels');
ylabel('Output Intensity Levels');
xlim([0,255]),ylim([0,255]);
Dp change the transformation function and get the required shape, I added the extra 10 in each pixels

Connectez-vous pour commenter.


Ali Abdullah
Ali Abdullah le 22 Oct 2020

Community Treasure Hunt

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

Start Hunting!

Translated by