3D视觉库 fvision2010
- 授权协议: Apache
- 开发语言: C/C++
- 操作系统: Linux
- 软件首页: http://code.google.com/p/fvision2010/
- 软件文档: http://code.google.com/p/fvision2010/w/list
软件介绍
基于OpenCV构建的图像处理和3D视觉库。
示例代码:
ImageSequenceReaderFactory factory;
ImageSequenceReader* reader = factory.pathRegex("c:/a/im_%03d.jpg", 0, 20);
//ImageSequenceReader* reader = factory.avi("a.avi");
if (reader == NULL) { cout<<factory.getErrorMessage()<<endl; exit(1); }
IplImage* frame = NULL;
while ((frame = reader->read()) != NULL) {
process(frame);
}
delete reader;
Netty实战
诺曼·毛瑞尔(Norman Maurer)、马文·艾伦·沃尔夫泰尔(Marvin Allen Wolfthal) / 何品 / 人民邮电出版社 / 2017-5-1 / 69.00
编辑推荐 - Netty之父”Trustin Lee作序推荐 - 阿里巴巴中间件高级技术专家为本书中文版作序推荐 - 系统而详细地介绍了Netty的各个方面并附带了即用型的优质示例 - 附带行业一线公司的案例研究 - 极实用的Netty技术书 无论是构建高性能的Web、游戏服务器、推送系统、RPC框架、消息中间件还是分布式大数据处理引擎,都离不开Nett......一起来看看 《Netty实战》 这本书的介绍吧!
