文件名称:rotate
- 所属分类:
- 图形图像处理(光照,映射..)
- 资源属性:
- [C/C++] [源码]
- 上传时间:
- 2012-11-26
- 文件大小:
- 1kb
- 下载次数:
- 0次
- 提 供 者:
- 陈*
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
对yuv图像顺时针旋转90°的代码,一次只能旋转一个分量,例如,对于yuv420图像,采用
rotate( m_image_w,m_image_h, y, NULL )
rotate( m_image_w/2,m_image_h/2, u, NULL )
rotate( m_image_w/2,m_image_h/2, v, NULL )
如果dstdata为NULL,哪么程序会将输入srcdata当作输出-Yuv images of 90 ° clockwise rotation of the code, one can only rotate a component, for example, for YUV420 images, using rotate (m_image_w, m_image_h, y, NULL) rotate (m_image_w/2, m_image_h/2, u, NULL) rotate (m_image_w/2, m_image_h/2, v, NULL) if dstdata for NULL, which you will enter the program as output srcdata
rotate( m_image_w,m_image_h, y, NULL )
rotate( m_image_w/2,m_image_h/2, u, NULL )
rotate( m_image_w/2,m_image_h/2, v, NULL )
如果dstdata为NULL,哪么程序会将输入srcdata当作输出-Yuv images of 90 ° clockwise rotation of the code, one can only rotate a component, for example, for YUV420 images, using rotate (m_image_w, m_image_h, y, NULL) rotate (m_image_w/2, m_image_h/2, u, NULL) rotate (m_image_w/2, m_image_h/2, v, NULL) if dstdata for NULL, which you will enter the program as output srcdata
(系统自动生成,下载前可以参看下载内容)
下载文件列表
rotate.c