![]() |
Visual Servoing Platform
version 3.3.0
|
#include <vpImageIo.h>
Static Public Member Functions | |
static void | read (vpImage< unsigned char > &I, const std::string &filename) |
static void | read (vpImage< vpRGBa > &I, const std::string &filename) |
static void | write (const vpImage< unsigned char > &I, const std::string &filename) |
static void | write (const vpImage< vpRGBa > &I, const std::string &filename) |
static void | readPFM (vpImage< float > &I, const std::string &filename) |
static void | readPGM (vpImage< unsigned char > &I, const std::string &filename) |
static void | readPGM (vpImage< vpRGBa > &I, const std::string &filename) |
static void | readPPM (vpImage< unsigned char > &I, const std::string &filename) |
static void | readPPM (vpImage< vpRGBa > &I, const std::string &filename) |
static void | readJPEG (vpImage< unsigned char > &I, const std::string &filename) |
static void | readJPEG (vpImage< vpRGBa > &I, const std::string &filename) |
static void | readPNG (vpImage< unsigned char > &I, const std::string &filename) |
static void | readPNG (vpImage< vpRGBa > &I, const std::string &filename) |
static void | writePFM (const vpImage< float > &I, const std::string &filename) |
static void | writePGM (const vpImage< unsigned char > &I, const std::string &filename) |
static void | writePGM (const vpImage< short > &I, const std::string &filename) |
static void | writePGM (const vpImage< vpRGBa > &I, const std::string &filename) |
static void | writePPM (const vpImage< unsigned char > &I, const std::string &filename) |
static void | writePPM (const vpImage< vpRGBa > &I, const std::string &filename) |
static void | writeJPEG (const vpImage< unsigned char > &I, const std::string &filename) |
static void | writeJPEG (const vpImage< vpRGBa > &I, const std::string &filename) |
static void | writePNG (const vpImage< unsigned char > &I, const std::string &filename) |
static void | writePNG (const vpImage< vpRGBa > &I, const std::string &filename) |
Read/write images with various image format.
This class has its own implementation of PGM and PPM images read/write.
This class may benefit from optional 3rd parties:
The code below shows how to convert an PPM P6 image file format into a PGM P5 image file format. The extension of the filename is here used in read() and write() functions to set the image file format (".pgm" for PGM P5 and ".ppm" for PPM P6).
This other example available in tutorial-image-reader.cpp shows how to read/write jpeg images. It supposes that libjpeg
is installed.
Definition at line 103 of file vpImageIo.h.
|
static |
Read the contents of the image filename, allocate memory for the corresponding greyscale image, update its content, and return a reference to the image.
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
Always supported formats are *.pgm and *.ppm. JPEG and PNG formats are supported through the stb_image public domain image loader. If libjpeg
3rd party is used, we support also *.jpg and *.jpeg files. If libpng
3rd party is used, we support also *.png files. If OpenCV 3rd party is used, we support *.jpg, *.jpeg, *.jp2, *.rs, *.ras, .tiff, *.tif, *.png, *.bmp, *.pbm files.
I | : Image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 242 of file vpImageIo.cpp.
Referenced by vpMbTracker::initClick(), and vpVirtualGrabber::vpVirtualGrabber().
Read the contents of the image filename, allocate memory for the corresponding color image, update its content, and return a reference to the image.
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
Always supported formats are *.pgm and *.ppm. JPEG and PNG formats are supported through the stb_image public domain image loader. If libjpeg
3rd party is used, we support also *.jpg and *.jpeg files. If libpng
3rd party is used, we support also *.png files. If OpenCV 3rd party is used, we support *.jpg, *.jpeg, *.jp2, *.rs, *.ras, .tiff, *.tif, *.png, *.bmp, *.pbm files.
I | : Image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 346 of file vpImageIo.cpp.
|
static |
Read the contents of the JPEG file, allocate memory for the corresponding gray level image, if necessary convert the data in gray level, and set the bitmap whith the gray level data. That means that the image I is a "black and white" rendering of the original image in filename, as in a black and white photograph. If necessary, the quantization formula used is .
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
I | : Image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 1182 of file vpImageIo.cpp.
Read a JPEG file and initialize a scalar image.
Read the contents of the JPEG file, allocate memory for the corresponding image, and set the bitmap whith the content of the file.
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
If the file corresponds to a grayscaled image, a conversion is done to deal with I which is a color image.
I | : Color image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 1262 of file vpImageIo.cpp.
|
static |
Read a PFM P8 file and initialize a float image.
Read the contents of the portable gray pixmap (PFM P8) filename, allocate memory for the corresponding image, and set the bitmap whith the content of the file.
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
I | : Image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 767 of file vpImageIo.cpp.
|
static |
Read a PGM P5 file and initialize a scalar image.
Read the contents of the portable gray pixmap (PGM P5) filename, allocate memory for the corresponding image, and set the bitmap whith the content of the file.
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
I | : Image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 821 of file vpImageIo.cpp.
Read a PGM P5 file and initialize a scalar image.
Read the contents of the portable gray pixmap (PGM P5) filename, allocate memory for the corresponding image, and set the bitmap whith the content of the file.
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
The gray level image contained in the filename is converted in a color image in I.
I | : Color image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 878 of file vpImageIo.cpp.
|
static |
Read the contents of the PNG file, allocate memory for the corresponding gray level image, if necessary convert the data in gray level, and set the bitmap whith the gray level data. That means that the image I is a "black and white" rendering of the original image in filename, as in a black and white photograph. If necessary, the quantization formula used is .
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
I | : Image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 1719 of file vpImageIo.cpp.
Read a PNG file and initialize a scalar image.
Read the contents of the PNG file, allocate memory for the corresponding image, and set the bitmap whith the content of the file.
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
If the file corresponds to a grayscaled image, a conversion is done to deal with I which is a color image.
I | : Color image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 1896 of file vpImageIo.cpp.
|
static |
Read the contents of the portable pixmap (PPM P6) filename, allocate memory for the corresponding gray level image, convert the data in gray level, and set the bitmap whith the gray level data. That means that the image I is a "black and white" rendering of the original image in filename, as in a black and white photograph. The quantization formula used is .
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
I | : Image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 907 of file vpImageIo.cpp.
Read the contents of the portable pixmap (PPM P6) filename, allocate memory for the corresponding vpRGBa image.
If the image has been already initialized, memory allocation is done only if the new image size is different, else we re-use the same memory space.
I | : Image to set with the filename content. |
filename | : Name of the file containing the image. |
Definition at line 927 of file vpImageIo.cpp.
|
static |
Write the content of the image in the file which name is given by filename.
Always supported formats are *.pgm and *.ppm. JPEG and PNG formats are supported through the stb_image_write public domain image writer. If libjpeg
3rd party is used, we support also *.jpg and *.jpeg files. If libpng
3rd party is used, we support also *.png files. If OpenCV 3rd party is used, we support *.jpg, *.jpeg, *.jp2, *.rs, *.ras, .tiff, *.tif, *.png, *.bmp, *.pbm files.
I | : Image to write. |
filename | : Name of the file containing the image. |
Definition at line 444 of file vpImageIo.cpp.
Referenced by vpSimulator::write().
Write the content of the image in the file which name is given by filename.
Always supported formats are *.pgm and *.ppm. JPEG and PNG formats are supported through the stb_image_write public domain image writer. If libjpeg
3rd party is used, we support also *.jpg and *.jpeg files. If libpng
3rd party is used, we support also *.png files. If OpenCV 3rd party is used, we support *.jpg, *.jpeg, *.jp2, *.rs, *.ras, .tiff, *.tif, *.png, *.bmp, *.pbm files.
I | : Image to write. |
filename | : Name of the file containing the image. |
Definition at line 523 of file vpImageIo.cpp.
|
static |
Write the content of the image bitmap in the file which name is given by filename. This function writes a JPEG file.
I | : Image to save as a JPEG file. |
filename | : Name of the file containing the image. |
Definition at line 1054 of file vpImageIo.cpp.
Write the content of the image bitmap in the file which name is given by filename. This function writes a JPEG file.
I | : Image to save as a JPEG file. |
filename | : Name of the file containing the image. |
Definition at line 1111 of file vpImageIo.cpp.
|
static |
Write the content of the image bitmap in the file which name is given by filename. This function is built like portable gray pixmap (eg PGM P5) file. but considers float image data.
I | : Image to save as a (PFM P8) file. |
filename | : Name of the file containing the image. |
Definition at line 601 of file vpImageIo.cpp.
|
static |
Write the content of the image bitmap in the file which name is given by filename. This function writes a portable gray pixmap (PGM P5) file.
I | : Image to save as a (PGM P5) file. |
filename | : Name of the file containing the image. |
Definition at line 690 of file vpImageIo.cpp.
|
static |
Write the content of the image bitmap in the file which name is given by filename. This function writes a portable gray pixmap (PGM P5) file.
I | : Image to save as a (PGM P5) file. |
filename | : Name of the file containing the image. |
Definition at line 647 of file vpImageIo.cpp.
Write the content of the image bitmap in the file which name is given by filename. This function writes a portable gray pixmap (PGM P5) file. Color image is converted into a grayscale image.
I | : Image to save as a (PGM P5) file. |
filename | : Name of the file containing the image. |
Definition at line 712 of file vpImageIo.cpp.
|
static |
Write the content of the image bitmap in the file which name is given by filename. This function writes a PNG file.
I | : Image to save as a PNG file. |
filename | : Name of the file containing the image. |
Definition at line 1510 of file vpImageIo.cpp.
Write the content of the image bitmap in the file which name is given by filename. This function writes a PNG file.
I | : Image to save as a PNG file. |
filename | : Name of the file containing the image. |
Definition at line 1607 of file vpImageIo.cpp.
|
static |
Write the content of the bitmap in the file which name is given by filename. This function writes a portable gray pixmap (PPM P6) file. grayscale image is converted into a color image vpRGBa.
I | : Image to save as a (PPM P6) file. |
filename | : Name of the file containing the image. |
Definition at line 986 of file vpImageIo.cpp.
Write the content of the bitmap in the file which name is given by filename. This function writes a portable gray pixmap (PPM P6) file.
I | : Image to save as a (PPM P6) file. |
filename | : Name of the file containing the image. |
Definition at line 1002 of file vpImageIo.cpp.