-
Notifications
You must be signed in to change notification settings - Fork 26
How to Visualizing the AoLP Image
Ryota MAEDA edited this page Sep 20, 2020
·
12 revisions
When visualizing the AoLP image, it is often used to map them to the Hue of HSV color space. In this case, the DoLP image may be used at the same time; it is brighter when it corresponds to Saturation and darker when it corresponds to Value. This makes it easier to recognize the polarization state because the highly polarized areas are colored. The program can visualize AoLP Image in three ways. The result of the visualization and the corresponding color maps are shown below.
AoLP(Hue) Image | Color Map |
---|---|
img_AoLP_cmapped = pa.applyColorToAoLP(img_AoLP)
AoLP(Hue)+DoLP(Saturation) Image | Color Map |
---|---|
img_AoLP_cmapped = pa.applyColorToAoLP(img_AoLP, saturation=img_DoLP)
AoLP(Hue)+DoLP(Value) Image | Color Map |
---|---|
img_AoLP_cmapped = pa.applyColorToAoLP(img_AoLP, value=img_DoLP)