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;
Distributed Algorithms
Nancy A. Lynch / Morgan Kaufmann / 1996-3-15 / USD 155.00
In "Distributed Algorithms", Nancy Lynch provides a blueprint for designing, implementing, and analyzing distributed algorithms. She directs her book at a wide audience, including students, programmer......一起来看看 《Distributed Algorithms》 这本书的介绍吧!
