BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Functions
ui_save.cpp File Reference
#include "ui_save.h"
#include "imgui_stdlib.h"
#include <glm/glm.hpp>
#include <algorithm>
#include <exception>
#include <fstream>
Include dependency graph for ui_save.cpp:

Go to the source code of this file.

Functions

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. More...
 
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. More...
 
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)
 

Function Documentation

◆ write_clusters()

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

Definition at line 163 of file ui_save.cpp.

Here is the caller graph for this function:

◆ write_data_2d()

static void write_data_2d ( const std::vector< glm::vec2 > &  data,
std::ofstream &  handle 
)
static

Writes two-dimensional data into the file by a given handler.

Parameters
dataTwo-dimensional data to be written.
handleHandle to the opened file for writing.

Definition at line 155 of file ui_save.cpp.

Here is the caller graph for this function:

◆ write_data_float()

static void write_data_float ( size_t  dim,
const std::vector< float > &  data,
std::ofstream &  handle 
)
static

Writes multi-dimensional data into the file by a given handler.

Parameters
dimDimension of the data.
dataMulti-dimensional data to be written.
handleHandle to the opened file for writing.

Definition at line 136 of file ui_save.cpp.

Here is the caller graph for this function: