I have tried first converting the grayscale image and the 2D-heatmap to RGB images. The heatmap is converted by making all except the red dimension zeros.
Then the image is masked with a threshold, where the heatmap is above 0.01, and a new image is created where the images are combined.
But for some reason, this produces a green color on some parts of the image:
To overlay a heatmap you can use
cv2.addWeighted()
PART I
Based on similar input images
Sample input image:
g1
is a BGR image:Sample mask:
gm
is a binary image:Heatmap:
OpenCV allows you to create a heatmap using
cv2.applyColorMap()
on the binary imagegm
. In this example, I have chosen the optioncv2.COLORMAP_JET
.Overlaying the heatmap over the original image
g1
usingcv2.addWeighted()
:PART II
The above image is not what you are looking for. Based on your question, you would like to overlay only the region of interest i.e, the region in white.
First, select only the ROI in the overlay image using the mask
gm
Finally, preserve the ROI where the mask is white (255); and in every other position where the mask is black (0) place pixel intensities of the original image
g1
:I hope the above is what you are looking for.