https://github.com/ElsevierSoftwareX/SOFTX_2019_219
Raw File
Tip revision: 8449484d61814fb6b89eccbdcc29c5d51481966e authored by Konrad Werys on 07 December 2018, 11:08:10 UTC
travis works again
Tip revision: 8449484
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