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

相关文章

Android实现悬浮按钮功能

《Android实现悬浮按钮功能》在很多场景中,我们希望在应用或系统任意界面上都能看到一个小的“悬浮按钮”(FloatingButton),用来快速启动工具、展示未读信息或快捷操作,所以本文给大家介绍... 目录一、项目概述二、相关技术知识三、实现思路四、整合代码4.1 Java 代码(MainActivi

使用Python实现一个优雅的异步定时器

《使用Python实现一个优雅的异步定时器》在Python中实现定时器功能是一个常见需求,尤其是在需要周期性执行任务的场景下,本文给大家介绍了基于asyncio和threading模块,可扩展的异步定... 目录需求背景代码1. 单例事件循环的实现2. 事件循环的运行与关闭3. 定时器核心逻辑4. 启动与停

基于Python实现读取嵌套压缩包下文件的方法

《基于Python实现读取嵌套压缩包下文件的方法》工作中遇到的问题,需要用Python实现嵌套压缩包下文件读取,本文给大家介绍了详细的解决方法,并有相关的代码示例供大家参考,需要的朋友可以参考下... 目录思路完整代码代码优化思路打开外层zip压缩包并遍历文件:使用with zipfile.ZipFil

Python实现word文档内容智能提取以及合成

《Python实现word文档内容智能提取以及合成》这篇文章主要为大家详细介绍了如何使用Python实现从10个左右的docx文档中抽取内容,再调整语言风格后生成新的文档,感兴趣的小伙伴可以了解一下... 目录核心思路技术路径实现步骤阶段一:准备工作阶段二:内容提取 (python 脚本)阶段三:语言风格调

C#实现将Excel表格转换为图片(JPG/ PNG)

《C#实现将Excel表格转换为图片(JPG/PNG)》Excel表格可能会因为不同设备或字体缺失等问题,导致格式错乱或数据显示异常,转换为图片后,能确保数据的排版等保持一致,下面我们看看如何使用C... 目录通过C# 转换Excel工作表到图片通过C# 转换指定单元格区域到图片知识扩展C# 将 Excel

基于Java实现回调监听工具类

《基于Java实现回调监听工具类》这篇文章主要为大家详细介绍了如何基于Java实现一个回调监听工具类,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录监听接口类 Listenable实际用法打印结果首先,会用到 函数式接口 Consumer, 通过这个可以解耦回调方法,下面先写一个

使用Java将DOCX文档解析为Markdown文档的代码实现

《使用Java将DOCX文档解析为Markdown文档的代码实现》在现代文档处理中,Markdown(MD)因其简洁的语法和良好的可读性,逐渐成为开发者、技术写作者和内容创作者的首选格式,然而,许多文... 目录引言1. 工具和库介绍2. 安装依赖库3. 使用Apache POI解析DOCX文档4. 将解析

Qt中QGroupBox控件的实现

《Qt中QGroupBox控件的实现》QGroupBox是Qt框架中一个非常有用的控件,它主要用于组织和管理一组相关的控件,本文主要介绍了Qt中QGroupBox控件的实现,具有一定的参考价值,感兴趣... 目录引言一、基本属性二、常用方法2.1 构造函数 2.2 设置标题2.3 设置复选框模式2.4 是否

C++使用printf语句实现进制转换的示例代码

《C++使用printf语句实现进制转换的示例代码》在C语言中,printf函数可以直接实现部分进制转换功能,通过格式说明符(formatspecifier)快速输出不同进制的数值,下面给大家分享C+... 目录一、printf 原生支持的进制转换1. 十进制、八进制、十六进制转换2. 显示进制前缀3. 指

springboot整合阿里云百炼DeepSeek实现sse流式打印的操作方法

《springboot整合阿里云百炼DeepSeek实现sse流式打印的操作方法》:本文主要介绍springboot整合阿里云百炼DeepSeek实现sse流式打印,本文给大家介绍的非常详细,对大... 目录1.开通阿里云百炼,获取到key2.新建SpringBoot项目3.工具类4.启动类5.测试类6.测