https://github.com/ElsevierSoftwareX/SOFTX_2019_219
Raw File
Tip revision: a3d351fb6de40a4726ce169414d81715662c2728 authored by Konrad Werys on 16 November 2018, 12:33:56 UTC
adding calc time to the TomatoOptions
Tip revision: a3d351f
TomatoColormap.h
/*!
 * \file TomatoColormap.h
 * \author Konrad Werys
 * \date 2017/08/23
 */

#ifndef OXSHMOLLILIB_SHMOLLICOLORMAP_H
#define OXSHMOLLILIB_SHMOLLICOLORMAP_H

// TODO: reading from a file

#include <vector>
#include <string>
#include <iostream>
#include "gdcmGlobal.h"
#include "gdcmBase64.h"

std::string getEncodedSting(std::vector < uint16_t > encodeSource);

std::vector < uint16_t > getShmolliColormapRed3TArray();
std::vector < uint16_t > getShmolliColormapGreen3TArray();
std::vector < uint16_t > getShmolliColormapBlue3TArray();

std::vector < uint16_t > getShmolliColormapRed15TArray();
std::vector < uint16_t > getShmolliColormapGreen15TArray();
std::vector < uint16_t > getShmolliColormapBlue15TArray();

#endif //OXSHMOLLILIB_SHMOLLICOLORMAP_H
back to top