summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/contrast_algorithm.h
blob: ce17a4f949b9faa7ecb3ffa0c77cd013e80a1d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2019, Raspberry Pi Ltd
 *
 * contrast_algorithm.h - contrast (gamma) control algorithm interface
 */
#pragma once

#include "algorithm.h"

namespace RPiController {

class ContrastAlgorithm : public Algorithm
{
public:
	ContrastAlgorithm(Controller *controller) : Algorithm(controller) {}
	/* A contrast algorithm must provide the following: */
	virtual void setBrightness(double brightness) = 0;
	virtual void setContrast(double contrast) = 0;
};

} /* namespace RPiController */
n class="hl com"> * * viewfinder.h - qcam - Viewfinder */ #ifndef __QCAM_VIEWFINDER_H__ #define __QCAM_VIEWFINDER_H__ #include <QLabel> #include "format_converter.h" class QImage; class ViewFinder : public QLabel { public: ViewFinder(QWidget *parent); ~ViewFinder(); int setFormat(unsigned int format, unsigned int width, unsigned int height); void display(const unsigned char *rgb, size_t size); private: unsigned int format_; unsigned int width_; unsigned int height_; FormatConverter converter_; QImage *image_; }; #endif /* __QCAM_VIEWFINDER__ */