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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
/**
* @file
* @brief Unit tests for openshot::Frame
* @author Jonathan Thomas <jonathan@openshot.org>
* @author FeRD (Frank Dana) <ferdnyc@gmail.com>
*
* @ref License
*/
/* LICENSE
*
* Copyright (c) 2008-2019 OpenShot Studios, LLC
* <http://www.openshotstudios.com/>. This file is part of
* OpenShot Library (libopenshot), an open-source project dedicated to
* delivering high quality video editing and animation solutions to the
* world. For more information visit <http://www.openshot.org/>.
*
* OpenShot Library (libopenshot) is free software: you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* OpenShot Library (libopenshot) is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <sstream>
#include <memory>
#include <QImage>
#ifdef USE_OPENCV
#define int64 opencv_broken_int
#define uint64 opencv_broken_uint
#include <opencv2/opencv.hpp>
#undef int64
#undef uint64
#endif
#include <catch2/catch.hpp>
#include "Clip.h"
#include "Fraction.h"
#include "Frame.h"
using namespace openshot;
TEST_CASE( "Default_Constructor", "[libopenshot][frame]" )
{
// Create a "blank" default Frame
std::shared_ptr<Frame> f1(new Frame());
REQUIRE(f1 != nullptr); // Test aborts here if we didn't get a Frame
// Check basic default parameters
CHECK(f1->GetHeight() == 1);
CHECK(f1->GetWidth() == 1);
CHECK(f1->SampleRate() == 44100);
CHECK(f1->GetAudioChannelsCount() == 2);
// Should be false until we load or create contents
CHECK(f1->has_image_data == false);
CHECK(f1->has_audio_data == false);
// Calling GetImage() paints a blank frame, by default
std::shared_ptr<QImage> i1 = f1->GetImage();
REQUIRE(i1 != nullptr);
CHECK(f1->has_image_data == true);
CHECK(f1->has_audio_data == false);
}
TEST_CASE( "Data_Access", "[libopenshot][frame]" )
{
// Create a video clip
std::stringstream path;
path << TEST_MEDIA_PATH << "sintel_trailer-720p.mp4";
Clip c1(path.str());
c1.Open();
// Get first frame
std::shared_ptr<Frame> f1 = c1.GetFrame(1);
REQUIRE(f1 != nullptr);
CHECK(f1->number == 1);
CHECK(f1->GetWidth() == 1280);
CHECK(f1->GetHeight() == 720);
}
TEST_CASE( "AddImage_QImage", "[libopenshot][frame]" )
{
// Create a "blank" default Frame
std::shared_ptr<Frame> f1(new Frame());
// Load an image
std::stringstream path;
path << TEST_MEDIA_PATH << "front.png";
auto i1 = std::make_shared<QImage>(QString::fromStdString(path.str()));
REQUIRE(f1 != nullptr); // Test aborts here if we didn't get a Frame
CHECK(i1->isNull() == false);
f1->AddImage(i1);
// Check loaded image parameters
CHECK(f1->GetHeight() == i1->height());
CHECK(f1->GetWidth() == i1->width());
CHECK(f1->has_image_data == true);
}
TEST_CASE( "Copy_Constructor", "[libopenshot][frame]" )
{
// Create a dummy Frame
openshot::Frame f1(1, 800, 600, "#000000");
// Load an image
std::stringstream path;
path << TEST_MEDIA_PATH << "front.png";
auto i1 = std::make_shared<QImage>(QString::fromStdString(path.str()));
CHECK(i1->isNull() == false);
// Add image to f1, then copy f1 to f2
f1.AddImage(i1);
Frame f2 = f1;
CHECK(f1.GetHeight() == f2.GetHeight());
CHECK(f1.GetWidth() == f2.GetWidth());
CHECK(f1.has_image_data == f2.has_image_data);
CHECK(f1.has_audio_data == f2.has_audio_data);
Fraction par1 = f1.GetPixelRatio();
Fraction par2 = f2.GetPixelRatio();
CHECK(par1.num == par2.num);
CHECK(par1.den == par2.den);
CHECK(f1.SampleRate() == f2.SampleRate());
CHECK(f1.GetAudioChannelsCount() == f2.GetAudioChannelsCount());
CHECK(f1.ChannelsLayout() == f2.ChannelsLayout());
CHECK(f1.GetBytes() == f2.GetBytes());
CHECK(f1.GetAudioSamplesCount() == f2.GetAudioSamplesCount());
}
#ifdef USE_OPENCV
TEST_CASE( "Convert_Image", "[libopenshot][opencv][frame]" )
{
// Create a video clip
std::stringstream path;
path << TEST_MEDIA_PATH << "sintel_trailer-720p.mp4";
Clip c1(path.str());
c1.Open();
// Get first frame
auto f1 = c1.GetFrame(1);
// Get first Mat image
cv::Mat cvimage = f1->GetImageCV();
CHECK_FALSE(cvimage.empty());
CHECK(f1->number == 1);
CHECK(f1->GetWidth() == cvimage.cols);
CHECK(f1->GetHeight() == cvimage.rows);
CHECK(cvimage.channels() == 3);
}
#endif
|