/* FasTC * Copyright (c) 2013 University of North Carolina at Chapel Hill. * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for educational, research, and non-profit purposes, without * fee, and without a written agreement is hereby granted, provided that the * above copyright notice, this paragraph, and the following four paragraphs * appear in all copies. * * Permission to incorporate this software into commercial products may be * obtained by contacting the authors or the Office of Technology Development * at the University of North Carolina at Chapel Hill . * * This software program and documentation are copyrighted by the University of * North Carolina at Chapel Hill. The software program and documentation are * supplied "as is," without any accompanying services from the University of * North Carolina at Chapel Hill or the authors. The University of North * Carolina at Chapel Hill and the authors do not warrant that the operation of * the program will be uninterrupted or error-free. The end-user understands * that the program was developed for research purposes and is advised not to * rely exclusively on the program for any reason. * * IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL OR THE * AUTHORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, * OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF * THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF NORTH CAROLINA * AT CHAPEL HILL OR THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. * * THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS SPECIFICALLY * DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND ANY * STATUTORY WARRANTY OF NON-INFRINGEMENT. THE SOFTWARE PROVIDED HEREUNDER IS ON * AN "AS IS" BASIS, AND THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND * THE AUTHORS HAVE NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, * ENHANCEMENTS, OR MODIFICATIONS. * * Please send all BUG REPORTS to . * * The authors may be contacted via: * * Pavel Krajcevski * Dept of Computer Science * 201 S Columbia St * Frederick P. Brooks, Jr. Computer Science Bldg * Chapel Hill, NC 27599-3175 * USA * * */ #include "gtest/gtest.h" #include "Image.h" #include "Pixel.h" #include "TestUtils.h" #include TEST(Image, NonSpecificConstructor) { PVRTCC::Pixel p; PVRTCC::Image img (4, 4); for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { EXPECT_TRUE(img(i, j) == p); } } } TEST(Image, SpecificConstructor) { PVRTCC::Pixel pxs[16]; for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { pxs[j*4 + i].R() = i; pxs[j*4 + i].G() = j; } } PVRTCC::Image img(4, 4, pxs); for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { EXPECT_TRUE(img(i, j) == pxs[j*4 + i]); } } } TEST(Image, CopyConstructor) { PVRTCC::Pixel pxs[16]; for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { pxs[j*4 + i].R() = i; pxs[j*4 + i].G() = j; } } PVRTCC::Image img(4, 4, pxs); PVRTCC::Image img2(img); for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { EXPECT_TRUE(img2(i, j) == pxs[j*4 + i]); } } } TEST(Image, AssignmentOperator) { PVRTCC::Pixel pxs[16]; for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { pxs[j*4 + i].R() = i; pxs[j*4 + i].G() = j; } } PVRTCC::Image img(4, 4, pxs); PVRTCC::Image img2 = img; for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { EXPECT_TRUE(img2(i, j) == pxs[j*4 + i]); } } } TEST(Image, BilinearUpscale) { PVRTCC::Pixel pxs[16]; for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { pxs[j*4 + i].R() = i*2; pxs[j*4 + i].G() = j*2; } } PVRTCC::Image img(4, 4, pxs); img.BilinearUpscale(1, 1); EXPECT_EQ(img.GetWidth(), static_cast(8)); EXPECT_EQ(img.GetHeight(), static_cast(8)); for(uint32 i = 0; i < img.GetWidth(); i++) { for(uint32 j = 0; j < img.GetHeight(); j++) { if(i == 0) { EXPECT_EQ(img(i, j).R(), i); } else { EXPECT_EQ(img(i, j).R(), i-1); } if(j == 0) { EXPECT_EQ(img(i, j).G(), j); } else { EXPECT_EQ(img(i, j).G(), j-1); } } } } TEST(Image, BilinearUpscaleMaintainsPixels) { srand(0xabd1ca7e); const uint32 w = 4; const uint32 h = 4; PVRTCC::Pixel pxs[16]; for(int i = 0; i < w; i++) { for(int j = 0; j < h; j++) { pxs[j*w + i].R() = rand() % 256; pxs[j*w + i].G() = rand() % 256; pxs[j*w + i].B() = rand() % 256; pxs[j*w + i].A() = rand() % 256; } } PVRTCC::Image img(w, h, pxs); img.BilinearUpscale(2, 2); EXPECT_EQ(img.GetWidth(), w << 2); EXPECT_EQ(img.GetHeight(), h << 2); for(uint32 i = 2; i < img.GetWidth(); i+=4) { for(uint32 j = 2; j < img.GetHeight(); j+=4) { PVRTCC::Pixel p = img(i, j); uint32 idx = ((j - 2) / 4) * w + ((i-2)/4); EXPECT_EQ(PixelPrinter(p.PackRGBA()), PixelPrinter(pxs[idx].PackRGBA())); } } } TEST(Image, NonuniformBilinearUpscale) { const uint32 kWidth = 4; const uint32 kHeight = 8; PVRTCC::Pixel pxs[kWidth * kHeight]; for(int i = 0; i < kWidth; i++) { for(int j = 0; j < kHeight; j++) { pxs[j*kWidth + i].R() = i*4; pxs[j*kWidth + i].G() = j*2; } } PVRTCC::Image img(kHeight, kWidth, pxs); img.BilinearUpscale(2, 1); EXPECT_EQ(img.GetWidth(), static_cast(kWidth << 2)); EXPECT_EQ(img.GetHeight(), static_cast(kHeight << 1)); for(uint32 i = 0; i < img.GetWidth(); i++) { for(uint32 j = 0; j < img.GetHeight(); j++) { if(i <= 2) { EXPECT_EQ(img(i, j).R(), 0); } else if(i == 15) { EXPECT_EQ(img(i, j).R(), 12); } else { EXPECT_EQ(img(i, j).R(), i-2); } if(j == 0) { EXPECT_EQ(img(i, j).G(), 0); } else { EXPECT_EQ(img(i, j).G(), j-1); } } } } TEST(Image, BilinearUpscaleWrapped) { PVRTCC::Pixel pxs[16]; // Make sure that our bit depth is less than full... for(int i = 0; i < 16; i++) { const uint8 newBitDepth[4] = { 6, 5, 6, 5 }; pxs[i].ChangeBitDepth(newBitDepth); } for(int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { pxs[j*4 + i].R() = i*4; pxs[j*4 + i].G() = j*4; } } PVRTCC::Image img(4, 4, pxs); img.BilinearUpscale(2, 2, PVRTCC::eWrapMode_Wrap); EXPECT_EQ(img.GetWidth(), static_cast(16)); EXPECT_EQ(img.GetHeight(), static_cast(16)); for(uint32 i = 0; i < img.GetWidth(); i++) { for(uint32 j = 0; j < img.GetHeight(); j++) { const PVRTCC::Pixel &p = img(i, j); // First make sure that the bit depth didn't change uint8 depth[4]; p.GetBitDepth(depth); EXPECT_EQ(depth[0], 6); EXPECT_EQ(depth[1], 5); EXPECT_EQ(depth[2], 6); EXPECT_EQ(depth[3], 5); // Now make sure that the values are correct. if(i == 0) { EXPECT_EQ(p.R(), 6); } else if(i == 1) { EXPECT_EQ(p.R(), 3); } else if(i == 15) { EXPECT_EQ(p.R(), 9); } else { EXPECT_EQ(p.R(), i-2); } if(j == 0) { EXPECT_EQ(p.G(), 6); } else if(j == 1) { EXPECT_EQ(p.G(), 3); } else if(j == 15) { EXPECT_EQ(p.G(), 9); } else { EXPECT_EQ(p.G(), j-2); } } } } TEST(Image, ChangeBitDepth) { PVRTCC::Image img(4, 4); uint8 testDepth[4] = { 2, 3, 5, 0 }; img.ChangeBitDepth(testDepth); uint8 depth[4]; for(uint32 j = 0; j < img.GetHeight(); j++) { for(uint32 i = 0; i < img.GetWidth(); i++) { img(i, j).GetBitDepth(depth); for(int d = 0; d < 4; d++) { EXPECT_EQ(testDepth[d], depth[d]); } } } }