| 14 | namespace af { |
| 15 | |
| 16 | array 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 |
no test coverage detected