This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
void | read_image (const string &filename, int img_index=0, bool header_only=false, const Region *region=0, bool is_3d=false) |
read an image file and stores its information to this EMData object. | |
void | read_binedimage (const string &filename, int img_index=0, int binfactor=0, bool fast=false, bool is_3d=false) |
read in a binned image, bin while reading. | |
void | write_image (const string &filename, int img_index=0, EMUtil::ImageType imgtype=EMUtil::IMAGE_UNKNOWN, bool header_only=false, const Region *region=0, EMUtil::EMDataType filestoragetype=EMUtil::EM_FLOAT, bool use_host_endian=true) |
write the header and data out to an image. | |
void | append_image (const string &filename, EMUtil::ImageType imgtype=EMUtil::IMAGE_UNKNOWN, bool header_only=false) |
append to an image file; If the file doesn't exist, create one. | |
void | write_lst (const string &filename, const string &reffile="", int refn=-1, const string &comment="") |
Append data to a LST image file. | |
void | print_image (const string str=string(""), ostream &out=std::cout) |
Print the image data to a file stream (standard out by default). | |
vector< boost::shared_ptr< EMData > > | read_images (const string &filename, vector< int >img_indices=vector< int >(), bool header_only=false) |
Read a set of images from file specified by 'filename'. | |
vector< boost::shared_ptr< EMData > > | read_images_ext (const string &filename, int img_index_start, int img_index_end, bool header_only=false, const string &ext="") |
Read a set of images from file specified by 'filename'. |
|
append to an image file; If the file doesn't exist, create one.
|
|
Print the image data to a file stream (standard out by default).
|
|
read in a binned image, bin while reading. For use in huge files(tomograms)
|
|
read an image file and stores its information to this EMData object. If a region is given, then only read a region of the image file. The region will be this EMData object. The given region must be inside the given image file. Otherwise, an error will be created.
|
|
Read a set of images from file specified by 'filename'. Which images are read is set by 'img_indices'.
Referenced by EMAN::EMUtil::get_all_attributes(). |
|
Read a set of images from file specified by 'filename'. If the given 'ext' is not empty, replace 'filename's extension it. Images with index from img_index_start to img_index_end are read.
|
|
write the header and data out to an image. If the img_index = -1, append the image to the given image file. If the given image file already exists, this image format only stores 1 image, and no region is given, then truncate the image file to zero length before writing data out. For header writing only, no truncation happens. If a region is given, then write a region only.
Referenced by EMAN::RotateInFSProcessor::process_inplace(). |
|
Append data to a LST image file.
|