File size: 2,792 Bytes
36c95ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
from .affine_shape import LAFAffineShapeEstimator, LAFAffNetShapeEstimator, PatchAffineShapeEstimator
from .defmo import DeFMO
from .hardnet import HardNet, HardNet8
from .integrated import (
    get_laf_descriptors,
    GFTTAffNetHardNet,
    LAFDescriptor,
    LocalFeature,
    LocalFeatureMatcher,
    SIFTFeature,
)
from .laf import (
    denormalize_laf,
    ellipse_to_laf,
    extract_patches_from_pyramid,
    extract_patches_simple,
    get_laf_center,
    get_laf_orientation,
    get_laf_scale,
    laf_from_center_scale_ori,
    laf_from_three_points,
    laf_is_inside_image,
    laf_to_boundary_points,
    laf_to_three_points,
    make_upright,
    normalize_laf,
    perspective_transform_lafs,
    raise_error_if_laf_is_not_valid,
    scale_laf,
    set_laf_orientation,
)
from .loftr import LoFTR
from .matching import DescriptorMatcher, match_mnn, match_nn, match_smnn, match_snn
from .mkd import MKDDescriptor
from .orientation import LAFOrienter, OriNet, PatchDominantGradientOrientation
from .responses import (
    BlobDoG,
    BlobHessian,
    CornerGFTT,
    CornerHarris,
    dog_response,
    gftt_response,
    harris_response,
    hessian_response,
)
from .scale_space_detector import PassLAF, ScaleSpaceDetector
from .siftdesc import SIFTDescriptor
from .sosnet import SOSNet
from .tfeat import TFeat

__all__ = [
    "match_nn",
    "match_mnn",
    "match_snn",
    "match_smnn",
    "DescriptorMatcher",
    "get_laf_descriptors",
    "LAFDescriptor",
    "LocalFeature",
    "SIFTFeature",
    "GFTTAffNetHardNet",
    "LocalFeatureMatcher",
    "SOSNet",
    "harris_response",
    "gftt_response",
    "hessian_response",
    "dog_response",
    "CornerHarris",
    "CornerGFTT",
    "BlobHessian",
    "BlobDoG",
    "extract_patches_from_pyramid",
    "extract_patches_simple",
    "normalize_laf",
    "denormalize_laf",
    "laf_to_boundary_points",
    "ellipse_to_laf",
    "make_upright",
    "get_laf_scale",
    "get_laf_center",
    "get_laf_orientation",
    "set_laf_orientation",
    "get_laf_descriptors",
    "scale_laf",
    "SIFTDescriptor",
    "MKDDescriptor",
    "HardNet",
    "HardNet8",
    "DeFMO",
    "TFeat",
    "OriNet",
    "LAFAffNetShapeEstimator",
    "PassLAF",
    "ScaleSpaceDetector",
    "LAFAffineShapeEstimator",
    "PatchAffineShapeEstimator",
    "LAFOrienter",
    "PatchDominantGradientOrientation",
    "raise_error_if_laf_is_not_valid",
    "laf_is_inside_image",
    "laf_from_center_scale_ori",
    "laf_to_three_points",
    "laf_from_three_points",
    "match_nn",
    "match_mnn",
    "match_snn",
    "match_smnn",
    "LocalFeatureMatcher",
    "LocalFeature",
    "SIFTFeature",
    "GFTTAffNetHardNet",
    "LAFDescriptor",
    "DescriptorMatcher",
    "LoFTR",
    "perspective_transform_lafs",
]