41 std::span<const float> gray, uint32_t w, uint32_t
h,
42 float k = 0.04F,
float sigma = 1.0F);
68 std::span<const float> gray,
69 std::span<float> dx, std::span<float> dy, std::span<float> tmp,
70 std::span<float> ixx, std::span<float> iyy, std::span<float> ixy,
71 std::span<float> sxx, std::span<float> syy, std::span<float> sxy,
73 uint32_t w, uint32_t
h,
75 std::span<const float> kern);
93[[nodiscard]] MAYAFLUX_API std::vector<Keypoint>
extract_peaks(
94 std::span<const float> response, uint32_t w, uint32_t
h,
std::vector< Keypoint > extract_peaks(std::span< const float > response, uint32_t w, uint32_t h, float threshold, uint32_t nms_radius)
Extract peaks from a response map via non-maximum suppression.
std::vector< float > harris_response(std::span< const float > gray, uint32_t w, uint32_t h, float k, float sigma)
Compute the Harris corner response map.