dcv.features.corner.harris

Module implements $(LINK3 https://en.wikipedia.org/wiki/Corner_detection#The_Harris_.26_Stephens_.2F_Plessey_.2F_Shi.E2.80.93Tomasi_corner_detection_algorithms, Harris and Shi-Tomasi) corner detectors.

Members

Functions

calcCornersImpl
void calcCornersImpl(Window window, Detector detector)
Undocumented in source. Be warned that the author may not have intended to support it.
harrisCorners
Slice!(SliceKind.contiguous, [2], OutputType*) harrisCorners(Slice!(inputKind, [2], InputType*) image, uint winSize, float k, float gauss, Slice!(SliceKind.contiguous, [2], OutputType*) prealloc, TaskPool pool)

Calculate per-pixel corner impuls response using Harris corner detector.

shiTomasiCorners
Slice!(SliceKind.contiguous, [2], OutputType*) shiTomasiCorners(Slice!(inputKind, [2], InputType*) image, uint winSize, float gauss, Slice!(SliceKind.contiguous, [2], OutputType*) prealloc, TaskPool pool)

Calculate per-pixel corner impuls response using Shi-Tomasi corner detector.

sumResponse
float[3] sumResponse(float[3] r, Pack pack)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta

Authors

Relja Ljubobratovic

License

$(LINK3 http://www.boost.org/LICENSE_1_0.txt, Boost Software License - Version 1.0).