DGtal
1.5.beta
|
This part of the manual describes how to import and export images and main DGtal objects from/to various formats.
In DGtal, file readers and writers are located in the "io/readers/" and "io/writers/" folders respectively. Most of them are dedicated to image format import/export but some other DGtal data structures can have such tools (e.g. point set/mesh readers).
Before going into details, let us first present an interesting tool for image visualisation or image export: predefined colormaps to convert scalars or to (red,green,blue) triplets.
Colormap models satisfy the CColormap concept. For short, a colormap is parametrized by a scalar value template type (Value). When constructed from two min and max values (of type Value), the colormap offers an operator returning a DGtal::Color for each value v in the interval [min,max].
For example, RandomColorMap returns a random color for each value v. More complex colormaps (GradientColorMap, HueShadeColorMap, ...) offer better colormap for scientific visualisation purposes.
Beside colormaps, TickedColorMap is a colormap adapter that adds ticks. For example, you can adapt a Black-Red gradient colormap to add regular white ticks (see usage in testTickedColorMap.cpp):
Ticks can be regularly spaced or explicitly given by the user.
In some situations, we may have to convert colors into scalar values (see below). In this case, basic conversion functors are available in the DGtal::functors namespace. For example, you would find in this namespace a DGtal::functors::RedChannel converter or a DGtal::functors::MeanChannels converter.
Hence, to implement a functor taking values and returning the red channel of a colormap, you just have to compose the two functors with the help of the Composer:
We first detail import/export format for DGtal images. Please refer to Images for details on images in DGtal and their associated concepts. First of all:
Hence, for image writers, some functors may return a DGtal::Color or a scalar value depending on the writer.
Dimension | Name | Description | Functor requirements | Class name | Comment |
---|---|---|---|---|---|
2D | PGM | Grayscale netpbm image format | the functor should return an unsigned char | PGMWriter | http://netpbm.sourceforge.net/ |
PPM | Color netpbm image format | the functor should return a DGtal::Color | PPMWriter | http://netpbm.sourceforge.net/ | |
any stb_image format | Color image format (png,jpg, bmp,tga ) | the functor must return a DGtal::Color | STBWriter | ||
any 2D ITK format | Grayscale or 2D ITK image | the functor should return a ITKIOTrait<Image::Value>::ValueOut | ITKWriter | with WITH_ITK build flag, http://www.itk.org/ | |
3D | PGM3D | Grayscale netpbm image format | the functor should return an unsigned char | PGMWriter | |
PPM3D | Color netpbm image format | the functor should return a DGtal::Color | PPMWriter | ||
Vol | Volumetric file format | the functor should return an unsigned char | VolWriter | Simplevol project, http://liris.cnrs.fr/david.coeurjolly | |
Longvol | Volumetric file format (long) | the functor should return a DGtal::uint64_t | LongvolWriter | Simplevol project, http://liris.cnrs.fr/david.coeurjolly | |
HDF5 | HDF5 file with 3D UInt8 image dataset(s) | the functor should return a DGtal::uint8_t | HDF5Writer | with WITH_HDF5 build flag, http://www.hdfgroup.org/HDF5/ | |
any 3D ITK format | Any 3D ITK image | the functor should return a ITKIOTrait<Image::Value>::ValueOut | ITKWriter | with WITH_ITK build flag, http://www.itk.org/ | |
nD | Raw8 | raw binary file format on 8bits | the functor should return an unsigned char | RawWriter | |
Raw16 | raw binary file format on 16bits | the functor should return an unsigned short | RawWriter | ||
Raw32 | raw binary file format on 32bits | the functor should return an unsigned int | RawWriter | ||
Raw | raw binary file format for any type | the functor should return the same type as specified in the template parameter of RawWriter::exportRaw | RawWriter |
For scalar value format (PGM, Vol, Longvol, Raw, ...), the associated template class have a default functor type. Hence, if you just want to cast your image values to the file format value type (e.g. "unsigned char" for Vol), do not specify any functor.
The class GenericWriter allows to automatically export any image (2d, 3d, nd) from its filename. The class is templated with an image container type, a dimension value (given by default by the image container dimension), a value type, (also given by default by the image container) and a functor type (by default set to the DefaultFunctor type).
To use it you need first to include the following header:
After constructing and filling an image (anImage2D or anImage3D), by default you can save it with:
As the other export functions, a functor can be used as optional argument (as given in the previous example):
If you don't need to specify special functor and if don't need to change default image type, you can use a less generic writer with the stream operator and the string filename:
To write color images, you need to use a functor which transform a scalar value into a Color. You can use the previous Colormaps :
Dimension | Name | Description | Class name | Comment |
---|---|---|---|---|
2D | PGM | Grayscale netpbm image format | PGMReader | http://netpbm.sourceforge.net/ |
any stb format | Any file format in the stb_image library (bmp,png,jpg,tga, gif) | STBReader | ||
HDF5 | HDF5 file with 2D image dataset(s) | HDF5Reader | with WITH_HDF5 build flag, http://www.hdfgroup.org/HDF5/ | |
any 2D ITK format | Any file format in the ITK library (png, jpg, mhd, mha, ...) | ITKReader | with WITH_ITK build flag, http://www.itk.org/ | |
3D | PGM3D | Grayscale netpbm image format | PGMReader | |
PGM | Same as PGM3D but with same header as in 2D (P2 or P5) | PGMReader | ||
DICOM | Medical format (from scanners, with the use of ITK library) | DicomReader | http://medical.nema.org/ | |
Vol | Volumetric file format | VolReader | Simplevol project, http://liris.cnrs.fr/david.coeurjolly | |
Longvol | Volumetric file format (long) | LongvolReader | Simplevol project, http://liris.cnrs.fr/david.coeurjolly | |
HDF5 | HDF5 file with 3D UInt8 image dataset(s) | HDF5Reader | with WITH_HDF5 build flag, http://www.hdfgroup.org/HDF5/ | |
any 3D ITK format | Any file format in the ITK library (mhd, mha, ...) | ITKReader | with WITH_ITK build flag, http://www.itk.org/ | |
nD | Raw8 | raw binary file format on 8bits | RawReader | |
Raw16 | raw binary file format on 16bits | RawReader | ||
Raw32 | raw binary file format on 32bits | RawReader | ||
Raw | raw binary file format for any type | RawReader |
The class GenericReader allows to automatically import any image (2d, 3d, nd) from its filename. The class is templated with an image container type, a dimension value (given by default by the image container dimension), a value type, (also given by default by the image container). Note that the reader choice between 8 bits or 32 bits is automatically done according to the templated image container type. So you can have an DGtal::IOException if you try to read a 8 bits raw image from an unsigned int image type (choose an 8 bits type like unsigned char or explicitly call the specific reader RawReader::importRaw8).
Use the same import function for both 2D or 3D images:
The Vol and Longvol formats are described on the simplevol project website (http://liris.cnrs.fr/david.coeurjolly/code/simplevol.html). Basically, the format consists in:
If you want to export an image to "Version 2" Vol or a Longvol, just add a false flag when exporting. For instance:
The static class PointListReader
allows to read discrete points represented in simple file where each line represent a single point.
The static class MeshReader
allows to import Mesh from OBJ, OFF or OFS file format. Actually this class can import surface mesh (Mesh) where faces are potentially represented by triangles, quadrilaters and polygons. Notes that Mesh can be directly displayed with Viewer3D.
The mesh importation can be done automatically from the extension file name by using the "<<" operator. For instance (see. Import 3D mesh from OFF file ):
You can also export a Mesh object by using the operator (">>"). Notes that the class Display3D permits also to generate a Mesh which can be exported (see. Export 3D mesh in OFF and OBJ format).
Importing and visualizing a digital set from a vol file can be done in few code lines. (see. digitalSetFromVol.cpp).
First we select the Image type with int:
Then the initial image is imported:
Afterwards the set is thresholded in ]0,255[:
Then you will obtain the following visualisation:
The example digitalSetFromPointList.cpp shows a simple example of 3d set importation:
We can change the way to select the coordinate field:
You may obtain the following visualisation:
The following example meshFromOFF.cpp shows in few lines how to import and display an OFF 3D mesh. Add the following headers to access to OFF reader and Viewer3D:
then import an example ".off" file from the example/sample directory:
Display the result:
You may obtain the following visualisation:
You can also import large scale mesh, like the one of classic Angel scan ( available here: http://www.cc.gatech.edu/projects/large_models/ )
The following example display3DToOFF.cpp shows in few lines how to export in OFF format a DigitalSet object. This object will be exported with a Display3D object (see. display3DToOFF.cpp).
Notes that the export can also be done in two steps:
The resulting mesh can be visualized for instance by using meshlab;
This code can be useful if you want to generate illustrations in the U3D format. For instance by using the U3D/PDF export from MeshLab or JReality ( www3.math.tu-berlin.de/jreality/). You can for instance generate some exports in pdf like this example:
(see this pdf file: http://dgtal.org/wp/wp-content/uploads/2010/10/3dKSSurfaceExtractionExport.pdf )