#include "image_store.h"
#include "pixel_formats.h"
#include <exception>
#include <iostream>
#include <fstream>
#include <sstream>
#include <iomanip>
#include <limits>
#include <algorithm>
Go to the source code of this file.
|
std::string | rcg::ensureNewFileName (std::string name) |
| This method checks if the given file name already exists and produces a new file name if this happens. More...
|
|
std::string | rcg::storeImage (const std::string &name, ImgFmt fmt, const Image &image, size_t yoffset=0, size_t height=0) |
| Stores the given image. More...
|
|
std::string | rcg::storeImageAsDisparityPFM (const std::string &name, const Image &image, int inv, float scale, float offset) |
| Stores the given image as disparity. More...
|
|