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

Function canny

src/api/cpp/canny.cpp:15–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14namespace af {
15array canny(const array& in, const cannyThreshold ctType, const float ltr,
16 const float htr, const unsigned sW, const bool isFast) {
17 af_array temp = 0;
18 AF_THROW(af_canny(&temp, in.get(), ctType, ltr, htr, sW, isFast));
19 return array(temp);
20}
21} // namespace af

Callers 3

TESTFunction · 0.85
cannyImageOtsuBatchTestFunction · 0.85
edgeFunction · 0.85

Calls 3

af_cannyFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected