Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.1 : readme #13

Merged
merged 2 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.0
current_version = 0.0.1
commit = True
tag = True

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ Below are some examples of image transformations using **Torqueo**.

| | | |
|-|-|-|
| <img src="./assets/rabbit.jpg" width="30%" alt="Original Image"><br> **Original Image** | <img src="./assets/transformations/barrel.jpg" width="30%" alt="Barrel"><br> **Barrel** | <img src="./assets/transformations/fisheye.jpg" width="30%" alt="Fisheye"><br> **Fisheye**|
| <img src="./assets/transformations/perspective.jpg" width="30%" alt="Perspective"><br> **Perspective** | <img src="./assets/transformations/pinch.jpg" width="30%" alt="Pinch"><br> **Pinch** | <img src="./assets/transformations/spherize.jpg" width="30%" alt="Spherize"><br> **Spherize**|
| <img src="./assets/transformations/stretch.jpg" width="30%" alt="Stretch"><br> **Stretch** | <img src="./assets/transformations/swirl.jpg" width="30%" alt="Swirl"><br> **Swirl** | <img src="./assets/transformations/twirl.jpg" width="30%" alt="Twirl"><br> **Twirl**|
| <img src="./assets/transformations/wave.jpg" width="30%" alt="Wave"><br> **Wave** | | |
| <img src="./assets/rabbit.jpg" width="99%" alt="Original Image"><br> **Original Image** | <img src="./assets/transformations/barrel.jpg" width="99%" alt="Barrel"><br> **Barrel** | <img src="./assets/transformations/fisheye.jpg" width="99%" alt="Fisheye"><br> **Fisheye**|
| <img src="./assets/transformations/perspective.jpg" width="99%" alt="Perspective"><br> **Perspective** | <img src="./assets/transformations/pinch.jpg" width="99%" alt="Pinch"><br> **Pinch** | <img src="./assets/transformations/spherize.jpg" width="99%" alt="Spherize"><br> **Spherize**|
| <img src="./assets/transformations/stretch.jpg" width="99%" alt="Stretch"><br> **Stretch** | <img src="./assets/transformations/swirl.jpg" width="99%" alt="Swirl"><br> **Swirl** | <img src="./assets/transformations/twirl.jpg" width="99%" alt="Twirl"><br> **Twirl**|
| <img src="./assets/transformations/wave.jpg" width="99%" alt="Wave"><br> **Wave** | | |

# Authors of the code

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="Torqueo",
version="0.0.0",
version="0.0.1",
description="Personal toolbox for image Warping",
long_description=README,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion torqueo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

"""

__version__ = '0.0.0'
__version__ = '0.0.1'

from .base import WarpTransform
from .plots import show
Expand Down
Loading