Metadata-Version: 2.1
Name: siti-tools
Version: 0.1.2
Summary: Functions to calculate Spatial Information / Temporal Information according to ITU-T P.910
Home-page: https://github.com/Telecommunication-Telemedia-Assessment/siti-tools
Author: Werner Robitza
Author-email: werner.robitza@gmail.com
License: MIT
Description: # siti-tools
        
        [![Python package](https://github.com/Telecommunication-Telemedia-Assessment/siti-tools/actions/workflows/python-package.yml/badge.svg)](https://github.com/Telecommunication-Telemedia-Assessment/siti-tools/actions/workflows/python-package.yml)
        
        SI/TI calculation tools.
        
        Calculate spatial information (SI) and temporal information (TI) according to ITU-T P.910.
        
        Contents:
        
        - [Requirements](#requirements)
        - [Installation](#installation)
        - [What is SI/TI?](#what-is-si-ti)
        - [Usage](#usage)
        - [Documentation](#documentation)
        - [Related Projects](#related-projects)
        - [Acknowledgements](#acknowledgements)
        - [Testing](#testing)
        - [License](#license)
        
        ## Requirements
        
        - Python 3.7 or higher
        - FFmpeg libraries (to run `pyav`)
        
        Under Ubuntu, to get ffmpeg libraries:
        
            sudo apt update -qq && \
            sudo apt install \
              libavformat-dev libavcodec-dev libavdevice-dev libavutil-dev \
              libavfilter-dev libswscale-dev libavresample-dev
        
        Under macOS, it is recommended to install ffmpeg via [Homebrew](https://brew.sh):
        
            brew install ffmpeg
        
        ## Installation
        
        Run:
        
            pip3 install --user siti-tools
        
        Alternatively, clone this repository and then:
        
            pip3 install --user .
        
        ## What is SI/TI?
        
        The following info is given about SI / TI in ITU-T Recommendation P.910 ("Subjective video quality assessment methods for multimedia applications"):
        
        ### Spatial Information
        
        > The spatial perceptual information (SI) is based on the Sobel filter. Each video frame (luminance plane) at time n (Fn) is first filtered with the Sobel filter [Sobel(Fn)]. The standard deviation over the pixels (stdspace) in each Sobel-filtered frame is then computed. This operation is repeated for each frame in the video sequence and results in a time series of spatial information of the scene. The maximum value in the time series (maxtime) is chosen to represent the spatial information content of the scene. This process can be represented in equation form as:
        
        > ![](http://i.imgur.com/zRXcVJO.png)
        
        ### Temporal information
        
        > The temporal perceptual information (TI) is based upon the motion difference feature, Mn(i, j), which is the difference between the pixel values (of the luminance plane) at the same location in space but at successive times or frames. Mn(i, j) as a function of time (n) is defined as:
        
        > ![](http://i.imgur.com/MRsJtdT.png)
        
        > here Fn(i, j) is the pixel at the ith row and jth column of nth frame in time.
        The measure of temporal information (TI) is computed as the maximum over time (maxtime) of the standard deviation over space (stdspace) of Mn(i, j) over all i and j.
        
        > <img src="https://i.imgur.com/XAnKWJw.png" height="19">
        
        > More motion in adjacent frames will result in higher values of TI
        
        ## Command Line Usage
        
        If you need a command line version that uses `siti-tools` in the background, check out [slhck/siti](https://github.com/slhck/siti).
        
        This repository will gain a command line interface once it gets more features.
        
        ## API Usage
        
        The tools expose the following via an API:
        
        - two main functions to calculate SI and TI given an array of frame data (`si` and `ti`)
        - a helper function to calculate SI and TI together (`calculate_si_ti`)
        - helper functions for reading files (`read_container`, `read_file`)
        
        ### Combined Calculation
        
        In the simplest case, run:
        
        ```python
        from siti_tools.siti import calculate_si_ti
        
        si_values, ti_values, frame_count = calculate_si_ti("/path/to/file.y4m")
        ```
        
        You can then access the raw values in the individual variables.
        
        ⚠️ The first TI value will always be `None`, since it is not defined.
        
        ### Individual Calculation
        
        You can also manually calculate the values.
        
        When calculating TI, make sure to compare against the previous frame data:
        
        ```python
        from siti_tools.file import read_container
        from siti_tools.siti import si, ti
        
        previous_frame_data = None
        for frame in read_container("/path/to/file.y4m"):
            si_value = si(frame)
            ti_value = ti(frame, previous_frame_data)
            previous_frame_data = frame
        ```
        
        The `read_container` function returns each frame individually and the loop will exit once it's done.
        
        ## Documentation
        
        To read the API documentation, head to https://telecommunication-telemedia-assessment.github.io/siti-tools/.
        
        ## Acknowledgements
        
        If you use this software in your research, please include link to this repository.
        
        ## Related Projects
        
        - [TelecommunicationTelemediaAssessment/SITI](https://github.com/Telecommunication-Telemedia-Assessment/SITI): Legacy calculations of OpenCV and Python version of SI/TI, values may not necessarily correspond.
        - [NabajeetBarman/SI-TI](https://github.com/NabajeetBarman/SI-TI): MATLAB version of SI/TI calculation, values verified against this repository.
        
        ## Testing
        
        This repo provides a set of test sequences with expected output values that you can verify against.
        
        Install `pytest`:
        
        ```
        pip3 install -r requirements.dev.txt
        ```
        
        Then run:
        
        ```bash
        python3 -m pytest test/test.py
        ```
        
        ## License
        
        MIT License
        
        siti_tools, Copyright (c) 2021 Werner Robitza
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
        
        # Changelog
        
        
        ## v0.1.2 (2021-05-14)
        
        * Add documentation for method.
        
        * Fix link.
        
        * Update README.md.
        
        * Update README.md.
        
        * Output frame data as integers.
        
        
        ## v0.1.1 (2021-05-13)
        
        * Add warning for full range passed to limited range function, fixes #2.
        
        * Add new test video, improve test harness.
        
        
        ## v0.1.0 (2021-03-08)
        
        * Add status badge.
        
        * Bump Python support.
        
        * Add GitHub Actions CI (#1)
        
        * Fix flake8 errors.
        
        
        ## v0.0.2 (2021-03-08)
        
        * Fix setup.py.
        
        * Add CHANGELOG.
        
        
        ## v0.0.1 (2021-03-08)
        
        * Improve README.
        
        * Initial commit.
        
        * Initial commit.
        
        
        
Keywords: video,spatial information,temporal information
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Multimedia :: Video
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
