HaneolJang / jpegio

A python package for accessing the internal variables of JPEG file format such as DCT coefficients and quantization tables

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JpegIO

A python package for accessing the internal variables of JPEG file format such as DCT coefficients and quantization tables.

Installation

It is recommended to install by compiling yourself. The installation process includes compiling C/C++ source codes.

python setup.py install

You can also use the pre-compiled wheels (If some errors occur, try compiling the package using the above command).

On Linux:

pip install dist/jpegio-x.x.x-cp3x-cp3x-linux_<your architecture>.whl

On Windows 10 x64:

pip install dist/jpegio-x.x.x-cp3x-cp3x-win_amd64.whl

On macOS x64:

pip install dist/jpegio-x.x.x-cp3x-cp3x-macosx_<version>_x86_64.whl

Making a wheel

You can use the following command for making a wheel for your own architecture such as x64 or ppc64le.

python setup.py bdist_wheel

The cooked wheel files are located at dist directory.

Dependency

This package requires other packages.

  1. sudo apt update
  2. sudo apt upgrade
  3. sudo apt dist-upgrade
  4. sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev
  5. install python
  6. pip install the following packages

Usage example

import jpegio as jio

jpeg = jio.read("image.jpg")
coef_array = jpeg.coef_arrays[0]  
quant_tbl = jpeg.quant_tables[0]
  • coef_arrays is a list of numpy.ndarray objects that represent DCT coefficients of YCbCr channels in JPEG.
  • quant_tables is a list of numpy.ndarray objects that represent the quantization tables in JPEG.

You can also utilize other variables (one of the simplest ways for finding them is to use dir(img)). The names of member variables have been determined following the convention of libjpeg.

References

License

To be updated...

About

A python package for accessing the internal variables of JPEG file format such as DCT coefficients and quantization tables


Languages

Language:C 99.0%Language:C++ 0.6%Language:Cython 0.3%Language:Python 0.1%