SatDump 2.0.0-alpha-76a915210
Loading...
Searching...
No Matches
reprojector.h
1#pragma once
2
3// TODOREWORK THIS WHOLE FILE IS TEMPORARY
4#include "image/image.h"
5#include "nlohmann/json.hpp"
6
7namespace satdump
8{
9 namespace projection
10 {
11 // Re-Projection operation
13 {
14 image::Image *img;
15 int output_width, output_height;
16 nlohmann::json target_prj_info;
17 bool use_old_algorithm = false;
18 };
19
20 image::Image reproject(ReprojectionOperation &op, float *progress = nullptr);
21 } // namespace projection
22} // namespace satdump
Definition image.h:17
Core Image class.