chrisrn
chrisrn

Reputation: 163

Convolutional neural network using openCV

I wonder if there is a way of building a convolutional neural network with openCV. Basically I have already trained the cifarnet cnn using the python API of Tensorflow but now I want to run the inference without tensorflow by using C++. The only open-source lib that I can use is opencv. Do you know if I can do that with opencv instead of creating the network manually?

Upvotes: 0

Views: 4996

Answers (1)

Dmitry Kurtaev
Dmitry Kurtaev

Reputation: 833

Try to look at deep learning module from opencv_contrib. Some sample with evaluating model trained in TensorFlow in dnn/samples/tf_inception.cpp. Also some hints about making snapshot in issue: https://github.com/opencv/opencv_contrib/issues/1029#issuecomment-290070240.

Upvotes: 1

Related Questions