-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* grid: replace `skimage.transform.resize()` with `scipy.ndimage.zoom()`, as the former is a thin wrapper around the latter. The added anti-aliasing filter in skimage might make more of a difference in other cases, but the SET is so smooth that it doesn't matter to us. Although slower, the time difference for a (400, 500) image is 0.02 vs 0.2 seconds. * remove `scikit-image` from the dependency in the following files: - setup.py - pyproject.toml - requirements.txt * remove the redundant `environment.yml` file and update README.md for it. --------- Co-authored-by: Zhang Yunjun <[email protected]>
- Loading branch information
1 parent
045c21b
commit c27c8d7
Showing
6 changed files
with
10 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,6 @@ dependencies = [ | |
"numpy", | ||
"scipy", | ||
"matplotlib", | ||
"scikit-image", | ||
] | ||
dynamic = ["version"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,6 @@ def readme(): | |
"numpy", | ||
"scipy", | ||
"matplotlib", | ||
"scikit-image", | ||
], | ||
|
||
# package discovery | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters