-
Notifications
You must be signed in to change notification settings - Fork 549
Expand file tree
/
Copy pathhistogram.cpp
More file actions
42 lines (36 loc) · 1.18 KB
/
histogram.cpp
File metadata and controls
42 lines (36 loc) · 1.18 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
/*******************************************************
* 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/algorithm.h>
#include <af/array.h>
#include <af/compatible.h>
#include <af/image.h>
#include "error.hpp"
namespace af {
array histogram(const array& in, const unsigned nbins, const double minval,
const double maxval) {
af_array out = 0;
AF_THROW(af_histogram(&out, in.get(), nbins, minval, maxval));
return array(out);
}
array histogram(const array& in, const unsigned nbins) {
af_array out = 0;
if (in.numdims() == 0) { return in; }
AF_THROW(
af_histogram(&out, in.get(), nbins, min<double>(in), max<double>(in)));
return array(out);
}
array histequal(const array& in, const array& hist) {
return histEqual(in, hist);
}
array histEqual(const array& in, const array& hist) {
af_array temp = 0;
AF_THROW(af_hist_equal(&temp, in.get(), hist.get()));
return array(temp);
}
} // namespace af