- 博客(1)
- 资源 (2)
- 收藏
- 关注
原创 C语言实现YUV三个分量序列合并成一个完整的YUV422 packed
原YUV格式为YUV422SP,重新存储为YUV422 packed。 void yuvCombine(int w, int h, uint8_t *y, uint8_t *u, uint8_t *v, uint8_t *dst) { int i,j = 0; int offset = 0; int convertFlag = 0; int vOffset = 0; int uOffset = 0; int yOffset = 0; for(i = 0; i < h; i++)
2022-01-05 16:06:44 1080
STMems-Standard-C-drivers
Platform-independent drivers for STMicroelectronics MEMS motion and environmental sensors, based on standard C programming language, are available in source code in the STMicroelectronics public GitHub repository.
The repository contains drivers and examples for STMicroelectronics MEMS sensors.
The sensor drivers and examples are listed by part number. The sensor drivers support SPI and I²C interfaces.
Integration details are available in the README section of the GitHub repository.
2023-07-01
opencv教程
目前,OpenCV逐步成为一个通用的基础研究和产品开发平台。本书是国内第一本全面介绍OpenCV的中文版图书,对OpenCV开放源代码计算机视觉库进行了详细讲解。OpenCV由一系列 C函数和C++类构成,功能涵盖图像处理、计算机视觉和模式识别等领域。OpenCV实现了大量通用算法,涉及到图像处理、结构分析、运动检测、摄像机定标、三维重建以及机器学习等方面,并有较高的运行效率。书中所有实例均提供了C/C++语言的源代码。
2013-05-28
opencv程序
OpenCV于1999年由Intel建立,现在由Willow Garage提供支持。OpenCV是一个基于(开源)发行的跨平台计算机视觉库,可以运行在Linux、Windows和Mac OS操作系统上。它轻量级而且高效——由一系列 C 函数和少量 C++ 类构成,同时提供了Python、Ruby、MATLAB等语言的接口,实现了图像处理和计算机视觉方面的很多通用算法
2013-04-09
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人