Is there an implementation of the FDV neural network available in OpenCV or similar?

Does OpenCV have a convolutional neural network? Is it possible to use an image or video processing algorithm?

+3
source share
1 answer

Yes and no.

OpenCV does not have a built-in convnet library, but Caffe (one of the leading neural network convolutional packages) interacts quite well with it.

  • If you install Caffe, one of its details is OpenCV, and you can use OpenCV through Caffe C or the Python API. See the main Caffe website .

  • If you are installing OpenCV (a fairly recent version), you can use the new opencv_dnn module to interact with Caffe. See the opencv_dnn tutorial .

0
source

All Articles