Kazuhito00 / Image-Processing-Node-Editor

処理の検証や比較検討での用途を想定したノードエディターベースの画像処理アプリ(A node editor-based image processing application intended for use in processing verification and comparison studies)
Apache License 2.0
484 stars 71 forks source link

fix module cv2 has no attribute quality #9

Closed motojinc25 closed 2 years ago

motojinc25 commented 2 years ago

Error

import cv2 as cv

...
score = cv2.quality.QualityBRISQUE_compute(image, model_path, range_path)
...

AttributeError: module 'cv2' has no attribute 'quality'

Fix

pip uninstall opencv-python
pip install opencv-contrib-python
Kazuhito00 commented 2 years ago

Thanks for your PR.