Skip to content

Commit

Permalink
[io] Remove applyToneCurve from ImageReadOptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
demoulinv committed Dec 15, 2022
1 parent 1da075e commit 1f861a0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/aliceVision/image/io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1f861a0

Please sign in to comment.