mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-13 15:29:45 +03:00
ipa: raspberrypi: Use YamlParser to replace dependency on boost
The Raspberry Pi IPA module depends on boost only to parse the JSON tuning data files. As libcamera depends on libyaml, use the YamlParser class to parse those files and drop the dependency on boost. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Tested-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
This commit is contained in:
parent
735f0ffeaa
commit
c1597f9896
32 changed files with 375 additions and 278 deletions
|
@ -41,10 +41,18 @@ void Noise::switchMode(CameraMode const &cameraMode,
|
|||
modeFactor_ = std::max(1.0, cameraMode.noiseFactor);
|
||||
}
|
||||
|
||||
int Noise::read(boost::property_tree::ptree const ¶ms)
|
||||
int Noise::read(const libcamera::YamlObject ¶ms)
|
||||
{
|
||||
referenceConstant_ = params.get<double>("reference_constant");
|
||||
referenceSlope_ = params.get<double>("reference_slope");
|
||||
auto value = params["reference_constant"].get<double>();
|
||||
if (!value)
|
||||
return -EINVAL;
|
||||
referenceConstant_ = *value;
|
||||
|
||||
value = params["reference_slope"].get<double>();
|
||||
if (!value)
|
||||
return -EINVAL;
|
||||
referenceSlope_ = *value;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue