简体   繁体   English

是否有OpenCV或类似的卷积神经网络实现?

[英]Is there an implementation of Convolutional Neural Network available in OpenCV or similar?

Is there a Convolutional Neural Network in OpenCV? OpenCV中是否存在卷积神经网络? How possible is it to use the algorithm for image or video processing? 如何使用该算法进行图像或视频处理?

Yes and No. 是和否。

There is no directly implemented convnet library bundled into OpenCV, however Caffe (one of the leading convolutional neural network packages) interacts with it rather well. 没有直接实现的套接字库捆绑到OpenCV中,但是Caffe(一种领先的卷积神经网络软件包)与它相互作用相当好。

  • If you install Caffe, one of its requisites is OpenCV, and you can then use OpenCV through Caffe's C or Python API's. 如果您安装Caffe,其必备条件之一是OpenCV,然后您可以通过Caffe的C或Python API使用OpenCV。 See main Caffe website . 请参阅主要的Caffe网站

  • If you install OpenCV (a recent enough version) you can use the new opencv_dnn module to interact with Caffe. 如果您安装OpenCV(最近版本足够),您可以使用新的opencv_dnn模块与Caffe进行交互。 See opencv_dnn tutorial . 请参阅opencv_dnn教程

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM