Skip to main content

JpegDecode.h File

JpegDecode Node — JPEG-specific decode stage. More...

Included Headers

#include "builder/Node.h" #include <memory> #include <vector>

Namespaces Index

namespacesimaai
namespaceneat
namespacenodes

Classes Index

classJpegDecode

Decodes JPEG-encoded buffers to raw frames. More...

Description

JpegDecode Node — JPEG-specific decode stage.

File Listing

The file content with the documentation metadata removed is:

1
6#pragma once
7
8#include "builder/Node.h"
9
10#include <memory>
11#include <vector>
12
13namespace simaai::neat {
14
22class JpegDecode final : public Node {
23public:
25 std::string kind() const override {
26 return "JpegDecode";
27 }
29 NodeCapsBehavior caps_behavior() const override {
30 return NodeCapsBehavior::Dynamic;
31 }
32
34 std::string backend_fragment(int node_index) const override;
36 std::vector<std::string> element_names(int node_index) const override;
37};
38
39} // namespace simaai::neat
40
41namespace simaai::neat::nodes {
43std::shared_ptr<simaai::neat::Node> JpegDecode();
44} // namespace simaai::neat::nodes

Generated via doxygen2docusaurus 2.0.0 by Doxygen 1.9.8.