Display an image processed in LAB channel

4 visualizaciones (últimos 30 días)
Quoc Anh Vu
Quoc Anh Vu el 29 de Ag. de 2023
Comentada: Quoc Anh Vu el 30 de Ag. de 2023
I'm dealing with processing blood vessels image in LAB channels, first i Convert the image to LAB color space, then i applied Contrast Limited Adaptive Histogram Equalization (CLAHE) to L channel, finally i converted the enhanced LAB image back to RGB color space.
% Load an image
originalImage = imread('7roi.png');
% Convert the image to LAB color space
labImage = rgb2lab(originalImage);
labImage = im2double(labImage);
% Apply Contrast Limited Adaptive Histogram Equalization (CLAHE) to L channel
clabImage = labImage;
clabImage(:,:,1) = adapthisteq(labImage(:,:,1));
% Convert the enhanced LAB image back to RGB color space
enhancedRGBImage = lab2rgb(clabImage);
% Convert enhanced image back to the original data type
enhancedRGBImage = im2uint8(enhancedRGBImage);
figure
imshow(enhancedRGBImage);
Here is the original and the result image, is it normal or i have some mistake in my algorithm, please help, thank you so much.

Respuesta aceptada

DGM
DGM el 30 de Ag. de 2023
Editada: DGM el 30 de Ag. de 2023
LAB images from rgb2lab() are not on the same scale expected of RGB images. You'll need to rescale the data appropriately if you want to feed it to something that isn't expecting that sort of range.
% Load an image
originalImage = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1467156/image.png');
% Convert the image to LAB color space
labImage = rgb2lab(originalImage);
% there's no need to convert to double when using lab2rgb()
% Apply Contrast Limited Adaptive Histogram Equalization (CLAHE) to L channel
% adapthisteq() expects floating point images to be in unit-scale (0 to 1)
% but this LAB representation is not unit-scale
clabImage = labImage;
clabImage(:,:,1) = adapthisteq(labImage(:,:,1)/100)*100; % rescale L as needed
% Convert the enhanced LAB image back to RGB color space
enhancedRGBImage = lab2rgb(clabImage);
% Convert enhanced image back to the original data type
enhancedRGBImage = im2uint8(enhancedRGBImage);
figure
imshow(enhancedRGBImage);
... or if you were using MIMT, you could do the whole thing in one line without worrying about scale or truncation:
enhancedRGBImage = histeqtool(originalImage,'ahisteqlchab');

Más respuestas (1)

Image Analyst
Image Analyst el 29 de Ag. de 2023
The code looks right. The problem is that CLAHE is often not a good algorithm because it's non-linear. Try imadjust instead.
  1 comentario
Quoc Anh Vu
Quoc Anh Vu el 30 de Ag. de 2023
thank you, i've tried imadjust but the result is still the same. i'm afraid that the problem is not the processing step, maybe it's out of range of display. do you know how to fix it sir?

Iniciar sesión para comentar.

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by