📄 img_io.h
字号:
/*!
*************************************************************************************
* \file img_io.h
*
* \brief
* image I/O related functions
*
* \author
* Main contributors (see contributors.h for copyright, address and affiliation details)
* - Alexis Michael Tourapis <alexismt@ieee.org>
*************************************************************************************
*/
#include "global.h"
#ifndef _IMG_IO_H_
#define _IMG_IO_H_
#include "io_video.h"
#include "io_raw.h"
#include "io_tiff.h"
int ParseSizeFromString (VideoDataFile *input_file, int *xlen, int *ylen, double *fps);
void ParseFrameNoFormatFromString (VideoDataFile *input_file);
void OpenFrameFile (VideoDataFile *input_file, InputParameters *params, int FrameNumberInFile);
void OpenFiles (VideoDataFile *input_file);
void CloseFiles (VideoDataFile *input_file);
VideoFileType ParseVideoType (VideoDataFile *input_file);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -