Skip to content

Commit

Permalink
rle -> run_length_encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaazzini committed Dec 21, 2021
1 parent 405a22d commit 2c3ce2b
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 95 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.pytest_cache/
build/

*.egg-info
*.so
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
extra_compile_args=["-O3", "-Wall"],
),
setuptools.Extension(
"rle", ["upolygon/rle" + ext], extra_compile_args=["-O3", "-Wall"]
"run_length_encoding",
["upolygon/run_length_encoding" + ext],
extra_compile_args=["-O3", "-Wall"],
),
]

Expand All @@ -35,7 +37,7 @@

setuptools.setup(
name="upolygon",
version="0.1.6",
version="0.1.7",
author="V7",
author_email="simon@v7labs.com",
description="Collection of fast polygon operations for DL",
Expand Down
3 changes: 1 addition & 2 deletions upolygon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from draw_polygon import draw_polygon # noqa
from find_contours import find_contours # noqa
from simplify_polygon import simplify_polygon # noqa
from rle import decode as rle_decode # noqa
from rle import encode as rle_encode # noqa
from run_length_encoding import rle_decode, rle_encode # noqa
Loading

0 comments on commit 2c3ce2b

Please sign in to comment.