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
|
/*******************************************************
* Copyright (c) 2015, 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 <af/traits.hpp>
#include <af/vision.h>
#include <string>
#include <vector>
#include <testHelpers.hpp>
template<typename T>
class DOG : public ::testing::Test
{
public:
virtual void SetUp() {}
};
// create a list of types to be tested
typedef ::testing::Types<float, double, int, uint, char, uchar, short, ushort> TestTypes;
// register the type list
TYPED_TEST_CASE(DOG, TestTypes);
TYPED_TEST(DOG, Basic)
{
if (noDoubleTests<TypeParam>()) return;
af::dim4 iDims(512, 512, 1, 1);
af::array in = af::constant(1, iDims, (af_dtype)af::dtype_traits<float>::af_type);
/* calculate DOG using ArrayFire functions */
af::array k1 = af::gaussianKernel(3, 3);
af::array k2 = af::gaussianKernel(2, 2);
af::array smth1 = af::convolve2(in, k1);
af::array smth2 = af::convolve2(in, k2);
af::array diff = smth1 - smth2;
/* calcuate DOG using new function */
af::array out= af::dog(in, 3, 2);
/* compare both the values */
float accumErr = af::sum<float>(out-diff);
EXPECT_EQ(true, accumErr<1.0e-2);
}
TYPED_TEST(DOG, Batch)
{
if (noDoubleTests<TypeParam>()) return;
af::dim4 iDims(512, 512, 3, 1);
af::array in = af::constant(1, iDims, (af_dtype)af::dtype_traits<float>::af_type);
/* calculate DOG using ArrayFire functions */
af::array k1 = af::gaussianKernel(3, 3);
af::array k2 = af::gaussianKernel(2, 2);
af::array smth1 = af::convolve2(in, k1);
af::array smth2 = af::convolve2(in, k2);
af::array diff = smth1 - smth2;
/* calcuate DOG using new function */
af::array out= af::dog(in, 3, 2);
/* compare both the values */
float accumErr = af::sum<float>(out-diff);
EXPECT_EQ(true, accumErr<1.0e-2);
}
TYPED_TEST(DOG, InvalidArray)
{
af::array in = af::randu(512);
EXPECT_THROW(af::dog(in, 3, 2),
af::exception);
}
|