معرفی شرکت ها


agh-vqis-1.2.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A Python wrapper for 17 image quality indicators.
ویژگی مقدار
سیستم عامل -
نام فایل agh-vqis-1.2.3
نام agh-vqis
نسخه کتابخانه 1.2.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jakub Nawała, Filip Korus
ایمیل نویسنده jakub.nawala@agh.edu.pl, fkorus@student.agh.edu.pl
آدرس صفحه اصلی https://qoe.agh.edu.pl/indicators/
آدرس اینترنتی https://pypi.org/project/agh-vqis/
مجوز EVALUATION LICENSE AGREEMENT
# agh-vqis A Python package computing a set of image quality indicators (IQIs) for a given input video. Following IQIs are included in the package: - A set of 15 Video Quality Indicators (VQIs) developed by the team from AGH. See the following website for more information: https://qoe.agh.edu.pl/indicators/. - Our Python reimplementation of the Colourfulness IQI. See [this](http://infoscience.epfl.ch/record/33994/files/HaslerS03.pdf) paper for more information regarding this IQI. - Blur Amount IQI. See [package's Python Package Index web page](https://pypi.org/project/cpbd/) for more information. - UGC IQI (User-generated content). **Authors**: Jakub Nawała <[jakub.nawala@agh.edu.pl](mailto:jnawala@agh.edu.pl)>, Filip Korus <[fkorus@student.agh.edu.pl](mailto:fkorus@studnt.agh.edu.pl)> ## Requirements - ffmpeg - version == 4.4.2 (4.x.x should also work) - Python - version >= 3.9 ## Installation ```shell $ pip install agh_vqis ``` ### Usage 1. Single multimedia file: ```python from agh_vqis import process_single_mm_file from pathlib import Path if __name__ == '__main__': process_single_mm_file(Path('/path/to/single/movie.mp4')) ``` 2. Folder with multimedia files: ```python from agh_vqis import process_folder_w_mm_files from pathlib import Path if __name__ == '__main__': process_folder_w_mm_files(Path('/path/to/multimedia/folder/')) ``` 3. Options parameter - in either `process_single_mm_file` and `process_folder_w_mm_files` function options could be provided as an optional argument. It is being passed to function as a dictionary like below. ```python process_single_mm_file(Path('/path/to/single/movie.mp4'), options={ 'contrast': False, # disable contrast indicator 'colourfulness': False, # disable colourfulness indicator 'exec': '/path/to/vqis/executable/file/', 'shell': '/bin/bash' }) ``` 4. How to disable/enable indicators to count? Every indicator is **enabled by default except `blue_amount`** due to long computing time. To disable one of following indicators `(blockiness, sa, letterbox, pillarbox, blockloss, blur, ta, blackout, freezing, exposure, contrast, interlace, noise, slice, flickering, colourfulness, ugc)` pass ```python 'indicator_name': False ``` to options dictionary. Whereas to **enable** `blur_amount` indicator pass `True` value. 5. Available optional parameters except indicators' flags: - exec: Path to the binary file running 15 AGH VQIs. The default binaries (depending on system and CPU architecture) are provided in the package files and will run automatically. VQIS binary files could be downloaded from [here](https://qoe.agh.edu.pl/indicators/). - shell: Alternative Bash interpreter (instead of the default `/bin/bash`). Provide here a path to the interpreter of your choice. 6. agh-vqis package could be used from command line interface as well. For example: ```shell $ python3 -m agh_vqis /path/to/single/movie.mp4 # will run VQIS for single file ``` or ```shell $ python3 -m agh_vqis /path/to/multimedia/folder/ # will run VQIS for folder ``` Whereas this command will display help: ```shell $ python3 -m agh_vqis -h ``` 7. Supported multimedia files: `mp4`, `mov`, `mkv`, `avi`, `ts`, `jpg`, `jpeg`, `png`, `gif`, `bmp`. ### Output file First row of the output CSV file contains header with image quality indicators (IQIs) names, whereas each row below the header represents single video frame from the input video file. Each column provides a numerical result as returned by a given image quality indicator (IQI) when applied to the respective frame. ### License The `agh-vqis` Python package is provided via the [Evaluation License Agreement](https://app.qoe.agh.edu.pl/public/agh-vqis/license.txt).


نیازمندی

مقدار نام
>=3.5.1 matplotlib
>=1.22.3 numpy
>=1.4.2 pandas
>=0.5 PIMS
>=0.19.2 scikit-image
>=1.1.0 slicerator
>=0.6.0.3 scenedetect
>=4.6.0.66 opencv-python
==0.90 xgboost
==1.0.2 scikit-learn
<9,>=8.0.3 av


زبان مورد نیاز

مقدار نام
>=3.9 Python


نحوه نصب


نصب پکیج whl agh-vqis-1.2.3:

    pip install agh-vqis-1.2.3.whl


نصب پکیج tar.gz agh-vqis-1.2.3:

    pip install agh-vqis-1.2.3.tar.gz