How to convert Lab to RGB image and its matlab code?
Afficher commentaires plus anciens
In my program,first converted rgb image to lab but after processing the image , i want convert Lab to rgb image. so i request you, pls provide matlab code for converting lab to rgb image?
Réponse acceptée
Plus de réponses (2)
Image Analyst
le 28 Oct 2015
Try this
labImage = rgb2lab(rgbImage);
3 commentaires
Image Analyst
le 28 Oct 2015
For the reverse direction, it's
rgbImage = lab2rgb(labImage);
There are also options that you can specify -- see the help.
somasekar jalari
le 30 Oct 2015
zee falcon
le 4 Jan 2017
I want to convert rgb images to lab. But above code is not working.It not shows any output after the conversion.Help me out
Stalin Samuel
le 28 Oct 2015
0 votes
Catégories
En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!