PuzzleCAM
PuzzleCAM copied to clipboard
How to visualize the cam map
Hi, I wonder how to visualize the cam map as your paper?
me too.
Hi, I wonder how to visualize the cam map as your paper?
me too.
Hi, I wonder how to visualize the cam map as your paper?
Asking the same
Please try according to the code below and then you will get visualized cam feature maps.
...
cam_dict = np.load(pred_dir + image_id + '.npy', allow_pickle=True).item()
keys = cam_dict['keys']
cams = cam_dict['hr_cam']
cam_color = cv2.applyColorMap(cams, 2)
...