码迷,mamicode.com
首页 >  
搜索关键字:ar    ( 142626个结果
FMS用AS来实现拉流
application.onAppStart=function (){ this.myNC=new NetConnection(); this.myNC.onStatus=NC_onStatus; this.myNC.onBWDone=NC_onBWDone; this.myNC.c...
分类:其他好文   时间:2014-07-01 18:27:24    阅读次数:210
括号的英文表达
1. () (round brackets or parentheses):圆括号2. [] (square brackets):方括号3. (angle brackets):尖括号4. {} (braces) :大括号
分类:其他好文   时间:2014-07-01 18:08:40    阅读次数:154
"fcitx按ctrl+space没反应"解决方法
如果是KDM、GDM、LightDM,打开~/.xprofile。如果是startx、Slim,打开~/.xinitrc。(没有就新建一个)export GTK_IM_MODULE=fcitxexport QT_IM_MODULE=fcitxexport XMODIFIERS="@im=fcitx"...
分类:其他好文   时间:2014-07-01 12:59:02    阅读次数:586
OpenCV —— 摄像机模型与标定
这种理论看的已经够多了,感觉应用价值不大(矫正畸变图像还凑合,用摄像机测距神马的。。。) 有始有终吧,简单把内容梳理一下 针孔 摄像机模型 —— 过于理想(不能为快速曝光收集足够的光线) 透镜可以聚焦足够多的光线到某个点上,使得图像的生成更加迅速 —— 代价,引入畸变 摄像机模型 焦距 针孔中的点 ...
分类:其他好文   时间:2014-07-01 12:40:55    阅读次数:256
UIView 设置alpha后, 子view也随着变化alpha, 解决方法
// _closeContainerBar.alpha = 0.7; [_closeContainerBar setBackgroundColor:[[UIColor blackColor] colorWithAlphaComponent:0.7]];
分类:其他好文   时间:2014-07-01 12:37:36    阅读次数:181
Arduino live weather broadcasting 实时天气站
Live broadcasting with arduinoget a pc , make it run linux. make arduino catch the weather sensor and then transport the information to the PC side. P...
分类:其他好文   时间:2014-07-01 12:15:21    阅读次数:167
由C到C++的学习 ----Essential C++
一、array[] 与 vector vector1 1 array[] vector1() vector2(array1,array1+sizeof(array)) <-第二种定义方式,可以将确定的地址放到vector中,前例中就是将一个数组放到vector中 3.1大小的判断 array[] <...
分类:编程语言   时间:2014-07-01 11:46:27    阅读次数:161
linux如何添加路由表(转)
linux下静态路由修改命令方法一:添加路由route add -net 192.168.0.0/24 gw 192.168.0.1route add -host 192.168.1.1 dev 192.168.0.1删除路由route del -net 192.168.0.0/24 gw 192....
分类:系统相关   时间:2014-07-01 10:23:01    阅读次数:278
随机生成26个小写字母和26个大写字母
#include char RandString(); int main( void ) {     int i=0;     char cTemp;     char sKey[9];     memset(&cTemp, 0, sizeof(cTemp));     memset(sKey, 0, sizeof(sKey));     sran...
分类:其他好文   时间:2014-07-01 08:05:02    阅读次数:173
access函数之判断文件属性
#include #include int main( void ) {     char sFileName[128];     int iRet = 0;     memset(sFileName, 0, sizeof(sFileName));     sprintf(sFileName, "test.txt");     printf("R_OK[%d...
分类:数据库   时间:2014-07-01 07:41:30    阅读次数:302
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!