imgcodecs: Implementation of PAM encoder/decoder
authorDimitrios Katsaros <patcherwork@gmail.com>
Thu, 14 Jul 2016 13:27:36 +0000 (15:27 +0200)
committerDimitrios Katsaros <patcherwork@gmail.com>
Tue, 6 Sep 2016 13:47:22 +0000 (15:47 +0200)
commit6172803012c679ec345c2e91207874d72ec62a89
tree0d8b40a127c9de0420a5dc8b4477a7a4ad9d195c
parentce05d6cb89450a5778f4c0169b5da5589798192a
imgcodecs: Implementation of PAM encoder/decoder

This patch implements the PAM image format as defined at:
http://netpbm.sourceforge.net/doc/pam.html

The PAM format provides a generic means for storing 2 dimensional information.
This is useful for opencv since there are cases where data gets translated into
non standardized formats, which makes it difficult to store and load this information.
modules/imgcodecs/include/opencv2/imgcodecs.hpp
modules/imgcodecs/include/opencv2/imgcodecs/imgcodecs_c.h
modules/imgcodecs/src/grfmt_pam.cpp [new file with mode: 0644]
modules/imgcodecs/src/grfmt_pam.hpp [new file with mode: 0644]
modules/imgcodecs/src/grfmts.hpp
modules/imgcodecs/src/loadsave.cpp