#include <string>
#include <dlrComputerVision/image.h>
Go to the source code of this file.
Namespaces | |
| namespace | dlr::computerVision |
| This namespace is still in the early stages of development. | |
Defines | |
| #define | HAVE_LIBPNG 1 |
Functions | |
| Image< GRAY8 > | dlr::computerVision::readPGM8 (const std::string &fileName) |
| Image< GRAY8 > | dlr::computerVision::readPGM8 (const std::string &fileName, std::string &commentString) |
| Image< GRAY16 > | dlr::computerVision::readPGM16 (const std::string &fileName) |
| Image< RGB8 > | dlr::computerVision::readPPM8 (const std::string &fileName) |
| Image< RGB8 > | dlr::computerVision::readPPM8 (const std::string &fileName, std::string &commentString) |
| void | dlr::computerVision::writePGM8 (const std::string &fileName, const Image< GRAY8 > &outputImage, const std::string &comment) |
| void | dlr::computerVision::writePGM16 (const std::string &fileName, const Image< GRAY16 > &outputImage, const std::string &comment) |
| void | dlr::computerVision::writePPM8 (const std::string &fileName, const Image< RGB8 > &outputImage, const std::string &comment) |
| Image< GRAY8 > | dlr::computerVision::readPNG8 (const std::string &fileName, std::string &commentString) |
| WARNING: This routine may not stick around for long. | |
| void | dlr::computerVision::writePNG8 (const std::string &fileName, const Image< GRAY8 > &outputImage, const std::string &comment="") |
| WARNING: This routine may not stick around for long. | |
Copyright (C) 2005-2008 David LaRose, dlr@cs.cmu.edu See accompanying file, LICENSE.TXT, for details.
Definition in file imageIO.h.
1.5.8