him192021
Results
2
comments of
him192021
I got this problem too. I checked the read_image() function and I found that they divide the image by 255. After I divided the image(in np.array format) by 255, this...
@haimat something like: `image = Image.open(path).convert("RGB")` `image=np.array(image) / 255.0` In my case, the result was fine when using anomalib.data.utils.read_image. However, the result was always 100% defective when I use cv2/PIL...