CompressAI
CompressAI copied to clipboard
There is a bug in the bench av1
https://github.com/InterDigitalInc/CompressAI/blob/master/compressai/utils/bench/codecs.py#L821
'img' is a file address for an image here, but this line of code treats it as data for the image
The correct code should be:
arr = np.asarray(self._load_img(img))