Skip to content

Commit 772ad0a

Browse files
committed
Fix: Some stuff
1 parent 17206e1 commit 772ad0a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

asciiartist/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ def _get_edges(
147147
.resize((int(nx//weight+.5), int(ny//weight+.5)), Image.NEAREST),
148148
dtype=np.uint8)
149149

150-
edges = feature.canny(img, sigma=sigma)
150+
edges = feature.canny(img, sigma=sigma) \
151+
[3:-3,3:-3] # Remove border (scikit-image bug)
151152
edges = np.array(
152153
Image.fromarray(edges)
153154
.resize((nx, ny), Image.NEAREST)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Julia <[email protected]>"]
88
license = "MIT"
99

1010
packages = [
11-
{ include = "asciitrace" }
11+
{ include = "asciiartist" }
1212
]
1313

1414
include = [

0 commit comments

Comments
 (0)