forked from arrayfire/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrgb_gray.cpp
More file actions
31 lines (26 loc) · 859 Bytes
/
rgb_gray.cpp
File metadata and controls
31 lines (26 loc) · 859 Bytes
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
/*******************************************************
* 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 rgb2gray(const array& in, const float rPercent, const float gPercent, const float bPercent)
{
af_array temp = 0;
AF_THROW(af_rgb2gray(&temp, in.get(), rPercent, gPercent, bPercent));
return array(temp);
}
array gray2rgb(const array& in, const float rFactor, const float gFactor, const float bFactor)
{
af_array temp = 0;
AF_THROW(af_gray2rgb(&temp, in.get(), rFactor, gFactor, bFactor));
return array(temp);
}
}