mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
19 lines
No EOL
415 B
C++
19 lines
No EOL
415 B
C++
#pragma once
|
|
|
|
#include "image.h"
|
|
#include <string>
|
|
|
|
namespace satdump
|
|
{
|
|
namespace image
|
|
{
|
|
struct ExpressionChannel
|
|
{
|
|
std::string tkt;
|
|
image::Image *img;
|
|
double val[4] = {0, 0, 0, 0};
|
|
};
|
|
|
|
image::Image generate_image_expression(std::vector<ExpressionChannel> channels, std::string expression);
|
|
} // namespace image
|
|
} // namespace satdump
|