Skip to content
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
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,11 @@ panorama = stitcher.stitch(["img1.jpg", "img2.jpg", "img3.jpg"])

```

or using the [command line
tool](https://github.com/lukasalexanderweber/stitching/blob/main/stitching_tool.py)
or using the command line interface ([cli](https://github.com/lukasalexanderweber/stitching/tree/main/stitching/cli/stitch.py)) which is available after installation

```bash
python stitching_tool.py -h
python stitching_tool.py img1.jpg img2.jpg img3.jpg
stitch -h
stitch img1.jpg img2.jpg img3.jpg
```

## Tutorial
Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ install_requires =
include_package_data = True
zip_safe = False

[options.entry_points]
console_scripts =
stitch = stitching.cli.stitch:main

[options.packages.find]
include = stitching
exclude = tests
2 changes: 1 addition & 1 deletion stitching/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .stitcher import Stitcher

__version__ = "0.1.0"
__version__ = "0.2.0"
Empty file added stitching/cli/__init__.py
Empty file.
Loading