How to convert Lab to RGB image and its matlab code?
이전 댓글 표시
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?
채택된 답변
추가 답변 (2개)
Image Analyst
2015년 10월 28일
Try this
labImage = rgb2lab(rgbImage);
댓글 수: 3
Image Analyst
2015년 10월 28일
For the reverse direction, it's
rgbImage = lab2rgb(labImage);
There are also options that you can specify -- see the help.
somasekar jalari
2015년 10월 30일
zee falcon
2017년 1월 4일
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
2015년 10월 28일
0 개 추천
카테고리
도움말 센터 및 File Exchange에서 Color에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!