Fork me on GitHub
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 22 下一页
摘要: 题目:Given a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is like:3... 阅读全文
posted @ 2015-08-17 11:37 __Neo 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 题目要求:Download the text filehere.The goal of this problem is to implement the "Median Maintenance" algorithm (covered in the Week 5 lecture on heap app... 阅读全文
posted @ 2015-08-16 12:34 __Neo 阅读(529) 评论(0) 推荐(0) 编辑
摘要: 题目要求:Download the text filehere. (Right click and save link as).The goal of this problem is to implement a variant of the 2-SUM algorithm (covered in ... 阅读全文
posted @ 2015-08-14 10:40 __Neo 阅读(857) 评论(0) 推荐(0) 编辑
摘要: 本章将对MPEG4及H.264的实现细节进行讲解和比对。# Motion Estimation衡量运动估计的好坏有三种函数(第228页):MSE,MAE和SAE,其中由于SAE运算速度最快所以采用的最多。匹配块时用的搜索方法也有很多,最基本的方法是全局搜索(Full search),但是为了加快编码... 阅读全文
posted @ 2015-05-24 10:21 __Neo 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 本章节主要介绍有关H.264的内容H.264有三种profile,分别是: - Baseline Profile- Main Profile- Extended Profile三者之间的关系和主要内容可以参考书本163页的插图。# The Baseline Profile在Baseline Prof... 阅读全文
posted @ 2015-05-17 19:53 __Neo 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 本章着重介绍有关MPEG-4 Visual标准的细节。## Tool编码工具集合的子集(比如支持交织等)。## Object视频元素(比如一个矩形视频帧,或者一个任意形状的区域,静止的图像)。## Profile视频对象类型的集合。## Level每个Profile都会有多个Level,不同的Lev... 阅读全文
posted @ 2015-05-16 21:19 __Neo 阅读(1221) 评论(0) 推荐(0) 编辑
摘要: 本章节介绍一些关于MPEG-4标准与H.264标准的基本知识比较重要的是第95页关于两种标准的对比表格。其他部分没有什么特别重要的细节。 阅读全文
posted @ 2015-05-14 20:09 __Neo 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 本章主要介绍一些有关视频编码的概念## 时域模型(Temporal Model)时域模型的作用是去除帧间冗余。如:将第二帧减去第一帧,得到的剩余信息,其能量会远小于第二帧本身。## 基于块的运动估计和补偿**运动估计**:针对于当前帧的M*N大小的块,在参考帧中寻找与它最相近的块(找相减后剩余能量最... 阅读全文
posted @ 2015-05-14 19:53 __Neo 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 本章节主要介绍一些视频格式相关的基础知识。## 交织(Interlace)即每一个采样帧采样时隔行采样,奇数行和偶数行交替。## YCbCr人眼视觉系统(Human Visual System, HVS)对亮度的敏感度高于对色彩的敏感度。因此诞生了YCbCr颜色空间,其中Y代表亮度,CbCr则是两个... 阅读全文
posted @ 2015-05-14 16:31 __Neo 阅读(155) 评论(0) 推荐(0) 编辑
摘要: # 前言本书全名是《H.264 and MPEG-4 Video Compression, Video Coding For Next-generation Multimedia》,作者为 Iain E.G. Richardson。是一本介绍H.264及MPEG-4视频编码标准的入门书,网络上有许多... 阅读全文
posted @ 2015-05-14 16:13 __Neo 阅读(154) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 22 下一页