mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-13 15:29:45 +03:00
ipa: raspberrypi: Replace Raspberry Pi debug with libcamera debug
This commit deals with all the "small" algorithms (that is, not Agc/Awb/Alsc). A few unnecessary debug messages have also been removed. Signed-off-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
eb605eab5b
commit
d97b1bcd2a
9 changed files with 97 additions and 45 deletions
|
@ -7,12 +7,16 @@
|
|||
|
||||
#include <math.h>
|
||||
|
||||
#include "../logging.hpp"
|
||||
#include "libcamera/internal/log.h"
|
||||
|
||||
#include "../sharpen_status.h"
|
||||
|
||||
#include "sharpen.hpp"
|
||||
|
||||
using namespace RPiController;
|
||||
using namespace libcamera;
|
||||
|
||||
LOG_DEFINE_CATEGORY(RPiSharpen)
|
||||
|
||||
#define NAME "rpi.sharpen"
|
||||
|
||||
|
@ -35,10 +39,13 @@ void Sharpen::SwitchMode(CameraMode const &camera_mode,
|
|||
|
||||
void Sharpen::Read(boost::property_tree::ptree const ¶ms)
|
||||
{
|
||||
RPI_LOG(Name());
|
||||
threshold_ = params.get<double>("threshold", 1.0);
|
||||
strength_ = params.get<double>("strength", 1.0);
|
||||
limit_ = params.get<double>("limit", 1.0);
|
||||
LOG(RPiSharpen, Debug)
|
||||
<< "Read threshold " << threshold_
|
||||
<< " strength " << strength_
|
||||
<< " limit " << limit_;
|
||||
}
|
||||
|
||||
void Sharpen::SetStrength(double strength)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue