JPEG画像を読み書きするためのライブラリ [詳細]
#include "../mist.h"#include "../config/color.h"#include "../limits.h"#include <iostream>#include <string>#include <jpeglib.h>ネームスペース | |
| namespace | mist |
関数 | |
| template<class T , class Allocator > | |
| bool | mist::read_jpeg (array2< T, Allocator > &image, const std::string &filename) |
| JPEG画像をMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::read_jpeg (array2< T, Allocator > &image, const std::wstring &filename) |
| JPEG画像をMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::write_jpeg (const array2< T, Allocator > &image, const std::string &filename, int quality=100) |
| MISTコンテナの画像をJPEG形式でファイルに出力する | |
| template<class T , class Allocator > | |
| bool | mist::write_jpeg (const array2< T, Allocator > &image, const std::wstring &filename, int quality=100) |
| MISTコンテナの画像をJPEG形式でファイルに出力する | |
JPEG画像を読み書きするためのライブラリ
JPEG2000画像を読み書きするためのライブラリ
本ライブラリは,http://www.libpng.org/pub/png/ で開発が行われている libjpeg を利用している エンコードとデコードは本ライブラリのAPIを用いて実装されているため,別途ライブラリを用意する必要がある
本ライブラリは,http://www.openjpeg.org/ で開発が行われている OpenJPEG ライブラリを利用している エンコードとデコードは本ライブラリのAPIを用いて実装されているため,別途ライブラリを用意する必要がある
1.8.1.2