#include <functional>
#include <type_traits>
#include <tuple>
#include "debug.h"
#include "header.h"
#include "image_io/fetch_store.h"
#include "image_helpers.h"
#include "formats/mrtrix_utils.h"
#include "algo/copy.h"
#include "algo/threaded_copy.h"
Go to the source code of this file.
|
template<class ImageType > |
std::enable_if< is_adapter_type< typenamestd::remove_reference< ImageType >::type >::value, std::string >::type | MR::save (ImageType &&x, const std::string &filename, bool use_multi_threading=true) |
| save contents of an existing image to file (for debugging only) More...
|
|
template<class ImageType > |
std::enable_if< is_pure_image< typenamestd::remove_reference< ImageType >::type >::value, std::string >::type | MR::save (ImageType &&x, const std::string &filename, bool use_multi_threading=true) |
| save contents of an existing image to file (for debugging only) More...
|
|
template<class ImageType > |
enable_if_image_type< ImageType, void >::type | MR::display (ImageType &x) |
| display the contents of an image in MRView (for debugging only) More...
|
|