forked from arrayfire/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhistogram.cpp
More file actions
44 lines (38 loc) · 1.15 KB
/
histogram.cpp
File metadata and controls
44 lines (38 loc) · 1.15 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
/*******************************************************
* 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/algorithm.h>
#include <af/compatible.h>
#include <af/array.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);
}
}