Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.
6405 Discussions

How can I set deploy.prototxt using multiple input images

idata
Employee
815 Views

I tried to convert my own model to NCS version using 'mvNCCompile.pyc'.

 

My model has two images as inputs.

 

So, I wrote a prototxt as following lines.

 

layer {

 

name: "A"

 

type: "Input"

 

top: "A"

 

input_param {

 

shape: {

 

dim: 1

 

dim: 32

 

dim: 32

 

dim: 3

 

}

 

}

 

}

 

layer {

 

name: "B"

 

type: "Input"

 

top: "B"

 

input_param {

 

shape: {

 

dim: 1

 

dim: 32

 

dim: 32

 

dim: 3

 

}

 

}

 

}

 

However, I failed to convert the model with the following error message.

 

[Error 17] Toolkit Error: Internal Error: Could not build graph. Missing link: B

 

Could you give me a solution to use two images as input?

 

Thanks
0 Kudos
1 Reply
idata
Employee
556 Views

@sachonwon Hi I am working in this issue as well. May be it is possible to inject concatenated data and then split somehow. Let me know if you get some solution.

0 Kudos
Reply