forked from arrayfire/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilters.cpp
More file actions
52 lines (44 loc) · 1.63 KB
/
filters.cpp
File metadata and controls
52 lines (44 loc) · 1.63 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
/*******************************************************
* 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/array.h>
#include <af/image.h>
#include <af/signal.h>
#include "error.hpp"
namespace af {
array medfilt(const array& in, const dim_t wind_length, const dim_t wind_width,
const borderType edge_pad) {
af_array out = 0;
AF_THROW(af_medfilt(&out, in.get(), wind_length, wind_width, edge_pad));
return array(out);
}
array medfilt1(const array& in, const dim_t wind_width,
const borderType edge_pad) {
af_array out = 0;
AF_THROW(af_medfilt1(&out, in.get(), wind_width, edge_pad));
return array(out);
}
array medfilt2(const array& in, const dim_t wind_length, const dim_t wind_width,
const borderType edge_pad) {
af_array out = 0;
AF_THROW(af_medfilt2(&out, in.get(), wind_length, wind_width, edge_pad));
return array(out);
}
array minfilt(const array& in, const dim_t wind_length, const dim_t wind_width,
const borderType edge_pad) {
af_array out = 0;
AF_THROW(af_minfilt(&out, in.get(), wind_length, wind_width, edge_pad));
return array(out);
}
array maxfilt(const array& in, const dim_t wind_length, const dim_t wind_width,
const borderType edge_pad) {
af_array out = 0;
AF_THROW(af_maxfilt(&out, in.get(), wind_length, wind_width, edge_pad));
return array(out);
}
} // namespace af