-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #688 from rapidsai/branch-24.02
Forward-merge branch-24.02 to branch-24.04
- Loading branch information
Showing
40 changed files
with
444 additions
and
369 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 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
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
Empty file.
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
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
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 |
---|---|---|
@@ -1,48 +1,3 @@ | ||
from ._basic_features import multiscale_basic_features | ||
from ._canny import canny | ||
from ._daisy import daisy | ||
from .blob import blob_dog, blob_doh, blob_log | ||
from .corner import ( | ||
corner_foerstner, | ||
corner_harris, | ||
corner_kitchen_rosenfeld, | ||
corner_peaks, | ||
corner_shi_tomasi, | ||
hessian_matrix, | ||
hessian_matrix_det, | ||
hessian_matrix_eigvals, | ||
shape_index, | ||
structure_tensor, | ||
structure_tensor_eigenvalues, | ||
) | ||
from .match import match_descriptors | ||
from .peak import peak_local_max | ||
from .template import match_template | ||
import lazy_loader as lazy | ||
|
||
__all__ = [ | ||
"canny", | ||
"daisy", | ||
"multiscale_basic_features", | ||
"peak_local_max", | ||
"structure_tensor", | ||
"structure_tensor_eigenvalues", | ||
"structure_tensor_eigvals", | ||
"hessian_matrix", | ||
"hessian_matrix_det", | ||
"hessian_matrix_eigvals", | ||
"shape_index", | ||
"corner_kitchen_rosenfeld", | ||
"corner_harris", | ||
"corner_shi_tomasi", | ||
"corner_foerstner", | ||
# 'corner_subpix', | ||
"corner_peaks", | ||
# 'corner_moravec', | ||
# 'corner_fast', | ||
# 'corner_orientations', | ||
"match_template", | ||
"match_descriptors", | ||
"blob_dog", | ||
"blob_log", | ||
"blob_doh", | ||
] | ||
__getattr__, __dir__, __all__ = lazy.attach_stub(__name__, __file__) |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Explicitly setting `__all__` is necessary for type inference engines | ||
# to know which symbols are exported. See | ||
# https://peps.python.org/pep-0484/#stub-files | ||
|
||
__all__ = [ | ||
"canny", | ||
"daisy", | ||
"peak_local_max", | ||
"structure_tensor", | ||
"structure_tensor_eigenvalues", | ||
"hessian_matrix", | ||
"hessian_matrix_det", | ||
"hessian_matrix_eigvals", | ||
"shape_index", | ||
"corner_kitchen_rosenfeld", | ||
"corner_harris", | ||
"corner_shi_tomasi", | ||
"corner_foerstner", | ||
"corner_peaks", | ||
"match_template", | ||
"match_descriptors", | ||
"blob_dog", | ||
"blob_doh", | ||
"blob_log", | ||
"multiscale_basic_features", | ||
] | ||
|
||
from ._basic_features import multiscale_basic_features | ||
from ._canny import canny | ||
from ._daisy import daisy | ||
from .blob import blob_dog, blob_doh, blob_log | ||
from .corner import ( | ||
corner_foerstner, | ||
corner_harris, | ||
corner_kitchen_rosenfeld, | ||
corner_peaks, | ||
corner_shi_tomasi, | ||
hessian_matrix, | ||
hessian_matrix_det, | ||
hessian_matrix_eigvals, | ||
shape_index, | ||
structure_tensor, | ||
structure_tensor_eigenvalues, | ||
) | ||
from .match import match_descriptors | ||
from .peak import peak_local_max | ||
from .template import match_template |
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
Oops, something went wrong.