__init__.pyi 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # Explicitly setting `__all__` is necessary for type inference engines
  2. # to know which symbols are exported. See
  3. # https://peps.python.org/pep-0484/#stub-files
  4. __all__ = [
  5. 'canny',
  6. 'Cascade',
  7. 'daisy',
  8. 'hog',
  9. 'graycomatrix',
  10. 'graycoprops',
  11. 'local_binary_pattern',
  12. 'multiblock_lbp',
  13. 'draw_multiblock_lbp',
  14. 'peak_local_max',
  15. 'structure_tensor',
  16. 'structure_tensor_eigenvalues',
  17. 'hessian_matrix',
  18. 'hessian_matrix_det',
  19. 'hessian_matrix_eigvals',
  20. 'shape_index',
  21. 'corner_kitchen_rosenfeld',
  22. 'corner_harris',
  23. 'corner_shi_tomasi',
  24. 'corner_foerstner',
  25. 'corner_subpix',
  26. 'corner_peaks',
  27. 'corner_moravec',
  28. 'corner_fast',
  29. 'corner_orientations',
  30. 'match_template',
  31. 'BRIEF',
  32. 'CENSURE',
  33. 'ORB',
  34. 'SIFT',
  35. 'match_descriptors',
  36. 'plot_matched_features',
  37. 'blob_dog',
  38. 'blob_doh',
  39. 'blob_log',
  40. 'haar_like_feature',
  41. 'haar_like_feature_coord',
  42. 'draw_haar_like_feature',
  43. 'multiscale_basic_features',
  44. 'learn_gmm',
  45. 'fisher_vector',
  46. ]
  47. from ._canny import canny
  48. from ._cascade import Cascade
  49. from ._daisy import daisy
  50. from ._hog import hog
  51. from .texture import (
  52. graycomatrix,
  53. graycoprops,
  54. local_binary_pattern,
  55. multiblock_lbp,
  56. draw_multiblock_lbp,
  57. )
  58. from .peak import peak_local_max
  59. from .corner import (
  60. corner_kitchen_rosenfeld,
  61. corner_harris,
  62. corner_shi_tomasi,
  63. corner_foerstner,
  64. corner_subpix,
  65. corner_peaks,
  66. corner_fast,
  67. structure_tensor,
  68. structure_tensor_eigenvalues,
  69. hessian_matrix,
  70. hessian_matrix_eigvals,
  71. hessian_matrix_det,
  72. corner_moravec,
  73. corner_orientations,
  74. shape_index,
  75. )
  76. from .template import match_template
  77. from .brief import BRIEF
  78. from .censure import CENSURE
  79. from .orb import ORB
  80. from .sift import SIFT
  81. from .match import match_descriptors
  82. from .util import plot_matched_features
  83. from .blob import blob_dog, blob_log, blob_doh
  84. from .haar import haar_like_feature, haar_like_feature_coord, draw_haar_like_feature
  85. from ._basic_features import multiscale_basic_features
  86. from ._fisher_vector import learn_gmm, fisher_vector