mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-16 17:05:08 +03:00
ipa: raspberrypi: Rename the controller namespace from Rpi to RpiController
This avoids a namespace clash with the RPi namespace used by the ipa and pipeline handlers, and cleans up the syntax slightly. There are no functional changes in this commit. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
2ba3c68b67
commit
2f46dec949
50 changed files with 99 additions and 99 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "algorithm.hpp"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class AgcAlgorithm : public Algorithm
|
||||
{
|
||||
|
@ -25,4 +25,4 @@ public:
|
|||
SetConstraintMode(std::string const &contraint_mode_name) = 0;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "algorithm.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
void Algorithm::Read([[maybe_unused]] boost::property_tree::ptree const ¶ms)
|
||||
{
|
||||
|
@ -32,7 +32,7 @@ void Algorithm::Process([[maybe_unused]] StatisticsPtr &stats,
|
|||
// For registering algorithms with the system:
|
||||
|
||||
static std::map<std::string, AlgoCreateFunc> algorithms;
|
||||
std::map<std::string, AlgoCreateFunc> const &RPi::GetAlgorithms()
|
||||
std::map<std::string, AlgoCreateFunc> const &RPiController::GetAlgorithms()
|
||||
{
|
||||
return algorithms;
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
#include <boost/property_tree/ptree.hpp>
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
// This defines the basic interface for all control algorithms.
|
||||
|
||||
|
@ -59,4 +59,4 @@ struct RegisterAlgorithm {
|
|||
};
|
||||
std::map<std::string, AlgoCreateFunc> const &GetAlgorithms();
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "algorithm.hpp"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class AwbAlgorithm : public Algorithm
|
||||
{
|
||||
|
@ -19,4 +19,4 @@ public:
|
|||
virtual void SetManualGains(double manual_r, double manual_b) = 0;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "algorithm.hpp"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class CcmAlgorithm : public Algorithm
|
||||
{
|
||||
|
@ -18,4 +18,4 @@ public:
|
|||
virtual void SetSaturation(double saturation) = 0;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "algorithm.hpp"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class ContrastAlgorithm : public Algorithm
|
||||
{
|
||||
|
@ -19,4 +19,4 @@ public:
|
|||
virtual void SetContrast(double contrast) = 0;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <boost/property_tree/json_parser.hpp>
|
||||
#include <boost/property_tree/ptree.hpp>
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
Controller::Controller()
|
||||
: switch_mode_called_(false) {}
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#include "device_status.h"
|
||||
#include "metadata.hpp"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class Algorithm;
|
||||
typedef std::unique_ptr<Algorithm> AlgorithmPtr;
|
||||
|
@ -51,4 +51,4 @@ protected:
|
|||
bool switch_mode_called_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "histogram.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
uint64_t Histogram::CumulativeFreq(double bin) const
|
||||
{
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
// A simple histogram class, for use in particular to find "quantiles" and
|
||||
// averages between "quantiles".
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class Histogram
|
||||
{
|
||||
|
@ -41,4 +41,4 @@ private:
|
|||
std::vector<uint64_t> cumulative_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
#include <boost/any.hpp>
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class Metadata
|
||||
{
|
||||
|
@ -74,4 +74,4 @@ private:
|
|||
|
||||
typedef std::shared_ptr<Metadata> MetadataPtr;
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "pwl.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
void Pwl::Read(boost::property_tree::ptree const ¶ms)
|
||||
{
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#include <boost/property_tree/ptree.hpp>
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class Pwl
|
||||
{
|
||||
|
@ -106,4 +106,4 @@ private:
|
|||
std::vector<Point> points_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#include "agc.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
#define NAME "rpi.agc"
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#define AGC_STATS_SIZE 15
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
struct AgcMeteringMode {
|
||||
double weights[AGC_STATS_SIZE];
|
||||
|
@ -121,4 +121,4 @@ private:
|
|||
double fixed_analogue_gain_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
// Raspberry Pi ALSC (Auto Lens Shading Correction) algorithm.
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
#define NAME "rpi.alsc"
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "../algorithm.hpp"
|
||||
#include "../alsc_status.h"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
// Algorithm to generate automagic LSC (Lens Shading Correction) tables.
|
||||
|
||||
|
@ -102,4 +102,4 @@ private:
|
|||
double lambda_b_[ALSC_CELLS_X * ALSC_CELLS_Y];
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "awb.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
#define NAME "rpi.awb"
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include "../pwl.hpp"
|
||||
#include "../awb_status.h"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
// Control algorithm to perform AWB calculations.
|
||||
|
||||
|
@ -175,4 +175,4 @@ static inline Awb::RGB operator*(Awb::RGB const &rgb, double d)
|
|||
return d * rgb;
|
||||
}
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
#include "black_level.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
#define NAME "rpi.black_level"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
// This is our implementation of the "black level algorithm".
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class BlackLevel : public Algorithm
|
||||
{
|
||||
|
@ -27,4 +27,4 @@ private:
|
|||
double black_level_b_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
#include "ccm.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
// This algorithm selects a CCM (Colour Correction Matrix) according to the
|
||||
// colour temperature estimated by AWB (interpolating between known matricies as
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "../ccm_algorithm.hpp"
|
||||
#include "../pwl.hpp"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
// Algorithm to calculate colour matrix. Should be placed after AWB.
|
||||
|
||||
|
@ -73,4 +73,4 @@ private:
|
|||
std::atomic<double> saturation_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#include "contrast.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
// This is a very simple control algorithm which simply retrieves the results of
|
||||
// AGC and AWB via their "status" metadata, and applies digital gain to the
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "../contrast_algorithm.hpp"
|
||||
#include "../pwl.hpp"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
// Back End algorithm to appaly correct digital gain. Should be placed after
|
||||
// Back End AWB.
|
||||
|
@ -48,4 +48,4 @@ private:
|
|||
std::mutex mutex_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "../logging.hpp"
|
||||
#include "dpc.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
// We use the lux status so that we can apply stronger settings in darkness (if
|
||||
// necessary).
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "../algorithm.hpp"
|
||||
#include "../dpc_status.h"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
// Back End algorithm to apply appropriate GEQ settings.
|
||||
|
||||
|
@ -29,4 +29,4 @@ private:
|
|||
DpcConfig config_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include "../focus_status.h"
|
||||
#include "focus.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
using namespace libcamera;
|
||||
|
||||
LOG_DEFINE_CATEGORY(RPiFocus)
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* control.
|
||||
*/
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class Focus : public Algorithm
|
||||
{
|
||||
|
@ -25,4 +25,4 @@ public:
|
|||
void Process(StatisticsPtr &stats, Metadata *image_metadata) override;
|
||||
};
|
||||
|
||||
} /* namespace RPi */
|
||||
} /* namespace RPiController */
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#include "geq.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
// We use the lux status so that we can apply stronger settings in darkness (if
|
||||
// necessary).
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "../algorithm.hpp"
|
||||
#include "../geq_status.h"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
// Back End algorithm to apply appropriate GEQ settings.
|
||||
|
||||
|
@ -31,4 +31,4 @@ private:
|
|||
GeqConfig config_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
#include "lux.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
#define NAME "rpi.lux"
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
// This is our implementation of the "lux control algorithm".
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class Lux : public Algorithm
|
||||
{
|
||||
|
@ -39,4 +39,4 @@ private:
|
|||
std::mutex mutex_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
#include "noise.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
#define NAME "rpi.noise"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
// This is our implementation of the "noise algorithm".
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class Noise : public Algorithm
|
||||
{
|
||||
|
@ -29,4 +29,4 @@ private:
|
|||
std::atomic<double> mode_factor_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "sdn.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
// Calculate settings for the spatial denoise block using the noise profile in
|
||||
// the image metadata.
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "../algorithm.hpp"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
// Algorithm to calculate correct spatial denoise (SDN) settings.
|
||||
|
||||
|
@ -26,4 +26,4 @@ private:
|
|||
double strength_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#include "sharpen.hpp"
|
||||
|
||||
using namespace RPi;
|
||||
using namespace RPiController;
|
||||
|
||||
#define NAME "rpi.sharpen"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
// This is our implementation of the "sharpen algorithm".
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class Sharpen : public SharpenAlgorithm
|
||||
{
|
||||
|
@ -31,4 +31,4 @@ private:
|
|||
double user_strength_;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "algorithm.hpp"
|
||||
|
||||
namespace RPi {
|
||||
namespace RPiController {
|
||||
|
||||
class SharpenAlgorithm : public Algorithm
|
||||
{
|
||||
|
@ -18,4 +18,4 @@ public:
|
|||
virtual void SetStrength(double strength) = 0;
|
||||
};
|
||||
|
||||
} // namespace RPi
|
||||
} // namespace RPiController
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue