riCOM_cpp
This repository contains the C++ implementation of the riCOM (Real Time Centre Of Mass) algorithm for 4D Scanning electron microscopy.
|
#include <vector>
#include <string>
#include <stdio.h>
#include <algorithm>
#include <SDL.h>
#include <SDL_opengl.h>
#include "tinycolormap.hpp"
#include "fft2d.hpp"
#include "imgui.h"
#include "imgui_impl_sdl.h"
#include "imgui_impl_opengl3.h"
#include "imgui_stdlib.h"
#include "imgui_internal.h"
#include "imfilebrowser.h"
#include "GuiUtils.h"
Go to the source code of this file.
Classes | |
class | ImGuiImageWindow< T > |
Enumerations | |
enum class | GIM_Flags : unsigned char { None = 0 , SaveImButton = 1 << 1 , SaveDataButton = 1 << 2 , ColormapSelector = 1 << 3 , FftButton = 1 << 4 , PowerSlider = 1 << 5 } |
Functions | |
GIM_Flags | operator& (GIM_Flags lhs, GIM_Flags rhs) |
GIM_Flags | operator| (GIM_Flags lhs, GIM_Flags rhs) |
|
strong |
Enumerator | |
---|---|
None | |
SaveImButton | |
SaveDataButton | |
ColormapSelector | |
FftButton | |
PowerSlider |
Definition at line 33 of file ImGuiImageWindow.h.
Definition at line 49 of file ImGuiImageWindow.cpp.