From 1f861a03fffcb1b477f7c6c3b522fddc49019a63 Mon Sep 17 00:00:00 2001 From: demoulinv Date: Thu, 15 Dec 2022 09:04:40 +0100 Subject: [PATCH] [io] Remove applyToneCurve from ImageReadOptions. --- src/aliceVision/image/io.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/aliceVision/image/io.hpp b/src/aliceVision/image/io.hpp index cde4eb0c5a..6523e197d1 100644 --- a/src/aliceVision/image/io.hpp +++ b/src/aliceVision/image/io.hpp @@ -184,15 +184,13 @@ struct ImageReadOptions ImageReadOptions(EImageColorSpace colorSpace = EImageColorSpace::AUTO, ERawColorInterpretation rawColorInterpretation = ERawColorInterpretation::Auto, const std::string& colorProfile = "", const oiio::ROI& roi = oiio::ROI()) : - workingColorSpace(colorSpace), rawColorInterpretation(rawColorInterpretation), colorProfileFileName(colorProfile), applyToneCurve(false), subROI(roi) + workingColorSpace(colorSpace), rawColorInterpretation(rawColorInterpretation), colorProfileFileName(colorProfile), subROI(roi) { } - EImageColorSpace workingColorSpace; ERawColorInterpretation rawColorInterpretation; std::string colorProfileFileName; - bool applyToneCurve; //ROI for this image. //If the image contains an roi, this is the roi INSIDE the roi.