2019-11-08 10:06:07 -05:00
|
|
|
#ifndef READMICROCT_H
|
|
|
|
|
#define READMICROCT_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "common/Array.h"
|
|
|
|
|
#include "common/Communication.h"
|
|
|
|
|
#include "common/Database.h"
|
2020-01-28 08:51:32 -05:00
|
|
|
#include "common/MPI.h"
|
2019-11-08 10:06:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
Array<uint8_t> readMicroCT( const std::string& filename );
|
|
|
|
|
|
2020-01-28 08:51:32 -05:00
|
|
|
Array<uint8_t> readMicroCT( const Database& domain, const Utilities::MPI& comm );
|
2019-11-08 10:06:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|