/*泛型定义在接口上 * * */package 泛型;interface Inter<T>{ void show(T t);}//第一种方式class InterImpl implements Inter<String>{ public void show(String t) { System.o ...
分类:
其他好文 时间:
2016-05-01 23:07:37
阅读次数:
157
1.Socket 几个常用的名词 IPC—>Inter Process Communication,进程间通信 socket —> 套接字 TCP—>Transmission Control Protocol传输控制协议, 什么是Socket Socket:又称作是套接字,网络上的两个程序通过一个双 ...
分类:
其他好文 时间:
2016-04-29 09:20:51
阅读次数:
210
1、使用开始-->运行-->cmd 进入bin目录。2、注册服务:mysqld install MySQL 3、启动服务:net start mysql4、登录数据库:mysql -u root -p 这个时候会让你Inter Password:直接回车。5、修改密码:mysql -u -root ...
分类:
数据库 时间:
2016-04-19 21:35:38
阅读次数:
261
predInterSearch主要的工作是ME(运动估计)和MC(运动补偿)。
函数中有一个bTestNormalMC变量,它表示是否进行正常的MC过程,正常的MC过程就是进行ME再进行MC。
正常的MC流程是,遍历所有的参考帧,进行ME(运动估计:xEstimateMvPredAMVP),然后记录AVP或者MV的信息,进行MC(运动补偿,目的是选出最优的参数),然后更新最优的参数,遍历完所有...
分类:
其他好文 时间:
2016-04-16 19:21:23
阅读次数:
287
// // ViewController.m // 01-playPlane // // Created by 王 on 16/4/9. // Copyright © 2016年 王. All rights reserved. // #import "ViewController.h" @inter ...
分类:
其他好文 时间:
2016-04-11 07:12:29
阅读次数:
146
// // ViewController.m // 01-calculate // // Created by 王 on 16/4/9. // Copyright © 2016年 王. All rights reserved. // #import "ViewController.h" @inter ...
分类:
其他好文 时间:
2016-04-11 07:07:07
阅读次数:
143
插值Python: cv2.resize(src, dsize[, dst[, fx[, fy[, interpolation]]]]) → dstinterpolation –interpolation method:INTER_NEAREST - a nearest-neighbor inter ...
分类:
编程语言 时间:
2016-04-08 21:40:56
阅读次数:
1655
最近整了四块树莓3的板子搭集群 0. 系统 到树莓官网下载img文件,用写入sd 1. 修改网络固定ip 系统自带的vi有点古老,比较难用。可以用nano修改 修改任何文件前先备份 网卡配置文件在/etc/network/interfaces sudo nano /etc/network/inter... ...
分类:
其他好文 时间:
2016-04-04 01:34:24
阅读次数:
414
Prime Distance Description The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the inter ...
分类:
其他好文 时间:
2016-04-03 20:15:02
阅读次数:
149
一、IPC(Inter-Process Communication,进程间通信)对象的介绍System V 的IPC对象有共享内存、消息队列、信号灯。注意:在IPC的通信模式下,不管是使用消息队列还是共享内存,甚至是信号灯,每个IPC的对象都有唯一的名字,称为"键"(key)。通过"键",进程能够识别所用的对象。"键"与IPC对象的关系就如同文件名称于文件,通过文件名,进程能够读写文件内的数据,甚...
分类:
系统相关 时间:
2016-04-01 18:25:57
阅读次数:
221