https://github.com/ElsevierSoftwareX/SOFTX_2019_219
Raw File
Tip revision: 99932db9e71d31a76425d68eef7d5859523ca0e4 authored by Konrad Werys on 04 November 2019, 09:33:32 UTC
doc: changes in the documentation
Tip revision: 99932db
TomatoColormap.h
/*!
 * \file TomatoColormap.h
 * \author Konrad Werys
 * \date 2017/08/23
 */

#ifndef TomatoLIB_SHMOLLICOLORMAP_H
#define TomatoLIB_SHMOLLICOLORMAP_H

#include "CmakeConfigForTomato.h"

// TODO: reading from a file

#include <vector>
#include <string>
#include <iostream>

#ifdef USE_ITK
#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 //USE_ITK

#endif //TomatoLIB_SHMOLLICOLORMAP_H
back to top