Age | Commit message (Expand) | Author |
---|---|---|
2021-11-15 | ipa: ipu3: awb: Add support for color temperature | Jean-Michel Hautbois |
2021-11-15 | ipa: ipu3: agc: Store exposure in units of time | Jean-Michel Hautbois |
2021-11-15 | ipa: ipu3: agc: Update previous exposure value | Jean-Michel Hautbois |
2021-11-15 | ipa: ipu3: agc: Improve gain calculation | Jean-Michel Hautbois |
2021-11-15 | ipa: ipu3: agc: Refactor ev gain calculation and testing | Jean-Michel Hautbois |
2021-11-15 | ipa: ipu3: agc: Compute the gain for each frame | Jean-Michel Hautbois |
2021-11-15 | ipa: ipu3: agc: Limit the number of saturated cells | Jean-Michel Hautbois |
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2019, Google Inc. * * main_window.h - qcam - Main application window */ #ifndef __QCAM_MAIN_WINDOW_H__ #define __QCAM_MAIN_WINDOW_H__ #include <memory> #include <vector> #include <QElapsedTimer> #include <QIcon> #include <QMainWindow> #include <QMutex> #include <QObject> #include <QQueue> #include <QTimer> #include <libcamera/buffer.h> #include <libcamera/camera.h> #include <libcamera/camera_manager.h> #include <libcamera/controls.h> #include <libcamera/framebuffer_allocator.h> #include <libcamera/request.h> #include <libcamera/stream.h> #include "../cam/stream_options.h" #include "viewfinder.h" using namespace libcamera; class QAction; class QComboBox; class HotplugEvent; enum { OptCamera = 'c', OptHelp = 'h', OptRenderer = 'r', OptStream = 's', OptVerbose = 'v', }; class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow(CameraManager *cm, const OptionsParser::Options &options); ~MainWindow(); bool event(QEvent *e) override; private Q_SLOTS: void quit(); void updateTitle(); void switchCamera(int index); void toggleCapture(bool start); void saveImageAs(); void captureRaw(); void processRaw(FrameBuffer *buffer, const ControlList &metadata); void queueRequest(FrameBuffer *buffer); private: int createToolbars(); std::string chooseCamera(); int openCamera(); int startCapture(); void stopCapture(); void addCamera(std::shared_ptr<Camera> camera); void removeCamera(std::shared_ptr<Camera> camera); void requestComplete(Request *request); void processCapture(); void processHotplug(HotplugEvent *e); void processViewfinder(FrameBuffer *buffer); /* UI elements */ QToolBar *toolbar_; QAction *startStopAction_; QComboBox *cameraCombo_; QAction *saveRaw_; ViewFinder *viewfinder_; QIcon iconPlay_; QIcon iconStop_; QString title_; QTimer titleTimer_; /* Options */ const OptionsParser | ipa: ipu3: agc: Introduce previous exposure value | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: agc: Rename gains properly | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: agc: Simplify division of exposure/gain | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: agc: Use filtered exposure values | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: agc: Change analogue gain limits | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: agc: Change exposure limits | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: agc: Rename exposure values properly | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: awb: Change minimal green threshold value | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: awb: Use saturation under 90% | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: set frameContext before controls | Jean-Michel Hautbois |
2021-10-22 | ipa: ipu3: awb: Set a threshold for the green saturation | Jean-Michel Hautbois |
2021-10-19 | ipa: ipu3: agc: Remove "using" directive from agc.h header | Laurent Pinchart |
2021-10-19 | ipa: ipu3: awb: Don't pass member variable to member function | Laurent Pinchart |
2021-10-15 | ipa: ipu3: Update camera controls in configure() | Jacopo Mondi |
2021-10-06 | ipa: ipu3: Replace ipa::ipu3::algorithms::Ipu3AwbCell | Jean-Michel Hautbois |
2021-10-06 | ipa: ipu3: agc: Rewrite and simplify the brightness loop | Jean-Michel Hautbois |
2021-10-06 | ipa: ipu3: awb: Introduce Black Level Correction | Jean-Michel Hautbois |
2021-10-06 | ipa: ipu3: awb: Use the line stride for the stats | Jean-Michel Hautbois |