MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / harris

Function harris

src/api/cpp/harris.cpp:16–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace af {
15
16features harris(const array& in, const unsigned max_corners,
17 const float min_response, const float sigma,
18 const unsigned block_size, const float k_thr) {
19 af_features temp;
20 AF_THROW(af_harris(&temp, in.get(), max_corners, min_response, sigma,
21 block_size, k_thr));
22 return features(temp);
23}
24
25} // namespace af

Callers

nothing calls this directly

Calls 2

af_harrisFunction · 0.50
getMethod · 0.45

Tested by

no test coverage detected