summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--TO_PORT1
-rw-r--r--cscript2
-rw-r--r--src/lib/colour_conversion.cc82
-rw-r--r--src/lib/config.cc4
-rw-r--r--src/lib/image.cc32
-rw-r--r--src/lib/image.h6
-rw-r--r--src/lib/j2k_image_proxy.cc4
-rw-r--r--src/lib/player.cc1
-rw-r--r--src/lib/player_video.cc7
-rw-r--r--src/tools/dcpomatic.cc4
-rw-r--r--src/wx/about_dialog.cc3
-rw-r--r--src/wx/colour_conversion_editor.cc272
-rw-r--r--src/wx/colour_conversion_editor.h20
-rw-r--r--src/wx/film_viewer.cc8
-rw-r--r--test/colour_conversion_test.cc38
-rw-r--r--test/image_test.cc6
-rw-r--r--test/make_black_test.cc2
18 files changed, 401 insertions, 98 deletions
diff --git a/ChangeLog b/ChangeLog
index 05a1738a0..183ebc341 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2015-04-22 c.hetherington <cth@carlh.net>
+
+ * Add P3 colour conversion preset.
+
+ * Hand-apply all changes relating to colour specification
+ as chromaticity.
+
2015-04-20 Carl Hetherington <cth@carlh.net>
* Hand-apply 47770097cf6a5d7dbbdded8977da5f3de53dfd33;
diff --git a/TO_PORT b/TO_PORT
index 28c4f8152..161a1e4e5 100644
--- a/TO_PORT
+++ b/TO_PORT
@@ -1,4 +1,3 @@
-Colour conversion fixes between 1.78.1 and 1.78.2
291179175729b62e17a9c322cd27ae134d1310d9
8d92cce7d2885afa13ee4cb6f546dbf43942124b
diff --git a/cscript b/cscript
index dc68a4f25..f3387e78a 100644
--- a/cscript
+++ b/cscript
@@ -156,7 +156,7 @@ def make_control(debian_version, bits, filename, debug):
def dependencies(target):
return (('ffmpeg-cdist', 'f69bb08'),
- ('libdcp', '3c88524'),
+ ('libdcp', 'fa1dddf'),
('libsub', 'f66b11f'))
def build(target, options):
diff --git a/src/lib/colour_conversion.cc b/src/lib/colour_conversion.cc
index 4bf84281d..3c076b030 100644
--- a/src/lib/colour_conversion.cc
+++ b/src/lib/colour_conversion.cc
@@ -22,6 +22,7 @@
#include "util.h"
#include "md5_digester.h"
#include "raw_convert.h"
+#include <dcp/chromaticity.h>
#include <dcp/colour_matrix.h>
#include <dcp/gamma_transfer_function.h>
#include <dcp/modified_gamma_transfer_function.h>
@@ -61,10 +62,9 @@ ColourConversion::ColourConversion (cxml::NodePtr node, int version)
cxml::ConstNodePtr in_node = node->node_child ("InputTransferFunction");
string in_type = in_node->string_child ("Type");
if (in_type == "Gamma") {
- _in.reset (new dcp::GammaTransferFunction (false, in_node->number_child<double> ("Gamma")));
+ _in.reset (new dcp::GammaTransferFunction (in_node->number_child<double> ("Gamma")));
} else if (in_type == "ModifiedGamma") {
_in.reset (new dcp::ModifiedGammaTransferFunction (
- false,
in_node->number_child<double> ("Power"),
in_node->number_child<double> ("Threshold"),
in_node->number_child<double> ("A"),
@@ -77,20 +77,46 @@ ColourConversion::ColourConversion (cxml::NodePtr node, int version)
/* Version 1.x */
if (node->bool_child ("InputGammaLinearised")) {
- _in.reset (new dcp::ModifiedGammaTransferFunction (false, node->number_child<float> ("InputGamma"), 0.04045, 0.055, 12.92));
+ _in.reset (new dcp::ModifiedGammaTransferFunction (node->number_child<float> ("InputGamma"), 0.04045, 0.055, 12.92));
} else {
- _in.reset (new dcp::GammaTransferFunction (false, node->number_child<float> ("InputGamma")));
+ _in.reset (new dcp::GammaTransferFunction (node->number_child<float> ("InputGamma")));
}
}
+ _yuv_to_rgb = static_cast<dcp::YUVToRGB> (node->optional_number_child<int>("YUVToRGB").get_value_or (dcp::YUV_TO_RGB_REC601));
+
list<cxml::NodePtr> m = node->node_children ("Matrix");
- for (list<cxml::NodePtr>::iterator i = m.begin(); i != m.end(); ++i) {
- int const ti = (*i)->number_attribute<int> ("i");
- int const tj = (*i)->number_attribute<int> ("j");
- _matrix(ti, tj) = raw_convert<double> ((*i)->content ());
- }
+ if (!m.empty ()) {
+ /* Read in old <Matrix> nodes and convert them to chromaticities */
+ boost::numeric::ublas::matrix<double> C (3, 3);
+ for (list<cxml::NodePtr>::iterator i = m.begin(); i != m.end(); ++i) {
+ int const ti = (*i)->number_attribute<int> ("i");
+ int const tj = (*i)->number_attribute<int> ("j");
+ C(ti, tj) = raw_convert<double> ((*i)->content ());
+ }
+
+ double const rd = C(0, 0) + C(1, 0) + C(2, 0);
+ _red = dcp::Chromaticity (C(0, 0) / rd, C(1, 0) / rd);
+ double const gd = C(0, 1) + C(1, 1) + C(2, 1);
+ _green = dcp::Chromaticity (C(0, 1) / gd, C(1, 1) / gd);
+ double const bd = C(0, 2) + C(1, 2) + C(2, 2);
+ _blue = dcp::Chromaticity (C(0, 2) / bd, C(1, 2) / bd);
+ double const wd = C(0, 0) + C(0, 1) + C(0, 2) + C(1, 0) + C(1, 1) + C(1, 2) + C(2, 0) + C(2, 1) + C(2, 2);
+ _white = dcp::Chromaticity ((C(0, 0) + C(0, 1) + C(0, 2)) / wd, (C(1, 0) + C(1, 1) + C(1, 2)) / wd);
+ } else {
+ /* New-style chromaticities */
+ _red = dcp::Chromaticity (node->number_child<double> ("RedX"), node->number_child<double> ("RedY"));
+ _green = dcp::Chromaticity (node->number_child<double> ("GreenX"), node->number_child<double> ("GreenY"));
+ _blue = dcp::Chromaticity (node->number_child<double> ("BlueX"), node->number_child<double> ("BlueY"));
+ _white = dcp::Chromaticity (node->number_child<double> ("WhiteX"), node->number_child<double> ("WhiteY"));
+ if (node->optional_node_child ("AdjustedWhiteX")) {
+ _adjusted_white = dcp::Chromaticity (
+ node->number_child<double> ("AdjustedWhiteX"), node->number_child<double> ("AdjustedWhiteY")
+ );
+ }
+ }
- _out.reset (new dcp::GammaTransferFunction (true, node->number_child<double> ("OutputGamma")));
+ _out.reset (new dcp::GammaTransferFunction (node->number_child<double> ("OutputGamma")));
}
boost::optional<ColourConversion>
@@ -120,14 +146,17 @@ ColourConversion::as_xml (xmlpp::Node* node) const
in_node->add_child("B")->add_child_text (raw_convert<string> (tf->B ()));
}
- boost::numeric::ublas::matrix<double> matrix = _matrix;
- for (int i = 0; i < 3; ++i) {
- for (int j = 0; j < 3; ++j) {
- xmlpp::Element* m = node->add_child("Matrix");
- m->set_attribute ("i", raw_convert<string> (i));
- m->set_attribute ("j", raw_convert<string> (j));
- m->add_child_text (raw_convert<string> (matrix (i, j)));
- }
+ node->add_child("RedX")->add_child_text (raw_convert<string> (_red.x));
+ node->add_child("RedY")->add_child_text (raw_convert<string> (_red.y));
+ node->add_child("GreenX")->add_child_text (raw_convert<string> (_green.x));
+ node->add_child("GreenY")->add_child_text (raw_convert<string> (_green.y));
+ node->add_child("BlueX")->add_child_text (raw_convert<string> (_blue.x));
+ node->add_child("BlueY")->add_child_text (raw_convert<string> (_blue.y));
+ node->add_child("WhiteX")->add_child_text (raw_convert<string> (_white.x));
+ node->add_child("WhiteY")->add_child_text (raw_convert<string> (_white.y));
+ if (_adjusted_white) {
+ node->add_child("AdjustedWhiteX")->add_child_text (raw_convert<string> (_adjusted_white.get().x));
+ node->add_child("AdjustedWhiteY")->add_child_text (raw_convert<string> (_adjusted_white.get().y));
}
node->add_child("OutputGamma")->add_child_text (raw_convert<string> (dynamic_pointer_cast<const dcp::GammaTransferFunction> (_out)->gamma ()));
@@ -165,11 +194,18 @@ ColourConversion::identifier () const
digester.add (tf->B ());
}
- boost::numeric::ublas::matrix<double> matrix = _matrix;
- for (int i = 0; i < 3; ++i) {
- for (int j = 0; j < 3; ++j) {
- digester.add (matrix (i, j));
- }
+ digester.add (_red.x);
+ digester.add (_red.y);
+ digester.add (_green.x);
+ digester.add (_green.y);
+ digester.add (_blue.x);
+ digester.add (_blue.y);
+ digester.add (_white.x);
+ digester.add (_white.y);
+
+ if (_adjusted_white) {
+ digester.add (_adjusted_white.get().x);
+ digester.add (_adjusted_white.get().y);
}
digester.add (dynamic_pointer_cast<const dcp::GammaTransferFunction> (_out)->gamma ());
diff --git a/src/lib/config.cc b/src/lib/config.cc
index c75eaa0f5..ab57c1afc 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -83,6 +83,7 @@ Config::set_defaults ()
_win32_console = false;
#endif
+ _allowed_dcp_frame_rates.clear ();
_allowed_dcp_frame_rates.push_back (24);
_allowed_dcp_frame_rates.push_back (25);
_allowed_dcp_frame_rates.push_back (30);
@@ -90,8 +91,11 @@ Config::set_defaults ()
_allowed_dcp_frame_rates.push_back (50);
_allowed_dcp_frame_rates.push_back (60);
+ _colour_conversions.clear ();
_colour_conversions.push_back (PresetColourConversion (_("sRGB"), dcp::ColourConversion::srgb_to_xyz ()));
+ _colour_conversions.push_back (PresetColourConversion (_("Rec. 601"), dcp::ColourConversion::rec601_to_xyz ()));
_colour_conversions.push_back (PresetColourConversion (_("Rec. 709"), dcp::ColourConversion::rec709_to_xyz ()));
+ _colour_conversions.push_back (PresetColourConversion (_("P3 (from SMPTE RP 431-2)"), dcp::ColourConversion::p3_to_xyz ()));
set_kdm_email_to_default ();
}
diff --git a/src/lib/image.cc b/src/lib/image.cc
index 177219813..bba5eeda1 100644
--- a/src/lib/image.cc
+++ b/src/lib/image.cc
@@ -87,7 +87,9 @@ Image::components () const
/** Crop this image, scale it to `inter_size' and then place it in a black frame of `out_size' */
shared_ptr<Image>
-Image::crop_scale_window (Crop crop, dcp::Size inter_size, dcp::Size out_size, AVPixelFormat out_format, bool out_aligned) const
+Image::crop_scale_window (
+ Crop crop, dcp::Size inter_size, dcp::Size out_size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool out_aligned
+ ) const
{
/* Empirical testing suggests that sws_scale() will crash if
the input image is not aligned.
@@ -115,6 +117,19 @@ Image::crop_scale_window (Crop crop, dcp::Size inter_size, dcp::Size out_size, A
throw StringError (N_("Could not allocate SwsContext"));
}
+ DCPOMATIC_ASSERT (yuv_to_rgb < dcp::YUV_TO_RGB_COUNT);
+ int const lut[dcp::YUV_TO_RGB_COUNT] = {
+ SWS_CS_ITU601,
+ SWS_CS_ITU709
+ };
+
+ sws_setColorspaceDetails (
+ scale_context,
+ sws_getCoefficients (lut[yuv_to_rgb]), 0,
+ sws_getCoefficients (lut[yuv_to_rgb]), 0,
+ 0, 1 << 16, 1 << 16
+ );
+
/* Prepare input data pointers with crop */
uint8_t* scale_in_data[components()];
for (int c = 0; c < components(); ++c) {
@@ -142,7 +157,7 @@ Image::crop_scale_window (Crop crop, dcp::Size inter_size, dcp::Size out_size, A
}
shared_ptr<Image>
-Image::scale (dcp::Size out_size, AVPixelFormat out_format, bool out_aligned) const
+Image::scale (dcp::Size out_size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat out_format, bool out_aligned) const
{
/* Empirical testing suggests that sws_scale() will crash if
the input image is not aligned.
@@ -157,6 +172,19 @@ Image::scale (dcp::Size out_size, AVPixelFormat out_format, bool out_aligned) co
SWS_BICUBIC, 0, 0, 0
);
+ DCPOMATIC_ASSERT (yuv_to_rgb < dcp::YUV_TO_RGB_COUNT);
+ int const lut[dcp::YUV_TO_RGB_COUNT] = {
+ SWS_CS_ITU601,
+ SWS_CS_ITU709
+ };
+
+ sws_setColorspaceDetails (
+ scale_context,
+ sws_getCoefficients (lut[yuv_to_rgb]), 0,
+ sws_getCoefficients (lut[yuv_to_rgb]), 0,
+ 0, 1 << 16, 1 << 16
+ );
+
sws_scale (
scale_context,
data(), stride(),
diff --git a/src/lib/image.h b/src/lib/image.h
index 2e90a89e9..5c3931102 100644
--- a/src/lib/image.h
+++ b/src/lib/image.h
@@ -27,6 +27,7 @@
#include "position.h"
#include "position_image.h"
#include "types.h"
+#include <dcp/colour_conversion.h>
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavfilter/avfilter.h>
@@ -57,10 +58,9 @@ public:
int line_factor (int) const;
int lines (int) const;
- boost::shared_ptr<Image> scale (dcp::Size, AVPixelFormat, bool aligned) const;
+ boost::shared_ptr<Image> scale (dcp::Size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat, bool aligned) const;
boost::shared_ptr<Image> crop (Crop c, bool aligned) const;
-
- boost::shared_ptr<Image> crop_scale_window (Crop c, dcp::Size, dcp::Size, AVPixelFormat, bool aligned) const;
+ boost::shared_ptr<Image> crop_scale_window (Crop c, dcp::Size, dcp::Size, dcp::YUVToRGB yuv_to_rgb, AVPixelFormat, bool aligned) const;
void make_black ();
void make_transparent ();
diff --git a/src/lib/j2k_image_proxy.cc b/src/lib/j2k_image_proxy.cc
index 16b886169..59106098a 100644
--- a/src/lib/j2k_image_proxy.cc
+++ b/src/lib/j2k_image_proxy.cc
@@ -82,9 +82,9 @@ J2KImageProxy::image (optional<dcp::NoteHandler> note) const
shared_ptr<Image> image (new Image (PIX_FMT_RGB48LE, _size, true));
if (_mono) {
- dcp::xyz_to_rgb (_mono->xyz_image (), dcp::ColourConversion::xyz_to_srgb(), image->data()[0], image->stride()[0], note);
+ dcp::xyz_to_rgb (_mono->xyz_image (), dcp::ColourConversion::srgb_to_xyz(), image->data()[0], image->stride()[0], note);
} else {
- dcp::xyz_to_rgb (_stereo->xyz_image (_eye.get ()), dcp::ColourConversion::xyz_to_srgb(), image->data()[0], image->stride()[0], note);
+ dcp::xyz_to_rgb (_stereo->xyz_image (_eye.get ()), dcp::ColourConversion::srgb_to_xyz(), image->data()[0], image->stride()[0], note);
}
return image;
diff --git a/src/lib/player.cc b/src/lib/player.cc
index e3c85ee56..495d20533 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -280,6 +280,7 @@ Player::transform_image_subtitles (list<ImageSubtitle> subs) const
PositionImage (
i->image->scale (
scaled_size,
+ dcp::YUV_TO_RGB_REC601,
i->image->pixel_format (),
true
),
diff --git a/src/lib/player_video.cc b/src/lib/player_video.cc
index aad75889f..81e01329a 100644
--- a/src/lib/player_video.cc
+++ b/src/lib/player_video.cc
@@ -110,8 +110,13 @@ PlayerVideo::image (AVPixelFormat pixel_format, bool burn_subtitle, dcp::NoteHan
default:
break;
}
+
+ dcp::YUVToRGB yuv_to_rgb = dcp::YUV_TO_RGB_REC601;
+ if (_colour_conversion) {
+ yuv_to_rgb = _colour_conversion.get().yuv_to_rgb();
+ }
- shared_ptr<Image> out = im->crop_scale_window (total_crop, _inter_size, _out_size, pixel_format, true);
+ shared_ptr<Image> out = im->crop_scale_window (total_crop, _inter_size, _out_size, yuv_to_rgb, pixel_format, true);
if (burn_subtitle && _subtitle.image) {
out->alpha_blend (_subtitle.image, _subtitle.position);
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index 16506e411..3151b5e11 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -127,9 +127,9 @@ enum {
ID_file_save,
ID_file_properties,
ID_file_history,
- ID_edit_restore_default_preferences,
/* Allow spare IDs after _history for the recent files list */
- ID_content_scale_to_fit_width = 100,
+ ID_edit_restore_default_preferences = 100,
+ ID_content_scale_to_fit_width,
ID_content_scale_to_fit_height,
ID_jobs_make_dcp,
ID_jobs_make_kdms,
diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc
index 2c84b7e35..54cbb090c 100644
--- a/src/wx/about_dialog.cc
+++ b/src/wx/about_dialog.cc
@@ -92,6 +92,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
written_by.Add (wxT ("Terrence Meiczinger"));
written_by.Add (wxT ("Ole Laursen"));
written_by.Add (wxT ("Brecht Sanders"));
+ written_by.Add (wxT ("Jianguo Huang"));
add_section (_("Written by"), written_by);
wxArrayString translated_by;
@@ -131,6 +132,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
supported_by.Add (wxT ("Alexey Derevyanko"));
supported_by.Add (wxT ("Unwana Essien"));
supported_by.Add (wxT ("Maxime Estoppey"));
+ supported_by.Add (wxT ("Frechen-Film e.V."));
supported_by.Add (wxT ("Jose Angel Velasco Fernandez"));
supported_by.Add (wxT ("Andres Fink"));
supported_by.Add (wxT ("Evan Freeze"));
@@ -172,6 +174,7 @@ AboutDialog::AboutDialog (wxWindow* parent)
supported_by.Add (wxT ("Bruce Taylor"));
supported_by.Add (wxT ("Lawrence Towers"));
supported_by.Add (wxT ("Richard Turner"));
+ supported_by.Add (wxT ("Raoul Walzer"));
supported_by.Add (wxT ("Frank Wenz"));
supported_by.Add (wxT ("Roland Wirtz"));
supported_by.Add (wxT ("Wolfgang Woehl"));
diff --git a/src/wx/colour_conversion_editor.cc b/src/wx/colour_conversion_editor.cc
index 3ea144e1d..482e40309 100644
--- a/src/wx/colour_conversion_editor.cc
+++ b/src/wx/colour_conversion_editor.cc
@@ -45,6 +45,8 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent)
int r = 0;
+ subhead (table, this, _("Input gamma correction"), r);
+
_input_gamma_linearised = new wxCheckBox (this, wxID_ANY, _("Linearise input gamma curve for low values"));
table->Add (_input_gamma_linearised, wxGBPosition (r, 0), wxGBSpan (1, 2));
++r;
@@ -88,17 +90,99 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent)
validator.SetIncludes (list);
- add_label_to_grid_bag_sizer (table, this, _("Matrix"), true, wxGBPosition (r, 0));
- wxFlexGridSizer* matrix_sizer = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
+
+ /* YUV to RGB conversion */
+
+ subhead (table, this, _("YUV to RGB conversion"), r);
+
+ add_label_to_grid_bag_sizer (table, this, _("YUV to RGB matrix"), true, wxGBPosition (r, 0));
+ _yuv_to_rgb = new wxChoice (this, wxID_ANY);
+ _yuv_to_rgb->Append (_("Rec. 601"));
+ _yuv_to_rgb->Append (_("Rec. 709"));
+ table->Add (_yuv_to_rgb, wxGBPosition (r, 1));
+ ++r;
+
+ /* RGB to XYZ conversion */
+
+ subhead (table, this, _("RGB to XYZ conversion"), r);
+
+ add_label_to_grid_bag_sizer (table, this, _("x"), false, wxGBPosition (r, 1));
+ add_label_to_grid_bag_sizer (table, this, _("y"), false, wxGBPosition (r, 2));
+ add_label_to_grid_bag_sizer (table, this, _("Matrix"), false, wxGBPosition (r, 3));
+ ++r;
+
+ add_label_to_grid_bag_sizer (table, this, _("Red chromaticity"), true, wxGBPosition (r, 0));
+ _red_x = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_red_x, wxGBPosition (r, 1));
+ _red_y = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_red_y, wxGBPosition (r, 2));
+ ++r;
+
+ add_label_to_grid_bag_sizer (table, this, _("Green chromaticity"), true, wxGBPosition (r, 0));
+ _green_x = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_green_x, wxGBPosition (r, 1));
+ _green_y = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_green_y, wxGBPosition (r, 2));
+ ++r;
+
+ add_label_to_grid_bag_sizer (table, this, _("Blue chromaticity"), true, wxGBPosition (r, 0));
+ _blue_x = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_blue_x, wxGBPosition (r, 1));
+ _blue_y = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_blue_y, wxGBPosition (r, 2));
+ ++r;
+
+ add_label_to_grid_bag_sizer (table, this, _("White point"), true, wxGBPosition (r, 0));
+ _white_x = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_white_x, wxGBPosition (r, 1));
+ _white_y = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_white_y, wxGBPosition (r, 2));
+ ++r;
+
+ size = dc.GetTextExtent (wxT ("0.12345678"));
+ size.SetHeight (-1);
+
+ wxFlexGridSizer* rgb_to_xyz_sizer = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
for (int i = 0; i < 3; ++i) {
for (int j = 0; j < 3; ++j) {
- _matrix[i][j] = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
- matrix_sizer->Add (_matrix[i][j]);
+ _rgb_to_xyz[i][j] = new wxStaticText (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0);
+ rgb_to_xyz_sizer->Add (_rgb_to_xyz[i][j]);
}
}
- table->Add (matrix_sizer, wxGBPosition (r, 1));
+ table->Add (rgb_to_xyz_sizer, wxGBPosition (r - 4, 3), wxGBSpan (4, 1));
+
+ /* White point adjustment */
+
+ size = dc.GetTextExtent (wxT ("-0.12345678901"));
+ size.SetHeight (-1);
+
+ subhead (table, this, _("White point adjustment"), r);
+
+ _adjust_white = new wxCheckBox (this, wxID_ANY, _("Adjust white point to"));
+ table->Add (_adjust_white, wxGBPosition (r, 0));
+ _adjusted_white_x = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_adjusted_white_x, wxGBPosition (r, 1));
+ _adjusted_white_y = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0, validator);
+ table->Add (_adjusted_white_y, wxGBPosition (r, 2));
+ ++r;
+
+ add_label_to_grid_bag_sizer (table, this, wxT (""), false, wxGBPosition (r, 0));
++r;
+ size = dc.GetTextExtent (wxT ("0.12345678"));
+ size.SetHeight (-1);
+
+ wxFlexGridSizer* bradford_sizer = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
+ for (int i = 0; i < 3; ++i) {
+ for (int j = 0; j < 3; ++j) {
+ _bradford[i][j] = new wxStaticText (this, wxID_ANY, wxT (""), wxDefaultPosition, size, 0);
+ bradford_sizer->Add (_bradford[i][j]);
+ }
+ }
+ table->Add (bradford_sizer, wxGBPosition (r - 2, 3), wxGBSpan (2, 1));
+
+ subhead (table, this, _("Output gamma correction"), r);
+
add_label_to_grid_bag_sizer (table, this, _("Output gamma"), true, wxGBPosition (r, 0));
wxBoxSizer* output_sizer = new wxBoxSizer (wxHORIZONTAL);
/// TRANSLATORS: this means the mathematical reciprocal operation, i.e. we are dividing 1 by the control that
@@ -106,7 +190,7 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent)
add_label_to_sizer (output_sizer, this, _("1 / "), false);
_output_gamma = new wxSpinCtrlDouble (this);
output_sizer->Add (_output_gamma);
- table->Add (output_sizer, wxGBPosition (r, 1));
+ table->Add (output_sizer, wxGBPosition (r, 1), wxGBSpan (1, 2));
++r;
_input_gamma->SetRange (0.1, 4.0);
@@ -125,15 +209,31 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent)
_input_threshold->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::changed, this));
_input_A->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::changed, this));
_input_B->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::changed, this));
- for (int i = 0; i < 3; ++i) {
- for (int j = 0; j < 3; ++j) {
- _matrix[i][j]->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::changed, this));
- }
- }
+ _red_x->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
+ _red_y->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
+ _green_x->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
+ _green_y->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
+ _blue_x->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
+ _blue_y->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
+ _white_x->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
+ _white_y->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::chromaticity_changed, this));
+ _adjust_white->Bind (wxEVT_COMMAND_CHECKBOX_CLICKED, boost::bind (&ColourConversionEditor::adjusted_white_changed, this));
+ _adjusted_white_x->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::adjusted_white_changed, this));
+ _adjusted_white_y->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&ColourConversionEditor::adjusted_white_changed, this));
+ _yuv_to_rgb->Bind (wxEVT_COMMAND_CHOICE_SELECTED, boost::bind (&ColourConversionEditor::changed, this));
_output_gamma->Bind (wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, boost::bind (&ColourConversionEditor::changed, this, _output_gamma));
}
void
+ColourConversionEditor::subhead (wxGridBagSizer* sizer, wxWindow* parent, wxString text, int& row) const
+{
+ wxStaticText* m = new wxStaticText (parent, wxID_ANY, wxT (""));
+ m->SetLabelMarkup ("<b>" + text + "</b>");
+ sizer->Add (m, wxGBPosition (row, 0), wxGBSpan (1, 3), wxALIGN_CENTER_VERTICAL | wxTOP, 12);
+ ++row;
+}
+
+void
ColourConversionEditor::set (ColourConversion conversion)
{
if (dynamic_pointer_cast<const dcp::GammaTransferFunction> (conversion.in ())) {
@@ -142,7 +242,7 @@ ColourConversionEditor::set (ColourConversion conversion)
set_spin_ctrl (_input_gamma, tf->gamma ());
} else if (dynamic_pointer_cast<const dcp::ModifiedGammaTransferFunction> (conversion.in ())) {
shared_ptr<const dcp::ModifiedGammaTransferFunction> tf = dynamic_pointer_cast<const dcp::ModifiedGammaTransferFunction> (conversion.in ());
- /* Arbitrary default */
+ /* Arbitrary default; not used in this case (greyed out) */
_input_gamma->SetValue (2.2);
_input_gamma_linearised->SetValue (true);
set_spin_ctrl (_input_power, tf->power ());
@@ -151,12 +251,57 @@ ColourConversionEditor::set (ColourConversion conversion)
set_text_ctrl (_input_B, tf->B ());
}
- boost::numeric::ublas::matrix<double> matrix = conversion.matrix ();
- for (int i = 0; i < 3; ++i) {
- for (int j = 0; j < 3; ++j) {
- set_text_ctrl (_matrix[i][j], matrix(i, j));
- }
+ _yuv_to_rgb->SetSelection (conversion.yuv_to_rgb ());
+
+ SafeStringStream s;
+ s.setf (std::ios::fixed, std::ios::floatfield);
+ s.precision (6);
+
+ s << conversion.red().x;
+ _red_x->SetValue (std_to_wx (s.str ()));
+
+ s.str ("");
+ s << conversion.red().y;
+ _red_y->SetValue (std_to_wx (s.str ()));
+
+ s.str ("");
+ s << conversion.green().x;
+ _green_x->SetValue (std_to_wx (s.str ()));
+
+ s.str ("");
+ s << conversion.green().y;
+ _green_y->SetValue (std_to_wx (s.str ()));
+
+ s.str ("");
+ s << conversion.blue().x;
+ _blue_x->SetValue (std_to_wx (s.str ()));
+
+ s.str ("");
+ s << conversion.blue().y;
+ _blue_y->SetValue (std_to_wx (s.str ()));
+
+ s.str ("");
+ s << conversion.white().x;
+ _white_x->SetValue (std_to_wx (s.str ()));
+
+ s.str ("");
+ s << conversion.white().y;
+ _white_y->SetValue (std_to_wx (s.str ()));
+
+ if (conversion.adjusted_white ()) {
+ _adjust_white->SetValue (true);
+ s.str ("");
+ s << conversion.adjusted_white().get().x;
+ _adjusted_white_x->SetValue (std_to_wx (s.str ()));
+ s.str ("");
+ s << conversion.adjusted_white().get().y;
+ _adjusted_white_y->SetValue (std_to_wx (s.str ()));
+ } else {
+ _adjust_white->SetValue (false);
}
+
+ update_rgb_to_xyz ();
+ update_bradford ();
set_spin_ctrl (_output_gamma, dynamic_pointer_cast<const dcp::GammaTransferFunction> (conversion.out ())->gamma ());
}
@@ -170,7 +315,6 @@ ColourConversionEditor::get () const
conversion.set_in (
shared_ptr<dcp::ModifiedGammaTransferFunction> (
new dcp::ModifiedGammaTransferFunction (
- false,
_input_power->GetValue (),
raw_convert<double> (wx_to_std (_input_threshold->GetValue ())),
raw_convert<double> (wx_to_std (_input_A->GetValue ())),
@@ -180,30 +324,37 @@ ColourConversionEditor::get () const
);
} else {
conversion.set_in (
- shared_ptr<dcp::GammaTransferFunction> (
- new dcp::GammaTransferFunction (
- false,
- _input_gamma->GetValue ()
- )
- )
+ shared_ptr<dcp::GammaTransferFunction> (new dcp::GammaTransferFunction (_input_gamma->GetValue ()))
);
}
- boost::numeric::ublas::matrix<double> matrix (3, 3);
- for (int i = 0; i < 3; ++i) {
- for (int j = 0; j < 3; ++j) {
- string const v = wx_to_std (_matrix[i][j]->GetValue ());
- if (v.empty ()) {
- matrix (i, j) = 0;
- } else {
- matrix (i, j) = raw_convert<double> (v);
- }
- }
+ conversion.set_yuv_to_rgb (static_cast<dcp::YUVToRGB> (_yuv_to_rgb->GetSelection ()));
+
+ conversion.set_red (
+ dcp::Chromaticity (raw_convert<double> (wx_to_std (_red_x->GetValue ())), raw_convert<double> (wx_to_std (_red_y->GetValue ())))
+ );
+ conversion.set_green (
+ dcp::Chromaticity (raw_convert<double> (wx_to_std (_green_x->GetValue ())), raw_convert<double> (wx_to_std (_green_y->GetValue ())))
+ );
+ conversion.set_blue (
+ dcp::Chromaticity (raw_convert<double> (wx_to_std (_blue_x->GetValue ())), raw_convert<double> (wx_to_std (_blue_y->GetValue ())))
+ );
+ conversion.set_white (
+ dcp::Chromaticity (raw_convert<double> (wx_to_std (_white_x->GetValue ())), raw_convert<double> (wx_to_std (_white_y->GetValue ())))
+ );
+
+ if (_adjust_white->GetValue ()) {
+ conversion.set_adjusted_white (
+ dcp::Chromaticity (
+ raw_convert<double> (wx_to_std (_adjusted_white_x->GetValue ())),
+ raw_convert<double> (wx_to_std (_adjusted_white_y->GetValue ()))
+ )
+ );
+ } else {
+ conversion.unset_adjusted_white ();
}
- conversion.set_matrix (matrix);
-
- conversion.set_out (shared_ptr<dcp::GammaTransferFunction> (new dcp::GammaTransferFunction (true, _output_gamma->GetValue ())));
+ conversion.set_out (shared_ptr<dcp::GammaTransferFunction> (new dcp::GammaTransferFunction (_output_gamma->GetValue ())));
return conversion;
}
@@ -222,6 +373,53 @@ ColourConversionEditor::changed ()
}
void
+ColourConversionEditor::chromaticity_changed ()
+{
+ update_rgb_to_xyz ();
+ changed ();
+}
+
+void
+ColourConversionEditor::adjusted_white_changed ()
+{
+ update_bradford ();
+ changed ();
+}
+
+void
+ColourConversionEditor::update_bradford ()
+{
+ _adjusted_white_x->Enable (_adjust_white->GetValue ());
+ _adjusted_white_y->Enable (_adjust_white->GetValue ());
+
+ boost::numeric::ublas::matrix<double> m = get().bradford ();
+ for (int i = 0; i < 3; ++i) {
+ for (int j = 0; j < 3; ++j) {
+ SafeStringStream s;
+ s.setf (std::ios::fixed, std::ios::floatfield);
+ s.precision (7);
+ s << m (i, j);
+ _bradford[i][j]->SetLabel (std_to_wx (s.str ()));
+ }
+ }
+}
+
+void
+ColourConversionEditor::update_rgb_to_xyz ()
+{
+ boost::numeric::ublas::matrix<double> m = get().rgb_to_xyz ();
+ for (int i = 0; i < 3; ++i) {
+ for (int j = 0; j < 3; ++j) {
+ SafeStringStream s;
+ s.setf (std::ios::fixed, std::ios::floatfield);
+ s.precision (7);
+ s << m (i, j);
+ _rgb_to_xyz[i][j]->SetLabel (std_to_wx (s.str ()));
+ }
+ }
+}
+
+void
ColourConversionEditor::changed (wxSpinCtrlDouble* sc)
{
/* On OS X, it seems that in some cases when a wxSpinCtrlDouble loses focus
diff --git a/src/wx/colour_conversion_editor.h b/src/wx/colour_conversion_editor.h
index 317171aa4..b7467a70a 100644
--- a/src/wx/colour_conversion_editor.h
+++ b/src/wx/colour_conversion_editor.h
@@ -39,6 +39,11 @@ public:
private:
void changed ();
void changed (wxSpinCtrlDouble *);
+ void chromaticity_changed ();
+ void adjusted_white_changed ();
+ void update_rgb_to_xyz ();
+ void update_bradford ();
+ void subhead (wxGridBagSizer* sizer, wxWindow* parent, wxString text, int& row) const;
void set_text_ctrl (wxTextCtrl *, double);
void set_spin_ctrl (wxSpinCtrlDouble *, double);
@@ -51,7 +56,20 @@ private:
wxTextCtrl* _input_A;
wxTextCtrl* _input_B;
wxCheckBox* _input_gamma_linearised;
- wxTextCtrl* _matrix[3][3];
+ wxChoice* _yuv_to_rgb;
+ wxTextCtrl* _red_x;
+ wxTextCtrl* _red_y;
+ wxTextCtrl* _green_x;
+ wxTextCtrl* _green_y;
+ wxTextCtrl* _blue_x;
+ wxTextCtrl* _blue_y;
+ wxTextCtrl* _white_x;
+ wxTextCtrl* _white_y;
+ wxCheckBox* _adjust_white;
+ wxTextCtrl* _adjusted_white_x;
+ wxTextCtrl* _adjusted_white_y;
+ wxStaticText* _rgb_to_xyz[3][3];
+ wxStaticText* _bradford[3][3];
wxSpinCtrlDouble* _output_gamma;
};
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index 26f135d48..a1cc5dfc4 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -180,7 +180,13 @@ FilmViewer::get (DCPTime p, bool accurate)
if (!pvf.empty ()) {
try {
_frame = pvf.front()->image (PIX_FMT_RGB24, true, boost::bind (&Log::dcp_log, _film->log().get(), _1, _2));
- _frame = _frame->scale (_frame->size(), PIX_FMT_RGB24, false);
+
+ dcp::YUVToRGB yuv_to_rgb = dcp::YUV_TO_RGB_REC601;
+ if (pvf.front()->colour_conversion()) {
+ yuv_to_rgb = pvf.front()->colour_conversion().get().yuv_to_rgb();
+ }
+
+ _frame = _frame->scale (_frame->size(), yuv_to_rgb, PIX_FMT_RGB24, false);
_position = pvf.front()->time ();
_inter_position = pvf.front()->inter_position ();
_inter_size = pvf.front()->inter_size ();
diff --git a/test/colour_conversion_test.cc b/test/colour_conversion_test.cc
index 8c22eeda3..3b6a0e198 100644
--- a/test/colour_conversion_test.cc
+++ b/test/colour_conversion_test.cc
@@ -35,8 +35,8 @@ BOOST_AUTO_TEST_CASE (colour_conversion_test1)
ColourConversion A (dcp::ColourConversion::srgb_to_xyz ());
ColourConversion B (dcp::ColourConversion::rec709_to_xyz ());
- BOOST_CHECK_EQUAL (A.identifier(), "751dd37378fb52502d356ec334a104c8");
- BOOST_CHECK_EQUAL (B.identifier(), "621cf5bdd8de7e8adc3f4b8d77dc708a");
+ BOOST_CHECK_EQUAL (A.identifier(), "9840c601d2775bf1b3847254bbaa36a9");
+ BOOST_CHECK_EQUAL (B.identifier(), "0778fbc5c87470f58820604a66992579");
}
BOOST_AUTO_TEST_CASE (colour_conversion_test2)
@@ -56,15 +56,14 @@ BOOST_AUTO_TEST_CASE (colour_conversion_test2)
" <A>0.055</A>\n"
" <B>12.92</B>\n"
" </InputTransferFunction>\n"
- " <Matrix i=\"0\" j=\"0\">0.4124564</Matrix>\n"
- " <Matrix i=\"0\" j=\"1\">0.3575761</Matrix>\n"
- " <Matrix i=\"0\" j=\"2\">0.1804375</Matrix>\n"
- " <Matrix i=\"1\" j=\"0\">0.2126729</Matrix>\n"
- " <Matrix i=\"1\" j=\"1\">0.7151522</Matrix>\n"
- " <Matrix i=\"1\" j=\"2\">0.072175</Matrix>\n"
- " <Matrix i=\"2\" j=\"0\">0.0193339</Matrix>\n"
- " <Matrix i=\"2\" j=\"1\">0.119192</Matrix>\n"
- " <Matrix i=\"2\" j=\"2\">0.9503041</Matrix>\n"
+ " <RedX>0.64</RedX>\n"
+ " <RedY>0.33</RedY>\n"
+ " <GreenX>0.3</GreenX>\n"
+ " <GreenY>0.6</GreenY>\n"
+ " <BlueX>0.15</BlueX>\n"
+ " <BlueY>0.06</BlueY>\n"
+ " <WhiteX>0.3127</WhiteX>\n"
+ " <WhiteY>0.329</WhiteY>\n"
" <OutputGamma>2.6</OutputGamma>\n"
"</Test>\n"
);
@@ -87,15 +86,14 @@ BOOST_AUTO_TEST_CASE (colour_conversion_test3)
" <A>0.099</A>\n"
" <B>4.5</B>\n"
" </InputTransferFunction>\n"
- " <Matrix i=\"0\" j=\"0\">0.4124564</Matrix>\n"
- " <Matrix i=\"0\" j=\"1\">0.3575761</Matrix>\n"
- " <Matrix i=\"0\" j=\"2\">0.1804375</Matrix>\n"
- " <Matrix i=\"1\" j=\"0\">0.2126729</Matrix>\n"
- " <Matrix i=\"1\" j=\"1\">0.7151522</Matrix>\n"
- " <Matrix i=\"1\" j=\"2\">0.072175</Matrix>\n"
- " <Matrix i=\"2\" j=\"0\">0.0193339</Matrix>\n"
- " <Matrix i=\"2\" j=\"1\">0.119192</Matrix>\n"
- " <Matrix i=\"2\" j=\"2\">0.9503041</Matrix>\n"
+ " <RedX>0.64</RedX>\n"
+ " <RedY>0.33</RedY>\n"
+ " <GreenX>0.3</GreenX>\n"
+ " <GreenY>0.6</GreenY>\n"
+ " <BlueX>0.15</BlueX>\n"
+ " <BlueY>0.06</BlueY>\n"
+ " <WhiteX>0.3127</WhiteX>\n"
+ " <WhiteY>0.329</WhiteY>\n"
" <OutputGamma>2.6</OutputGamma>\n"
"</Test>\n"
);
diff --git a/test/image_test.cc b/test/image_test.cc
index b622b250d..9aca9878d 100644
--- a/test/image_test.cc
+++ b/test/image_test.cc
@@ -156,7 +156,7 @@ BOOST_AUTO_TEST_CASE (crop_image_test2)
image = image->crop (crop, true);
/* Convert it back to RGB to make comparison to black easier */
- image = image->scale (image->size(), PIX_FMT_RGB24, true);
+ image = image->scale (image->size(), dcp::YUV_TO_RGB_REC601, PIX_FMT_RGB24, true);
/* Check that its still black after the crop */
uint8_t* p = image->data()[0];
@@ -250,13 +250,13 @@ crop_scale_window_single (AVPixelFormat in_format, dcp::Size in_size, Crop crop,
/* Convert using separate methods */
boost::shared_ptr<Image> sep = test->crop (crop, true);
- sep = sep->scale (inter_size, PIX_FMT_RGB24, true);
+ sep = sep->scale (inter_size, dcp::YUV_TO_RGB_REC601, PIX_FMT_RGB24, true);
boost::shared_ptr<Image> sep_container (new Image (PIX_FMT_RGB24, out_size, true));
sep_container->make_black ();
sep_container->copy (sep, Position<int> ((out_size.width - inter_size.width) / 2, (out_size.height - inter_size.height) / 2));
/* Convert using the all-in-one method */
- shared_ptr<Image> all = test->crop_scale_window (crop, inter_size, out_size, PIX_FMT_RGB24, true);
+ shared_ptr<Image> all = test->crop_scale_window (crop, inter_size, out_size, dcp::YUV_TO_RGB_REC601, PIX_FMT_RGB24, true);
/* Compare */
BOOST_CHECK_EQUAL (sep_container->size().width, all->size().width);
diff --git a/test/make_black_test.cc b/test/make_black_test.cc
index 913b6da10..b0243310b 100644
--- a/test/make_black_test.cc
+++ b/test/make_black_test.cc
@@ -80,7 +80,7 @@ BOOST_AUTO_TEST_CASE (make_black_test)
for (list<AVPixelFormat>::const_iterator i = pix_fmts.begin(); i != pix_fmts.end(); ++i) {
boost::shared_ptr<Image> foo (new Image (*i, in_size, true));
foo->make_black ();
- boost::shared_ptr<Image> bar = foo->scale (out_size, PIX_FMT_RGB24, true);
+ boost::shared_ptr<Image> bar = foo->scale (out_size, dcp::YUV_TO_RGB_REC601, PIX_FMT_RGB24, true);
uint8_t* p = bar->data()[0];
for (int y = 0; y < bar->size().height; ++y) {