-
Notifications
You must be signed in to change notification settings - Fork 548
Expand file tree
/
Copy pathharris.hpp
More file actions
26 lines (21 loc) · 816 Bytes
/
harris.hpp
File metadata and controls
26 lines (21 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*******************************************************
* Copyright (c) 2015, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#include <Array.hpp>
#include <af/features.h>
using af::features;
namespace arrayfire {
namespace cuda {
template<typename T, typename convAccT>
unsigned harris(Array<float> &x_out, Array<float> &y_out,
Array<float> &score_out, const Array<T> &in,
const unsigned max_corners, const float min_response,
const float sigma, const unsigned filter_len,
const float k_thr);
} // namespace cuda
} // namespace arrayfire