libyuv库实现裁剪和缩放

2024-02-05 14:20
文章标签 实现 裁剪 缩放 libyuv

本文主要是介绍libyuv库实现裁剪和缩放,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

lib实现缩放功能

/** @Description: * @Author: xxx* @Date: 2022-07-13 17:44:57* @LastEditTime: 2022-07-13 20:31:08* @LastEditors: xxx*/
#include <stdio.h>
#include <stdint.h>
#include "libyuv.h"
#include <time.h>
#include <sys/time.h>void scale(uint8_t *srcYuvData, uint8_t *dstYuvData, int width, int height, int dstWidth, int dstHeight) {libyuv::I420Scale(srcYuvData,width,srcYuvData+width*height,(width+1)/2,srcYuvData+width*height+((width+1)/2)*((height+1)/2),(width+1)/2,width,height,dstYuvData,dstWidth,dstYuvData+dstWidth*dstWidth,(dstWidth+1)/2,dstYuvData+dstWidth*dstHeight+((dstWidth+1)/2)*((dstHeight+1)/2),(dstWidth+1)/2,dstWidth,dstHeight,0);
}long NBGetSysTimeUs()  //测试过转换时间
{struct timeval tv;struct timezone tz;gettimeofday(&tv , &tz);return tv.tv_usec;
}int main() {uint32_t width = 500, height = 400;uint32_t dstWidth = 720, dstHeight = 576;uint8_t YUV[width*height*3/2];uint8_t YUV_SCALE[dstWidth*dstHeight*3/2];printf("*****enter \n");FILE *yuv420pFile = fopen("/opt/doctor.nv12", "rb");fread(YUV, sizeof(YUV), 1, yuv420pFile);printf("Today's date start time: %u\n", NBGetSysTimeUs());scale(YUV, YUV_SCALE, width, height, dstWidth, dstHeight);printf("Today's date end time: %u\n", NBGetSysTimeUs());printf("*****enter1 \n");FILE *yuvScaleFile = fopen("/opt/scale-6.nv12", "wb");fwrite(YUV_SCALE, sizeof(YUV_SCALE), 1, yuvScaleFile);fclose(yuvScaleFile);fclose(yuv420pFile);return 0;
}

lib实现裁剪功能

void clip(uint8_t *srcYuvData, uint8_t *dstYuvData, int width, int height, int cropX, int cropY, int cropWidth, int cropHeight) {libyuv::ConvertToI420(srcYuvData,width*height*3/2,dstYuvData,cropWidth,dstYuvData+cropWidth*cropHeight,(cropWidth+1)/2,dstYuvData+cropWidth*cropHeight+((cropWidth+1)/2)*((cropHeight+1)/2),(cropWidth+1)/2,cropX,cropY,width,height,cropWidth,cropHeight,0,FOURCC('Y', 'U', '1', '2'));
}int main() {uint32_t width = 1000, height = 940;uint32_t clipWidth = 720, clipHeight = 576;uint8_t YUV[width*height*3/2];uint8_t YUV_CLIP[clipWidth*clipHeight*3/2];// printf("*****enter \n");FILE *yuv420pFile = fopen("/opt/doctor.nv12", "rb");fread(YUV, sizeof(YUV), 1, yuv420pFile);// printf("*****enter2 \n");clip(YUV, YUV_CLIP, width, height, 0, 0, clipWidth, clipHeight);//  printf("*****enter3 \n");FILE *yuvClipFile = fopen("/opt/rainbow.yuv", "wb");fwrite(YUV_CLIP, sizeof(YUV_CLIP), 1, yuvClipFile);printf("*****enter4 \n");fclose(yuvClipFile);fclose(yuv420pFile);return 0;
}

当时测试完后做了个静态库Makefile和函数如下

CONFIG_UCLIBC_BUILD=yCROSS_COMPILE ?= mips-linux-uclibc-gnu-CC = $(CROSS_COMPILE)gcc
CPLUSPLUS = $(CROSS_COMPILE)g++
LD = $(CROSS_COMPILE)ld
AR = $(CROSS_COMPILE)ar
STRIP = $(CROSS_COMPILE)stripCFLAGS = $(INCLUDES) -O2 -Wall -march=mips32r2ifeq ($(CONFIG_UCLIBC_BUILD), y)
CFLAGS += -muclibc
LDFLAG += -muclibc
endifCFLAGS += -fpermissive
CXXFLAGS += -fpermissiveSDK_LIB_DIR = ${PWD}/include
INCLUDES = -I$(SDK_LIB_DIR)
INCLUDES += -I$(SDK_LIB_DIR)/libyuv/LDFLAG = -Wl,-gc-sectionsYUV_LIB_DIR = -L.
LIBS = $(YUV_LIB_DIR)/libyuv.aC_SRCS=$(wildcard *.c)
C_OBJS=${C_SRCS:%.c=%.o}CXX_SRCS=$(wildcard *.cpp)
CXX_OBJS=${CXX_SRCS:%.cpp=%.o}SAMPLES = libyuvsample.aall: $(SAMPLES)$(SAMPLES): $(HISILIBS) $(C_OBJS) $(CXX_OBJS)$(AR) -rcs $@ $^%.o : %.c$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@%.o : %.cpp $(CPLUSPLUS) $(CXXFLAGS) -c $< -o $@ $(INCLUDES)clean:rm -f *.o *~distclean: cleanrm -f $(SAMPLES)

库封装接口函数:

