Files
gps-denied-onboard/src/anchor_verification/__init__.py
T
Oleksandr Bezdieniezhnykh 70f786f2d1 [AZ-240] [AZ-241] [AZ-242] Add native retrieval remediation
Implement the product remediation paths required before greenfield
code testability revision: native VIO backend selection, local
VPR descriptor index retrieval, and computed anchor matching gates.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-05 06:05:10 +03:00

34 lines
698 B
Python

"""Anchor verification component."""
from .interfaces import (
AnchorVerifier,
FeatureMatcher,
GeometryGatedAnchorVerifier,
KeypointRansacMatcher,
)
from .types import (
AnchorFrame,
AnchorVerificationResult,
CandidateTile,
GeometryGateConfig,
MatchEvidence,
MatcherBenchmarkReport,
MatcherBenchmarkResult,
MatcherProfile,
)
__all__ = [
"AnchorFrame",
"AnchorVerificationResult",
"AnchorVerifier",
"CandidateTile",
"FeatureMatcher",
"GeometryGateConfig",
"GeometryGatedAnchorVerifier",
"KeypointRansacMatcher",
"MatchEvidence",
"MatcherBenchmarkReport",
"MatcherBenchmarkResult",
"MatcherProfile",
]