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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*******************************************************
* 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 <gtest/gtest.h>
#include <arrayfire.h>
#include <af/dim4.hpp>
#include <string>
#include <vector>
#include <testHelpers.hpp>
using std::string;
using std::vector;
TEST(hsv_rgb, InvalidArray)
{
vector<float> in(100, 1);
af::dim4 dims(100);
af::array input(dims, &(in.front()));
try {
af::array output = af::hsv2rgb(input);
ASSERT_EQ(true, false);
} catch(af::exception) {
ASSERT_EQ(true, true);
return;
}
}
TEST(hsv2rgb, CPP)
{
vector<af::dim4> numDims;
vector<vector<float> > in;
vector<vector<float> > tests;
readTestsFromFile<float,float>(string(TEST_DIR"/hsv_rgb/hsv2rgb.test"), numDims, in, tests);
af::dim4 dims = numDims[0];
af::array input(dims, &(in[0].front()));
af::array output = af::hsv2rgb(input);
float *outData = new float[dims.elements()];
output.host((void*)outData);
vector<float> currGoldBar = tests[0];
size_t nElems = currGoldBar.size();
for (size_t elIter=0; elIter<nElems; ++elIter) {
ASSERT_NEAR(currGoldBar[elIter], outData[elIter], 1.0e-3)<< "at: " << elIter<< std::endl;
}
// cleanup
delete[] outData;
}
TEST(rgb2hsv, CPP)
{
vector<af::dim4> numDims;
vector<vector<float> > in;
vector<vector<float> > tests;
readTestsFromFile<float,float>(string(TEST_DIR"/hsv_rgb/rgb2hsv.test"), numDims, in, tests);
af::dim4 dims = numDims[0];
af::array input(dims, &(in[0].front()));
af::array output = af::rgb2hsv(input);
float *outData = new float[dims.elements()];
output.host((void*)outData);
vector<float> currGoldBar = tests[0];
size_t nElems = currGoldBar.size();
for (size_t elIter=0; elIter<nElems; ++elIter) {
ASSERT_NEAR(currGoldBar[elIter], outData[elIter], 1.0e-3)<< "at: " << elIter<< std::endl;
}
// cleanup
delete[] outData;
}
|