2025-09-23 21:57:08 +02:00
|
|
|
#include "PixelariumImageViewDefault.hpp"
|
2025-09-13 14:49:59 +02:00
|
|
|
|
2026-02-08 12:09:02 +01:00
|
|
|
#include <opencv2/core/hal/interface.h>
|
|
|
|
|
|
|
|
|
|
#include <cstdio>
|
2025-09-13 14:49:59 +02:00
|
|
|
#include <format>
|
2026-02-08 12:09:02 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <opencv2/core.hpp>
|
|
|
|
|
#include <opencv2/imgproc.hpp>
|
|
|
|
|
#include <ostream>
|
|
|
|
|
#include <ranges>
|
|
|
|
|
#include <utility>
|
2025-09-13 14:49:59 +02:00
|
|
|
|
2026-02-08 12:09:02 +01:00
|
|
|
#include "IPixelariumImage.hpp"
|
2025-09-25 19:25:17 +02:00
|
|
|
#include "RenderHelpers.hpp"
|
2026-01-23 23:00:35 +00:00
|
|
|
#include "app_resources_default.h"
|
2025-09-13 14:49:59 +02:00
|
|
|
#include "imgui.h"
|
2026-02-08 12:09:02 +01:00
|
|
|
#include "implot.h"
|
|
|
|
|
#include "simple_thread_pool.hpp"
|
2026-01-23 23:00:35 +00:00
|
|
|
|
|
|
|
|
void pixelarium::application::PixelariumImageViewDefault::RefreshCachedImage()
|
|
|
|
|
{
|
|
|
|
|
if (this->cached_image_.empty() || this->is_dirty_)
|
|
|
|
|
{
|
|
|
|
|
this->cached_image_ = this->img_->TryGetImage().value_or(cv::Mat{});
|
|
|
|
|
this->is_dirty_ = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-08 12:09:02 +01:00
|
|
|
void pixelarium::application::PixelariumImageViewDefault::ImageViewMenuBarAdditions()
|
|
|
|
|
{
|
|
|
|
|
ImGui::MenuItem("Histogram", NULL, &this->show_hists_);
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-13 14:49:59 +02:00
|
|
|
/// @brief Displays the image in an ImGui window.
|
|
|
|
|
///
|
|
|
|
|
/// If the image is null, empty, or has an empty name, the function returns immediately. Otherwise, it creates an ImGui
|
|
|
|
|
/// window with a horizontal scrollbar and menu bar. The image is rendered using the CvMatRender object, resizing it to
|
|
|
|
|
/// fit the available window space. The raw and rendered dimensions are displayed below the image.
|
2026-01-23 23:00:35 +00:00
|
|
|
void pixelarium::application::PixelariumImageViewDefault::ShowImage()
|
2025-09-13 14:49:59 +02:00
|
|
|
{
|
2026-01-23 23:00:35 +00:00
|
|
|
RefreshCachedImage();
|
2025-09-22 23:13:28 +02:00
|
|
|
|
2026-01-23 23:00:35 +00:00
|
|
|
if (this->img_->Empty() || this->img_->type_ == imaging::ImageFileType::kUnknown || this->cached_image_.empty() ||
|
2025-09-25 19:25:17 +02:00
|
|
|
this->img_->Name().empty())
|
2025-09-13 14:49:59 +02:00
|
|
|
{
|
|
|
|
|
// do nothing
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-23 23:00:35 +00:00
|
|
|
if (first_render_)
|
|
|
|
|
{
|
|
|
|
|
first_render_ = false;
|
|
|
|
|
|
|
|
|
|
const auto cached_width{cached_image_.cols};
|
|
|
|
|
const auto cached_heigth{cached_image_.rows};
|
|
|
|
|
const auto ratio{static_cast<float>(cached_heigth) / cached_width};
|
|
|
|
|
SetInitialSize(kInitialWindowWidth, (kInitialWindowWidth * ratio + 100));
|
2026-02-08 12:09:02 +01:00
|
|
|
utils::pixelarium_pool::enqueue([this]() { GenerateHistogram(); });
|
2026-01-23 23:00:35 +00:00
|
|
|
}
|
|
|
|
|
|
2025-09-25 19:25:17 +02:00
|
|
|
ImGui::Begin(this->img_->Name().c_str(), &this->open_p,
|
|
|
|
|
ImGuiWindowFlags_HorizontalScrollbar | ImGuiWindowFlags_MenuBar);
|
2025-09-13 14:49:59 +02:00
|
|
|
|
2026-01-23 23:00:35 +00:00
|
|
|
ImageViewMenuBar();
|
|
|
|
|
|
2025-09-13 14:49:59 +02:00
|
|
|
this->curr_dim_ = ImGui::GetContentRegionAvail();
|
|
|
|
|
auto new_dim = ImGui::GetContentRegionAvail();
|
|
|
|
|
auto texture =
|
|
|
|
|
dim_changed_p(this->curr_dim_, new_dim)
|
|
|
|
|
? this->render_.Render(static_cast<size_t>(this->curr_dim_.x), static_cast<size_t>(this->curr_dim_.y))
|
|
|
|
|
: this->render_.Render();
|
|
|
|
|
|
|
|
|
|
this->curr_dim_ = new_dim;
|
|
|
|
|
|
2026-01-23 23:00:35 +00:00
|
|
|
ImVec2 dim(cached_image_.cols, cached_image_.rows);
|
2025-09-13 14:49:59 +02:00
|
|
|
|
|
|
|
|
ImGui::Image(reinterpret_cast<ImTextureID>(reinterpret_cast<void*>(texture)),
|
2025-09-22 23:13:28 +02:00
|
|
|
aspect_const_dimensions(dim, new_dim));
|
2025-09-13 14:49:59 +02:00
|
|
|
|
|
|
|
|
ImGui::Separator();
|
2026-02-08 12:09:02 +01:00
|
|
|
|
|
|
|
|
if (show_hists_ && hist_available_)
|
|
|
|
|
{
|
|
|
|
|
if (ImPlot::BeginPlot("Histogram"))
|
|
|
|
|
{
|
|
|
|
|
ImPlot::SetupAxes(nullptr, nullptr, ImPlotAxisFlags_AutoFit, ImPlotAxisFlags_AutoFit);
|
|
|
|
|
using style_pair = std::pair<const char*, ImVec4>;
|
|
|
|
|
|
|
|
|
|
constexpr std::array<style_pair, 3> names = {
|
|
|
|
|
{{"Blue", ImVec4(0, 0, 1, 1)}, {"Green", ImVec4(0, 1, 0, 1)}, {"Red", ImVec4(1, 0, 0, 1)}}};
|
|
|
|
|
// for (auto& e : hist_planes_)
|
|
|
|
|
// {
|
|
|
|
|
// ImPlot::PlotHistogram(name.c_str(), e.data, e.rows * e.cols, 16);
|
|
|
|
|
// for (auto& e : name)
|
|
|
|
|
// {
|
|
|
|
|
// e++;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
for (size_t i{0}; i < hist_planes_.size(); ++i)
|
|
|
|
|
{
|
|
|
|
|
if (hist_planes_.at(i).type() == CV_32F)
|
|
|
|
|
{
|
|
|
|
|
// ImPlot::PlotHistogram(names.at(i % 3), reinterpret_cast<float*>(hist_planes_[i].data),
|
|
|
|
|
// hist_planes_[i].rows * hist_planes_[i].cols, 16, 1.0, ImPlotRange(),
|
|
|
|
|
// ImPlotHistogramFlags_Horizontal);
|
|
|
|
|
ImPlot::PushStyleColor(ImPlotCol_Line, names.at(i % 3).second);
|
|
|
|
|
ImPlot::PlotLine(std::format("{}-line", names.at(i % 3).first).c_str(),
|
|
|
|
|
reinterpret_cast<float*>(hist_planes_[i].data),
|
|
|
|
|
hist_planes_[i].rows * hist_planes_[i].cols);
|
|
|
|
|
ImPlot::PopStyleColor();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImPlot::PushStyleVar(ImPlotStyleVar_FillAlpha, 0.25f);
|
|
|
|
|
ImPlot::SetNextMarkerStyle(ImPlotMarker_Square, 6, ImPlot::GetColormapColor(1), IMPLOT_AUTO,
|
|
|
|
|
ImPlot::GetColormapColor(1));
|
|
|
|
|
|
|
|
|
|
ImPlot::EndPlot();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-13 14:49:59 +02:00
|
|
|
ImGui::Text("%s", std::format(" Raw Dimensions W : {}, H: {}", dim.x, dim.y).c_str());
|
|
|
|
|
ImGui::Text("%s", std::format("Render Dimensions W : {}, H: {}", curr_dim_.x, curr_dim_.y).c_str());
|
|
|
|
|
|
|
|
|
|
ImGui::End();
|
|
|
|
|
}
|
2026-02-08 12:09:02 +01:00
|
|
|
|
|
|
|
|
auto pixelarium::application::PixelariumImageViewDefault::GenerateHistogram() -> void
|
|
|
|
|
{
|
|
|
|
|
cv::split(cached_image_, bgr_planes_);
|
|
|
|
|
hist_planes_.resize(bgr_planes_.size());
|
|
|
|
|
|
|
|
|
|
int histSize = 256;
|
|
|
|
|
float range[] = {0, 256}; // the upper boundary is exclusive
|
|
|
|
|
const float* histRange[] = {range};
|
|
|
|
|
|
|
|
|
|
for (auto [bgr, hist] : std::ranges::views::zip(bgr_planes_, hist_planes_))
|
|
|
|
|
{
|
|
|
|
|
cv::calcHist(&bgr, 1, 0, cv::Mat(), hist, 1, &histSize, histRange, true, false);
|
|
|
|
|
// cv::normalize(hist, hist);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hist_available_ = true;
|
|
|
|
|
}
|