mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
61 lines
No EOL
1.8 KiB
C++
61 lines
No EOL
1.8 KiB
C++
#pragma once
|
|
|
|
#include "viewer.h"
|
|
|
|
#include "logger.h"
|
|
#include "products/radiation_products.h"
|
|
#include "common/widgets/image_view.h"
|
|
#include "imgui/imgui_stdlib.h"
|
|
#include "libs/ctpl/ctpl_stl.h"
|
|
|
|
namespace satdump
|
|
{
|
|
class RadiationViewerHandler : public ViewerHandler
|
|
{
|
|
public:
|
|
~RadiationViewerHandler();
|
|
|
|
// Products
|
|
RadiationProducts *products;
|
|
|
|
// Visualization
|
|
int selected_visualization_id = 0;
|
|
|
|
// Map viz
|
|
image::Image<uint16_t> map_img;
|
|
int select_channel_image_id = 0;
|
|
std::string select_channel_image_str;
|
|
ImageViewWidget image_view;
|
|
int map_min = 0, map_max = 255;
|
|
|
|
// Graph viz
|
|
std::vector<std::vector<float>> graph_values;
|
|
|
|
void init();
|
|
void update();
|
|
|
|
void drawMenu();
|
|
void drawContents(ImVec2 win_size);
|
|
float drawTreeMenu();
|
|
|
|
static std::string getID() { return "radiation_handler"; }
|
|
static std::shared_ptr<ViewerHandler> getInstance() { return std::make_shared<RadiationViewerHandler>(); }
|
|
|
|
// Projections
|
|
bool use_draw_proj_algo = false;
|
|
bool projection_ready = false, should_project = false;
|
|
image::Image<uint16_t> projected_img;
|
|
|
|
bool canBeProjected();
|
|
bool hasProjection();
|
|
bool shouldProject();
|
|
void updateProjection(int width, int height, nlohmann::json settings, float *progess);
|
|
image::Image<uint16_t> &getProjection();
|
|
unsigned int getPreviewImageTexture() { return image_view.getTextID(); }
|
|
void setShouldProject(bool proj) { should_project = proj; }
|
|
|
|
ctpl::thread_pool handler_thread_pool = ctpl::thread_pool(1);
|
|
std::mutex async_image_mutex;
|
|
bool is_updating = false;
|
|
};
|
|
} |