ekamioka
ekamioka
> Thanks for your PR. > > I think it's indeed an interesting feature to add to have some classical preprocessing function implemented inside the repo. > > However, I...
> @ekamioka are you still willing to improve on this? Or should I close it? I opened an issue on this topic #249 so that this idea won't be lost...
as @Mazzanicolas said: in `vis/visualization/saliency.py` replace: `from scipy.misc import imresize` to: `import cv2` then replace: `heatmap = imresize(heatmap, input_dims, interp='bicubic', mode='F')` to: ``` heatmap = cv2.resize(src=heatmap, dsize=input_dims, interpolation=cv2.INTER_CUBIC) ``` I...
Hello @ThomasBouche , thanks for working on the issue. I am afraid the issue is still open. I have just faced the same problem using the version 2.3.7. I guess...