Last active
January 23, 2022 11:47
-
-
Save doleron/eab947f364ceb3f1e24a6995078de629 to your computer and use it in GitHub Desktop.
C++ calling model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| std::vector<cv::Mat> predictions; | |
| net.forward(predictions, net.getUnconnectedOutLayersNames()); | |
| const cv::Mat &output = predictions[0]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment