• 大小: 5.50KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-02-22
  • 标签: 视频  图片  转换  程序  c++  

资源简介

实现三个功能:Video2Img:视频转图片序列;Img2Video:序列图片转视频;Img2VideoRect:图片转视频,并指定区域。

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

vector split(const string& str const string& delim);
int Video2Img(const std::string videoName const std::string imgPath int stepframeNum);
int Img2Video(const std::string imgPath const std::string videoName);
int Img2VideoRect(const std::string imgPath const std::string filePath const std::string videoName);

int main(int argc char *argv[])
{
/*int model = stoi(argv[1]);

if(model == 0)
{
string videoName = argv[2];

string imgPath = argv[3];

int stepframeNum = stoi(argv[4]);

Video2Img(videoName imgPath stepframeNum);
}
if(model == 1)
{
string imgPath = argv[2];
string filePath = argv

评论

共有 条评论