-
Notifications
You must be signed in to change notification settings - Fork 548
Expand file tree
/
Copy pathfast.hpp
More file actions
25 lines (20 loc) · 766 Bytes
/
fast.hpp
File metadata and controls
25 lines (20 loc) · 766 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
/*******************************************************
* Copyright (c) 2014, 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>
unsigned fast(Array<float> &x_out, Array<float> &y_out, Array<float> &score_out,
const Array<T> &in, const float thr, const unsigned arc_length,
const bool non_max, const float feature_ratio,
const unsigned edge);
} // namespace cuda
} // namespace arrayfire