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

Function matchTemplate

src/api/cpp/matchTemplate.cpp:16–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace af {
15
16array matchTemplate(const array &searchImg, const array &templateImg,
17 const matchType mType) {
18 af_array out = 0;
19 AF_THROW(
20 af_match_template(&out, searchImg.get(), templateImg.get(), mType));
21 return array(out);
22}
23
24} // namespace af

Callers 2

TESTFunction · 0.50
templateMatchingDemoFunction · 0.50

Calls 3

af_match_templateFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected