Skip to main content

find_chess_corners_image

Function find_chess_corners_image 

Source
pub fn find_chess_corners_image(
    img: &GrayImage,
    cfg: &ChessConfig,
) -> Vec<CornerDescriptor>
Expand description

Detect chessboard corners from a GrayImage.

This is a thin wrapper over the multiscale detector that builds an ImageView from img and dispatches to single- or multiscale mode based on cfg.multiscale.pyramid.num_levels, returning CornerDescriptor values in full-resolution pixel coordinates.