summaryrefslogtreecommitdiff
path: root/Documentation/theme/static
AgeCommit message (Expand)Author
2024-08-21Documentation: Rework index.rstDaniel Scally
2024-08-21Documentation: Add documentation-contents.rstDaniel Scally
2020-06-09licenses: Add SPDX headers to the website builder and themeLaurent Pinchart
2019-10-23Documentation: theme: css: Really hide toc treesLaurent Pinchart
2019-10-23Documentation: theme: css: Make text darkerLaurent Pinchart
2019-10-23Documentation: Generate local TOC on demandLaurent Pinchart
2019-01-11Documentation: Add custom themeLaurent Pinchart
m can exchange * information. The Prepare function returns a pointer to metadata for this * specific image, and which should be passed on to the Process function. */ class Controller { public: Controller(); ~Controller(); int read(char const *filename); void initialise(); void switchMode(CameraMode const &cameraMode, Metadata *metadata); void prepare(Metadata *imageMetadata); void process(StatisticsPtr stats, Metadata *imageMetadata); Metadata &getGlobalMetadata(); Algorithm *getAlgorithm(std::string const &name) const; protected: int createAlgorithm(const std::string &name, const libcamera::YamlObject &params); Metadata globalMetadata_; std::vector<AlgorithmPtr> algorithms_; bool switchModeCalled_; }; } /* namespace RPiController */