MATLAB: How to make HSI image using three monochrome images

hsihsvImage Processing Toolboxpolarimetric image processing

I am working on polarimetric image processing and i have three grey images viz. 1. Total intensity image 2. Degree of polarisation image and 3. Angle of polarisation image. There are literatures saying that these images are better visualised in HSI space. I need help regarding merging these images to make HSI image and display accordingly.

Best Answer

Try this:
hsvImage = cat(3, intensityImage, polarizationImage, angleImage);
rgbImage = hsv2rgb(hsvImage);
Related Question