Skip to content

Commit

Permalink
changed copyright statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Benes committed Nov 22, 2023
1 parent 4a2f83e commit 61dc9c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Get *discrete cosine transform* (DCT) coefficients and quantization matrices as


```python
im = jpeglib.read_dct("input.jpeg")
im = jpeglib.read_dct('input.jpeg')
im.Y; im.Cb; im.Cr; im.qt
```

Expand All @@ -58,15 +58,15 @@ You get luminance DCT, chrominance DCT and quantization tables.
Write the DCT coefficients back to a file with

```python
im.write_dct("output.jpeg")
im.write_dct('output.jpeg')
```

### Pixel data

Decompress the `input.jpeg` into spatial representation in numpy array with

```python
im = jpeglib.read_spatial("input.jpeg")
im = jpeglib.read_spatial('input.jpeg')
im.spatial
```

Expand All @@ -75,7 +75,7 @@ You can specify parameters such as output color space, DCT method, dithering, et
Write spatial representation in numpy arrray back to file with

```python
im.write_spatial("output.jpeg")
im.write_spatial('output.jpeg')
```

You can specify input color space, DCT method, sampling factor, output quality, smoothing factor etc.
Expand Down Expand Up @@ -112,5 +112,5 @@ im = jpeglib.read_spatial('image.jpeg') # using 6b again

## Credits

Developed by [Martin Benes](https://github.com/martinbenes1996), Universität Innsbruck, 2023.
Developed by [Martin Benes](https://github.com/martinbenes1996), University of Innsbruck, 2023.

2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sphinx_rtd_theme

project = 'jpeglib'
copyright = '2021, Martin Benes'
copyright = '2023, Martin Benes'
author = 'Martin Benes'

release = '0.14'
Expand Down

0 comments on commit 61dc9c9

Please sign in to comment.