码迷,mamicode.com
首页 >  
搜索关键字:blog    ( 264251个结果
13期末2
#include "stdio.h" void main(){ int a = 7; int b = 1; printf ( "a&b = %d\n",a&b); printf( "a&&b = %d\n",a&&b); }...
分类:其他好文   时间:2014-08-05 00:45:28    阅读次数:173
基于Linux 3.0.8 Samsung FIMC(S5PV210) 的摄像头驱动框架解读
作者:咕唧咕唧liukun321来自:http://blog.csdn.net/liukun321FIMC这个名字应该是从S5P100开始出现的,在s5pv210里面的定义是摄像头接口,但是它同样具有图像数据颜色空间转换的作用。而exynos4412对它的定义看起来更清晰些,摄像头接口被定义为FIMC-LITE 。颜色空间转换的硬件结构被定义为FIMC-IS。不多说了,我们先来看看Linux3.0...
分类:系统相关   时间:2014-08-05 00:45:18    阅读次数:869
13期末4
#include "stdio.h" void main(){ int sum=0,item=0; while(item<7){ item++; sum+=item; if(sum==7) break; } printf("%d\n",sum); }...
分类:其他好文   时间:2014-08-05 00:44:48    阅读次数:279
RHEL6.4编译安装gcc4.8.1
由于平时用的linux虚拟机都是RHEL6....
分类:其他好文   时间:2014-08-05 00:43:38    阅读次数:228
UVa 12124 - Assemble
题目:你要去自己买个组装机,现在给你每个零件的类别、名字、价钱、级别,以及你有的钱数,             求能组装成的机器的最大级别(机器的所有零件中的最小级别,即最小值最大)。 分析:分治、dp。看起来很像是dp,不过本题可以利用二分求解(我这里二分套二分了)。             首先,将所有的零件按照级别递减排序,此时装机的总代价递减(比原来多了新的参考零件);...
分类:其他好文   时间:2014-08-05 00:43:28    阅读次数:301
android学习---SeekBar和RatingBar
android学习之SeekBar和RatingBar...
分类:移动开发   时间:2014-08-05 00:42:58    阅读次数:320
POJ 1577 Falling Leaves
我喜欢晚上做题。...
分类:其他好文   时间:2014-08-05 00:42:18    阅读次数:296
优先队列
1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 // Empty the priority queue and print its contents. 9 templat...
分类:其他好文   时间:2014-08-05 00:38:18    阅读次数:203
A trip through the Graphics Pipeline 2011_01
It’s been awhile since I posted something here, and I figured I might use this spot to explain some general points about graphics hardware and softwa....
分类:其他好文   时间:2014-08-05 00:38:08    阅读次数:279
A trip through the Graphics Pipeline 2011_09_Pixel processing – “join phase”
Welcome back! This post deals with the second half of pixel processing, the “join phase”. The previous phase was all about taking a small number of i....
分类:其他好文   时间:2014-08-05 00:37:58    阅读次数:305
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!