22#include "imgui_stdlib.h"
32 , saver(ImGuiFileBrowserFlags_SelectDirectory |
33 ImGuiFileBrowserFlags_CreateNewDir)
35 , data_flags{ false, false, false, false, false }
36 , file_names{
"points_hd.tsv",
42 saver.SetTitle(
"Select directory");
53 if (
saver.HasSelected()) {
56 }
catch (std::exception &e) {
60 saver.ClearSelected();
64 ImGui::Begin(
"Saving error",
nullptr, window_flags);
66 if (ImGui::Button(
"OK"))
71 if (ImGui::Begin(
"Save##window", &
show_window, window_flags)) {
72 auto save_line = [&](
const char *text,
int type) {
74 std::string checkbox_name =
75 "##save_checkbox" + std::to_string(type);
76 ImGui::Checkbox(checkbox_name.data(), &
data_flags[type]);
78 std::string inputtext_name =
79 "file name##save" + std::to_string(type);
80 ImGui::InputText(inputtext_name.data(), &
file_names[type]);
83 save_line(
"Save hidim points:", UiSaver::Types::POINTS_HD);
85 save_line(
"Save hidim landmarks:", UiSaver::Types::LAND_HD);
87 save_line(
"Save 2D points:", UiSaver::Types::POINTS_2D);
89 save_line(
"Save 2D landmarks:", UiSaver::Types::LAND_2D);
91 save_line(
"Save clusters:", UiSaver::Types::CLUSTERS);
94 if (ImGui::Checkbox(
"Save all", &
all))
102 if (ImGui::Button(
"Save##button"))
113 write(UiSaver::Types::POINTS_HD, state, dir_name);
116 write(UiSaver::Types::LAND_HD, state, dir_name);
119 write(UiSaver::Types::POINTS_2D, state, dir_name);
122 write(UiSaver::Types::LAND_2D, state, dir_name);
125 write(UiSaver::Types::CLUSTERS, state, dir_name);
137 const std::vector<float> &data,
138 std::ofstream &handle)
140 for (
size_t i = 0; i < data.size(); i += dim) {
141 for (
size_t j = 0; j < dim - 1; ++j) {
142 handle << data[i + j] <<
'\t';
144 handle << data[i + dim - 1] <<
'\n';
157 for (
size_t i = 0; i < data.size(); ++i) {
158 handle << data[i].x <<
'\t' << data[i].y <<
'\n';
164 const std::map<
int, std::pair<glm::vec3, std::string>> &clusters,
165 std::ofstream &handle)
167 for (
size_t i = 0; i < landmarks.size(); ++i) {
168 auto id = landmarks[i].second;
169 auto color = clusters.at(
id).first;
170 auto name = clusters.at(
id).second;
171 handle << i <<
'\t' << color.r <<
'\t' << color.g <<
'\t' << color.b
172 <<
'\t' << name <<
'\n';
179 const std::string &dir_name)
const
181 std::string path = dir_name +
"/" +
file_names[type];
182 std::ofstream handle(path, std::ios::out);
184 throw std::domain_error(
"Can not open file");
187 case UiSaver::Types::POINTS_HD:
190 case UiSaver::Types::LAND_HD:
194 case UiSaver::Types::POINTS_2D:
197 case UiSaver::Types::LAND_2D:
200 case UiSaver::Types::CLUSTERS:
std::map< int, std::pair< glm::vec3, std::string > > clusters
Cluster colors and names for brushing, with id of cluster as a key.
std::vector< std::pair< const glm::vec3 *, int > > landmarks
Colors of the landmarks and id of the cluster.
std::vector< glm::vec2 > lodim_vertices
Array storing two-dimensional landmark coordinates.
std::vector< float > hidim_vertices
One-dimensional array storing d-dimensional landmark coordinates in row-major order.
std::vector< float > data
Scaled data in the same format as DataModel::data.
size_t dim() const
Returns dimension of the scaled data.
std::vector< glm::vec2 > points
Coordinates of the two-dimensional data points.
Storage of data of used algorithms and input events.
Types
Types of data to be exported.
std::array< std::string, UiSaver::Types::COUNT > file_names
Names of the exported files for each export data type.
void render(State &state, ImGuiWindowFlags window_flags)
Renders save file window, opens save file dialog window and calls save_data() if a directory was sele...
UiSaver()
Initializes saver settings and initializes variables with default values.
void save_data(const State &state, const std::string &dir_name) const
Calls write() for selected export data types.
bool show_window
If the save file window should be rendered.
std::array< bool, UiSaver::Types::COUNT > data_flags
Array of flags for each export data type indicating which data should be exported and which not.
void write(UiSaver::Types type, const State &state, const std::string &dir_name) const
Writes given data into the file in the tsv format.
std::string saving_error
Error message of the saving file that will be shown in the error window.
ImGui::FileBrowser saver
ImGui file system dialog window handler.
bool all
If all types of data should be exported.
static void write_data_2d(const std::vector< glm::vec2 > &data, std::ofstream &handle)
Writes two-dimensional data into the file by a given handler.
static void write_clusters(std::vector< std::pair< const glm::vec3 *, int > > landmarks, const std::map< int, std::pair< glm::vec3, std::string > > &clusters, std::ofstream &handle)
static void write_data_float(size_t dim, const std::vector< float > &data, std::ofstream &handle)
Writes multi-dimensional data into the file by a given handler.