forked from arrayfire/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathharris.cpp
More file actions
95 lines (81 loc) · 3.39 KB
/
harris.cpp
File metadata and controls
95 lines (81 loc) · 3.39 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*******************************************************
* 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 <backend.hpp>
#include <common/err_common.hpp>
#include <features.hpp>
#include <handle.hpp>
#include <harris.hpp>
#include <af/defines.h>
#include <af/dim4.hpp>
#include <af/features.h>
#include <af/vision.h>
#include <cmath>
using af::dim4;
using detail::Array;
using detail::createEmptyArray;
using detail::createValueArray;
using std::floor;
template<typename T, typename convAccT>
static af_features harris(af_array const &in, const unsigned max_corners,
const float min_response, const float sigma,
const unsigned filter_len, const float k_thr) {
Array<float> x = createEmptyArray<float>(dim4());
Array<float> y = createEmptyArray<float>(dim4());
Array<float> score = createEmptyArray<float>(dim4());
af_features_t feat;
feat.n = harris<T, convAccT>(x, y, score, getArray<T>(in), max_corners,
min_response, sigma, filter_len, k_thr);
Array<float> orientation = createValueArray<float>(feat.n, 0.0);
Array<float> size = createValueArray<float>(feat.n, 1.0);
feat.x = getHandle(x);
feat.y = getHandle(y);
feat.score = getHandle(score);
feat.orientation = getHandle(orientation);
feat.size = getHandle(size);
return getFeaturesHandle(feat);
}
af_err af_harris(af_features *out, const af_array in,
const unsigned max_corners, const float min_response,
const float sigma, const unsigned block_size,
const float k_thr) {
try {
const ArrayInfo &info = getInfo(in);
dim4 dims = info.dims();
dim_t in_ndims = dims.ndims();
unsigned filter_len = (block_size == 0)
? static_cast<unsigned>(floor(6.f * sigma))
: block_size;
if (block_size == 0 && filter_len % 2 == 0) { filter_len--; }
const unsigned edge =
(block_size > 0) ? block_size / 2 : filter_len / 2;
DIM_ASSERT(1, (in_ndims == 2));
ARG_ASSERT(1, (dims[0] >= (dim_t)(2 * edge + 1) ||
dims[1] >= (dim_t)(2 * edge + 1)));
ARG_ASSERT(3, (max_corners > 0) || (min_response > 0.0f));
ARG_ASSERT(7, (k_thr >= 0.01f));
// Upper limits for sigma and block_size are due to convolve2 template
// at maximum length of 31 elements for the filter in OpenCL
ARG_ASSERT(4, (block_size > 2) || (sigma >= 0.5f && sigma <= 5.f));
ARG_ASSERT(5, (block_size <= 32));
af_dtype type = info.getType();
switch (type) {
case f64:
*out = harris<double, double>(in, max_corners, min_response,
sigma, filter_len, k_thr);
break;
case f32:
*out = harris<float, float>(in, max_corners, min_response,
sigma, filter_len, k_thr);
break;
default: TYPE_ERROR(1, type);
}
}
CATCHALL;
return AF_SUCCESS;
}