Is there a Convolutional Neural Network in OpenCV? How possible is it to use the algorithm for image or video processing?
相关问题
- How to get the background from multiple images by
- How to use Reshape keras layer with two None dimen
- Try to load image with Highgui.imread (OpenCV + An
- CV2 Image Error: error: (-215:Assertion failed) !s
- Is it a bug of opencv RotatedRect?
相关文章
- how to flatten input in `nn.Sequential` in Pytorch
- How to downgrade to cuda 10.0 in arch linux?
- How do I append metadata to an image in Matlab?
- How to use cross_val_score with random_state
- Looping through training data in Neural Networks B
- opencv fails to build with ipp support enabled
- Why does this Keras model require over 6GB of memo
- How to measure overfitting when train and validati
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.
If you install Caffe, one of its requisites is OpenCV, and you can then use OpenCV through Caffe's C or Python API's. See main Caffe website.
If you install OpenCV (a recent enough version) you can use the new opencv_dnn module to interact with Caffe. See opencv_dnn tutorial.