libcamera/src/ipa/raspberrypi/controller/rpi/focus.hpp
Naushir Patuck 2f46dec949 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>
2020-09-29 12:35:17 +01:00

28 lines
611 B
C++

/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (C) 2020, Raspberry Pi (Trading) Limited
*
* focus.hpp - focus algorithm
*/
#pragma once
#include "../algorithm.hpp"
#include "../metadata.hpp"
/*
* The "focus" algorithm. All it does it print out a version of the
* focus contrast measure; there is no actual auto-focus mechanism to
* control.
*/
namespace RPiController {
class Focus : public Algorithm
{
public:
Focus(Controller *controller);
char const *Name() const override;
void Process(StatisticsPtr &stats, Metadata *image_metadata) override;
};
} /* namespace RPiController */