Implement alpha_blend for YUV420P and YUV420P10. Improve unit test.
authorCarl Hetherington <cth@carlh.net>
Wed, 24 May 2017 22:07:42 +0000 (23:07 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 24 May 2017 22:07:42 +0000 (23:07 +0100)
src/lib/image.cc
src/lib/image.h
test/image_test.cc
test/test.cc
test/test.h

index d1f1fb9d14702873db816e8ef0ef45b8bd8b710e..2511df73ea87bed9638df60e324ea77a0bc24557 100644 (file)
@@ -51,7 +51,7 @@ using boost::shared_ptr;
 using dcp::Size;
 
 int
-Image::line_factor (int n) const
+Image::vertical_factor (int n) const
 {
        if (n == 0) {
                return 1;
@@ -65,11 +65,8 @@ Image::line_factor (int n) const
        return pow (2.0f, d->log2_chroma_h);
 }
 
-/** @param n Component index.
- *  @return Number of samples (i.e. pixels, unless sub-sampled) in each direction for this component.
- */
-dcp::Size
-Image::sample_size (int n) const
+int
+Image::horizontal_factor (int n) const
 {
        int horizontal_factor = 1;
        if (n > 0) {
@@ -79,10 +76,18 @@ Image::sample_size (int n) const
                }
                horizontal_factor = pow (2.0f, d->log2_chroma_w);
        }
+       return horizontal_factor;
+}
 
+/** @param n Component index.
+ *  @return Number of samples (i.e. pixels, unless sub-sampled) in each direction for this component.
+ */
+dcp::Size
+Image::sample_size (int n) const
+{
        return dcp::Size (
-               lrint (ceil (static_cast<double>(size().width) / horizontal_factor)),
-               lrint (ceil (static_cast<double>(size().height) / line_factor (n)))
+               lrint (ceil (static_cast<double>(size().width) / horizontal_factor (n))),
+               lrint (ceil (static_cast<double>(size().height) / vertical_factor (n)))
                );
 }
 
@@ -191,7 +196,7 @@ Image::crop_scale_window (
                   we've cropped all of its Y-channel pixels.
                */
                int const x = lrintf (bytes_per_pixel(c) * crop.left) & ~ ((int) desc->log2_chroma_w);
-               scale_in_data[c] = data()[c] + x + stride()[c] * (crop.top / line_factor(c));
+               scale_in_data[c] = data()[c] + x + stride()[c] * (crop.top / vertical_factor(c));
        }
 
        /* Corner of the image within out_size */
@@ -541,6 +546,39 @@ Image::alpha_blend (shared_ptr<const Image> other, Position<int> position)
                }
                break;
        }
+       case AV_PIX_FMT_YUV420P:
+       case AV_PIX_FMT_YUV420P10:
+       {
+               shared_ptr<Image> yuv = other->scale (other->size(), dcp::YUV_TO_RGB_REC709, _pixel_format, false, false);
+
+               for (int i = 0; i < 3; ++i) {
+                       dcp::Size const tsize = sample_size(i);
+                       dcp::Size const osize = yuv->sample_size(i);
+                       int const tbpp = ceil (bytes_per_pixel(i) / horizontal_factor(i));
+                       int const obpp = ceil (yuv->bytes_per_pixel(i) / yuv->horizontal_factor(i));
+                       int const abpp = other->bytes_per_pixel(0);
+                       start_tx /= horizontal_factor (i);
+                       start_ty /= vertical_factor (i);
+                       start_ox /= yuv->horizontal_factor (i);
+                       start_oy /= yuv->vertical_factor (i);
+                       for (int ty = start_ty, oy = start_oy; ty < tsize.height && oy < osize.height; ++ty, ++oy) {
+                               /* this image */
+                               uint8_t* tp = data()[i] + ty * stride()[i] + start_tx * tbpp;
+                               /* overlay image */
+                               uint8_t* op = yuv->data()[i] + oy * yuv->stride()[i];
+                               /* original RGBA for alpha channel */
+                               uint8_t* ap = other->data()[0] + oy * other->stride()[0];
+                               for (int tx = start_tx, ox = start_ox; tx < tsize.width && ox < osize.width; ++tx, ++ox) {
+                                       float const alpha = float (ap[3]) / 255;
+                                       *tp = *op * alpha + *tp * (1 - alpha);
+                                       tp += tbpp;
+                                       op += obpp;
+                                       ap += abpp;
+                               }
+                       }
+               }
+               break;
+       }
        default:
                throw PixelFormatError ("alpha_blend()", _pixel_format);
        }
