00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "global.h"
00014
00015 #ifndef _IMG_IO_H_
00016 #define _IMG_IO_H_
00017
00018 #include "io_video.h"
00019 #include "io_raw.h"
00020 #include "io_tiff.h"
00021
00022 extern int ParseSizeFromString (VideoDataFile *input_file, int *xlen, int *ylen, double *fps);
00023 extern void ParseFrameNoFormatFromString (VideoDataFile *input_file);
00024 extern void OpenFrameFile (VideoDataFile *input_file, int FrameNumberInFile);
00025 extern void OpenFiles (VideoDataFile *input_file);
00026 extern void CloseFiles (VideoDataFile *input_file);
00027 extern VideoFileType ParseVideoType (VideoDataFile *input_file);
00028
00029 #endif
00030