forked from arrayfire/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorb.cpp
More file actions
33 lines (28 loc) · 931 Bytes
/
orb.cpp
File metadata and controls
33 lines (28 loc) · 931 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
27
28
29
30
31
32
33
/*******************************************************
* 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 <af/vision.h>
#include <af/array.h>
#include "error.hpp"
namespace af
{
void orb(features& feat, array& desc, const array& in,
const float fast_thr, const unsigned max_feat,
const float scl_fctr, const unsigned levels,
const bool blur_img)
{
af_features temp_feat;
af_array temp_desc = 0;
AF_THROW(af_orb(&temp_feat, &temp_desc, in.get(), fast_thr,
max_feat, scl_fctr, levels, blur_img));
dim_t num = 0;
AF_THROW(af_get_features_num(&num, temp_feat));
feat = features(temp_feat);
desc = array(temp_desc);
}
}