index cdad28c20214ff38f71dcce743d19126ac2c36fa..dde42f1bc2add86b228e7d0847a42d50830c0956 100644 (file)
@@ -54,7 +54,8 @@ public:
        bool aligned () const;
 
        int planes () const;
-       int line_factor (int) const;
+       int vertical_factor (int) const;
+       int horizontal_factor (int) const;
        dcp::Size sample_size (int) const;
 
        boost::shared_ptr<Image> scale (dcp::Size out_size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool aligned, bool fast) const;
index 5a39bb066ebf382acaa284823263445804e69a13..6a35be07f315b369073073d13ae0ef61b4981f8f 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
  *  @see test/make_black_test.cc, test/pixel_formats_test.cc
  */
 
-#include <boost/test/unit_test.hpp>
-#include <Magick++.h>
 #include "lib/image.h"
+#include "lib/magick_image_proxy.h"
+#include "test.h"
+#include <Magick++.h>
+#include <boost/test/unit_test.hpp>
 #include <iostream>
 
 using std::string;
@@ -133,58 +135,53 @@ BOOST_AUTO_TEST_CASE (compact_image_test)
        delete u;
 }
 
-/** Test Image::alpha_blend */
-BOOST_AUTO_TEST_CASE (alpha_blend_test)
+void
+alpha_blend_test_one (AVPixelFormat format, string suffix)
 {
-       int const stride = 48 * 4;
+       shared_ptr<MagickImageProxy> proxy (new MagickImageProxy (private_data / "prophet_frame.tiff"));
+       shared_ptr<Image> raw = proxy->image();
+       shared_ptr<Image> background = raw->scale (raw->size(), dcp::YUV_TO_RGB_REC709, format, true, false);
 
-       shared_ptr<Image> A (new Image (AV_PIX_FMT_RGBA, dcp::Size (48, 48), false));
-       A->make_black ();
-       uint8_t* a = A->data()[0];
+       shared_ptr<Image> overlay (new Image (AV_PIX_FMT_RGBA, raw->size(), true));
+       overlay->make_transparent ();
 
-       for (int y = 0; y < 48; ++y) {
-               uint8_t* p = a + y * stride;
-               for (int x = 0; x < 16; ++x) {
+       for (int y = 0; y < 128; ++y) {
+               uint8_t* p = overlay->data()[0] + y * overlay->stride()[0];
+               for (int x = 0; x < 128; ++x) {
                        p[x * 4] = 255;
-                       p[(x + 16) * 4 + 1] = 255;
-                       p[(x + 32) * 4 + 2] = 255;
+                       p[x * 4 + 3] = 255;
                }
        }
 
-       shared_ptr<Image> B (new Image (AV_PIX_FMT_RGBA, dcp::Size (48, 48), true));
-       B->make_transparent ();
-       uint8_t* b = B->data()[0];
-
-       for (int y = 32; y < 48; ++y) {
-               uint8_t* p = b + y * stride;
-               for (int x = 0; x < 48; ++x) {
-                       p[x * 4] = 255;
+       for (int y = 128; y < 256; ++y) {
+               uint8_t* p = overlay->data()[0] + y * overlay->stride()[0];
+               for (int x = 0; x < 128; ++x) {
                        p[x * 4 + 1] = 255;
-                       p[x * 4 + 2] = 255;
                        p[x * 4 + 3] = 255;
                }
        }
 
-       A->alpha_blend (B, Position<int> (0, 0));
-
-       for (int y = 0; y < 32; ++y) {
-               uint8_t* p = a + y * stride;
-               for (int x = 0; x < 16; ++x) {
-                       BOOST_CHECK_EQUAL (p[x * 4], 255);
-                       BOOST_CHECK_EQUAL (p[(x + 16) * 4 + 1], 255);
-                       BOOST_CHECK_EQUAL (p[(x + 32) * 4 + 2], 255);
+       for (int y = 256; y < 384; ++y) {
+               uint8_t* p = overlay->data()[0] + y * overlay->stride()[0];
+               for (int x = 0; x < 128; ++x) {
+                       p[x * 4 + 2] = 255;
+                       p[x * 4 + 3] = 255;
                }
        }
 
-       for (int y = 32; y < 48; ++y) {
-               uint8_t* p = a + y * stride;
-               for (int x = 0; x < 48; ++x) {
-                       BOOST_CHECK_EQUAL (p[x * 4], 255);
-                       BOOST_CHECK_EQUAL (p[x * 4 + 1], 255);
-                       BOOST_CHECK_EQUAL (p[x * 4 + 2], 255);
-                       BOOST_CHECK_EQUAL (p[x * 4 + 3], 255);
-               }
-       }
+       background->alpha_blend (overlay, Position<int> (0, 0));
+
+       shared_ptr<Image> save = background->scale (background->size(), dcp::YUV_TO_RGB_REC709, AV_PIX_FMT_RGB24, false, false);
+
+       write_image (save, "build/test/image_test_" + suffix + ".png", "RGB");
+       check_image ("build/test/image_test_" + suffix + ".png", private_data / ("image_test_" + suffix + ".png"));
+}
+
+/** Test Image::alpha_blend */
+BOOST_AUTO_TEST_CASE (alpha_blend_test)
+{
+       alpha_blend_test_one (AV_PIX_FMT_RGBA, "rgba");
+       alpha_blend_test_one (AV_PIX_FMT_YUV420P, "yuv420p");
 }
 
 /** Test merge (list<PositionImage>) with a single image */
index b8d7070f8b960c6f89ee6bc4c30993f8dba662a0..85c36c16c0038910242def9a57ed7ed05ed71e84 100644 (file)
@@ -162,6 +162,22 @@ check_audio_file (boost::filesystem::path ref, boost::filesystem::path check)
        }
 }
 
+void
+check_image (boost::filesystem::path ref, boost::filesystem::path check)
+{
+#ifdef DCPOMATIC_IMAGE_MAGICK
+       using namespace MagickCore;
+#else
+       using namespace MagickLib;
+#endif
+
+       Magick::Image ref_image;
+       ref_image.read (ref.string ());
+       Magick::Image check_image;
+       check_image.read (check.string ());
+       DCPOMATIC_ASSERT (ref_image.compare (check_image));
+}
+
 void
 check_file (boost::filesystem::path ref, boost::filesystem::path check)
 {
@@ -333,7 +349,7 @@ wait_for_jobs ()
 }
 
 void
-write_image (shared_ptr<const Image> image, boost::filesystem::path file)
+write_image (shared_ptr<const Image> image, boost::filesystem::path file, string format)
 {
 #ifdef DCPOMATIC_IMAGE_MAGICK
                using namespace MagickCore;
@@ -341,6 +357,6 @@ write_image (shared_ptr<const Image> image, boost::filesystem::path file)
                using namespace MagickLib;
 #endif
 
-       Magick::Image m (image->size().width, image->size().height, "ARGB", CharPixel, (void *) image->data()[0]);
+       Magick::Image m (image->size().width, image->size().height, format.c_str(), CharPixel, (void *) image->data()[0]);
        m.write (file.string ());
 }
index 1593b3a03f1e755024e16e4c07eb3bf6465c5363..8ac026e66d707227b5c5529ff5bfebbe14378bd7 100644 (file)
@@ -32,5 +32,6 @@ extern void check_file (boost::filesystem::path ref, boost::filesystem::path che
 extern void check_audio_file (boost::filesystem::path ref, boost::filesystem::path check);
 extern void check_xml (boost::filesystem::path, boost::filesystem::path, std::list<std::string>);
 extern void check_file (boost::filesystem::path, boost::filesystem::path);
+extern void check_image (boost::filesystem::path, boost::filesystem::path);
 extern boost::filesystem::path test_film_dir (std::string);
-extern void write_image (boost::shared_ptr<const Image> image, boost::filesystem::path file);
+extern void write_image (boost::shared_ptr<const Image> image, boost::filesystem::path file, std::string format);