1 Star 0 Fork 23

niwotahao/AVDataProcess

forked from 黄老邪/AVDataProcess 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
rgb24_split.cpp 1017 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef int BOOL;
#define TRUE 1
#define FALSE 0
BOOL rgb24_split(const char *file, int width, int height)
{
if (file == NULL) {
return FALSE;
}
FILE *fp = fopen(file, "rb+");
FILE *fp_r = fopen("./out/output_rgb24_r.y", "wb+");
FILE *fp_g = fopen("./out/output_rgb24_g.y", "wb+");
FILE *fp_b = fopen("./out/output_rgb24_b.y", "wb+");
unsigned char *data = (unsigned char *)malloc(width*height*3);
memset(data, 0, width*height*3);
fread(data, 1, width*height*3, fp);
for(int i=0; i<width*height*3; i=i+3) {
fwrite(data+i+0, 1, 1, fp_r);
fwrite(data+i+1, 1, 1, fp_g);
fwrite(data+i+2, 1, 1, fp_b);
}
free(data);
fclose(fp);
fclose(fp_r);
fclose(fp_g);
fclose(fp_b);
return TRUE;
}
int main(int argc, char *argv[])
{
if (argc == 4) {
rgb24_split(argv[1], atoi(argv[2]), atoi(argv[3]));
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/niwotahao/AVDataProcess.git
git@gitee.com:niwotahao/AVDataProcess.git
niwotahao
AVDataProcess
AVDataProcess
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385