Expand description
ChESS detector pipeline.
Implements the corner detector described in Bennett & Lasenby, ChESS: A Fast and Accurate Chessboard Corner Detector (CVIU 2014):
response::chess_response_u8computes a dense response map from a 16-sample ring around each pixel.detect::detect_corners_from_responsethresholds the map, runs non-maximum suppression, and rejects isolated peaks.- The detector candidate is then handed to a refiner from
crate::refineand an orientation fit fromcrate::orientationto produce a finalcrate::detect::CornerDescriptor.