1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

Make Intel's Inference Engine backend is default if no preferable backend is specified.

This commit is contained in:
Dmitry Kurtaev
2018-06-01 10:54:12 +03:00
parent 1822e85f4a
commit b781ac7346
45 changed files with 253 additions and 199 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ int main(int argc, char **argv)
// run the L channel through the network
Mat inputBlob = blobFromImage(input);
net.setInput(inputBlob);
Mat result = net.forward("class8_ab");
Mat result = net.forward();
// retrieve the calculated a,b channels from the network output
Size siz(result.size[2], result.size[3]);