0

Currently I working on BRISQUE score to check of quality of a image. Below is what I tried.

from PIL import Image

from skimage import io,img_as_float

import imquality.brisque as brisque img = Image.open('/content/page_0.jpg')

score = brisque.score(img)It is a scanned document

But, the problem is that this gives am error 'the input array must have size 3 along channel_axis, got (1169, 827)' . But the input image is of 3 channels only.

Please help.TIA

0 Answers0