Skip to main content

ImageDecode.h File

Image decode helper node. More...

Included Headers

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

Namespaces Index

namespacesimaai
namespaceneat
namespacenodes

Classes Index

classImageDecode

Description

Image decode helper node.

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
15class ImageDecode final : public Node {
16public:
17 std::string kind() const override {
18 return "ImageDecode";
19 }
20 NodeCapsBehavior caps_behavior() const override {
21 return NodeCapsBehavior::Dynamic;
22 }
23
24 std::string backend_fragment(int node_index) const override;
25 std::vector<std::string> element_names(int node_index) const override;
26};
27
28} // namespace simaai::neat
29
30namespace simaai::neat::nodes {
31std::shared_ptr<simaai::neat::Node> ImageDecode();
32} // namespace simaai::neat::nodes

Generated via doxygen2docusaurus 2.0.0 by Doxygen 1.9.1.