satdump/src-core/common/image/expression.h
2025-03-14 14:39:05 +01:00

16 lines
No EOL
313 B
C++

#pragma once
#include <string>
#include "image.h"
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);
}