/** @Description: * @Author: xxx* @Date: 2022-07-13 17:44:57* @LastEditTime: 2022-07-13 20:31:08* @LastEditors: xxx*/
#include <stdio.h>
#include <stdint.h>
#include "libyuv.h"
extern "C" {void send_data_scale_affine(int scale_w, int scale_h, uint8_t *srcYuvData, uint8_t *dstYuvData, int width, int height);void send_data_clip_affine(int clip_w, int clip_h, uint8_t *srcYuvData, uint8_t *dstYuvData, int width, int height, int cropX, int cropY);
}void scale(uint8_t *srcYuvData, uint8_t *dstYuvData, int width, int height, int dstWidth, int dstHeight) {libyuv::I420Scale(srcYuvData,width,srcYuvData+width*height,(width+1)/2,srcYuvData+width*height+((width+1)/2)*((height+1)/2),(width+1)/2,width,height,dstYuvData,dstWidth,dstYuvData+dstWidth*dstWidth,(dstWidth+1)/2,dstYuvData+dstWidth*dstHeight+((dstWidth+1)/2)*((dstHeight+1)/2),(dstWidth+1)/2,dstWidth,dstHeight,0);
}void clip(uint8_t *srcYuvData, uint8_t *dstYuvData, int width, int height, int cropX, int cropY, int cropWidth, int cropHeight) {libyuv::ConvertToI420(srcYuvData,width*height*3/2,dstYuvData,cropWidth,dstYuvData+cropWidth*cropHeight,(cropWidth+1)/2,dstYuvData+cropWidth*cropHeight+((cropWidth+1)/2)*((cropHeight+1)/2),(cropWidth+1)/2,cropX,cropY,width,height,cropWidth,cropHeight,0,FOURCC('Y', 'U', '1', '2'));
}void send_data_scale_affine(int scale_w, int scale_h, uint8_t *srcYuvData, uint8_t *dstYuvData, int width, int height)
{scale(srcYuvData, dstYuvData, width, height, scale_w, scale_h);
}void send_data_clip_affine(int clip_w, int clip_h, uint8_t *srcYuvData, uint8_t *dstYuvData, int width, int height, int cropX, int cropY) 
{clip(srcYuvData, dstYuvData, width, height, cropX, cropY, clip_w, clip_h);
}

这篇关于libyuv库实现裁剪和缩放的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/681191

相关文章

java实现docker镜像上传到harbor仓库的方式

《java实现docker镜像上传到harbor仓库的方式》:本文主要介绍java实现docker镜像上传到harbor仓库的方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录1. 前 言2. 编写工具类2.1 引入依赖包2.2 使用当前服务器的docker环境推送镜像2.2

C++20管道运算符的实现示例

《C++20管道运算符的实现示例》本文简要介绍C++20管道运算符的使用与实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录标准库的管道运算符使用自己实现类似的管道运算符我们不打算介绍太多,因为它实际属于c++20最为重要的

Java easyExcel实现导入多sheet的Excel

《JavaeasyExcel实现导入多sheet的Excel》这篇文章主要为大家详细介绍了如何使用JavaeasyExcel实现导入多sheet的Excel,文中的示例代码讲解详细,感兴趣的小伙伴可... 目录1.官网2.Excel样式3.代码1.官网easyExcel官网2.Excel样式3.代码

python实现对数据公钥加密与私钥解密

《python实现对数据公钥加密与私钥解密》这篇文章主要为大家详细介绍了如何使用python实现对数据公钥加密与私钥解密,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录公钥私钥的生成使用公钥加密使用私钥解密公钥私钥的生成这一部分,使用python生成公钥与私钥,然后保存在两个文

浏览器插件cursor实现自动注册、续杯的详细过程

《浏览器插件cursor实现自动注册、续杯的详细过程》Cursor简易注册助手脚本通过自动化邮箱填写和验证码获取流程,大大简化了Cursor的注册过程,它不仅提高了注册效率,还通过友好的用户界面和详细... 目录前言功能概述使用方法安装脚本使用流程邮箱输入页面验证码页面实战演示技术实现核心功能实现1. 随机

Golang如何对cron进行二次封装实现指定时间执行定时任务

《Golang如何对cron进行二次封装实现指定时间执行定时任务》:本文主要介绍Golang如何对cron进行二次封装实现指定时间执行定时任务问题,具有很好的参考价值,希望对大家有所帮助,如有错误... 目录背景cron库下载代码示例【1】结构体定义【2】定时任务开启【3】使用示例【4】控制台输出总结背景

Golang如何用gorm实现分页的功能

《Golang如何用gorm实现分页的功能》:本文主要介绍Golang如何用gorm实现分页的功能方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录背景go库下载初始化数据【1】建表【2】插入数据【3】查看数据4、代码示例【1】gorm结构体定义【2】分页结构体

在Golang中实现定时任务的几种高效方法

《在Golang中实现定时任务的几种高效方法》本文将详细介绍在Golang中实现定时任务的几种高效方法,包括time包中的Ticker和Timer、第三方库cron的使用,以及基于channel和go... 目录背景介绍目的和范围预期读者文档结构概述术语表核心概念与联系故事引入核心概念解释核心概念之间的关系

C++11委托构造函数和继承构造函数的实现

《C++11委托构造函数和继承构造函数的实现》C++引入了委托构造函数和继承构造函数这两个重要的特性,本文主要介绍了C++11委托构造函数和继承构造函数的实现,具有一定的参考价值,感兴趣的可以了解一下... 目录引言一、委托构造函数1.1 委托构造函数的定义与作用1.2 委托构造函数的语法1.3 委托构造函

C++11作用域枚举(Scoped Enums)的实现示例

《C++11作用域枚举(ScopedEnums)的实现示例》枚举类型是一种非常实用的工具,C++11标准引入了作用域枚举,也称为强类型枚举,本文主要介绍了C++11作用域枚举(ScopedEnums... 目录一、引言二、传统枚举类型的局限性2.1 命名空间污染2.2 整型提升问题2.3 类型转换问题三、C