ColorContrast
inout.h
1 /* inout.h */
2 
3 #ifndef INOUT_H
4 #define INOUT_H
5 
6 #include <Image.h>
7 #include "io_tiff.h"
8 
9 void write(char * archima, Image * imR);
10 void writeBW(char * archima, Image * imR);
11 void read(Image* out, char * archima);
12 
13 #endif
void read(Image *out, char *archima)
Reading image from the disc.
Definition: inout.cpp:100
Definition: Image.h:36
void write(char *archima, Image *imR)
Writing image to the disc.
Definition: inout.cpp:27
void writeBW(char *archima, Image *imR)
Writing image to the disc.
Definition: inout.cpp:61