Expand description
Corner detection utilities built on top of the dense ChESS response map.
Functionsยง
- detect_
corners_ from_ response - Core detector: run NMS + refinement on an existing response map.
- detect_
corners_ from_ response_ with_ refiner - Detector variant that accepts a user-provided refiner implementation.
- detect_
peaks_ from_ response - Stage 1 of ChESS detection: threshold + NMS + cluster-filter on the response map.
- detect_
peaks_ from_ response_ with_ refine_ radius - Stage 1 of ChESS detection: same as
detect_peaks_from_responsebut extends the border margin byrefine_radiusextra pixels so that an image-domain refiner with the given patch half-width can safely operate on every accepted peak. - find_
corners_ u8 - Compute corners starting from an 8-bit grayscale image.
- find_
corners_ u8_ with_ refiner - Compute corners starting from an 8-bit grayscale image using a custom refiner.
- merge_
corners_ simple - Merge corners within a given radius, keeping the strongest response.
- refine_
corners_ on_ image - Stage 2 of detection: image-domain subpixel refinement.