forked from hunter-packages/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilters.cpp
More file actions
38 lines (32 loc) · 1.09 KB
/
filters.cpp
File metadata and controls
38 lines (32 loc) · 1.09 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
/*******************************************************
* 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/image.h>
#include <af/array.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 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);
}
}