Ask Your Question

vineetjai's profile - activity

2018-12-14 03:31:23 -0600 edited question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-14 01:23:53 -0600 edited question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-14 01:23:30 -0600 edited question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-13 23:42:15 -0600 edited question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-13 23:41:55 -0600 edited question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-13 23:39:42 -0600 received badge  Organizer (source)
2018-12-13 23:39:05 -0600 edited question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-13 23:38:45 -0600 edited question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-13 23:36:38 -0600 edited question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-13 23:36:10 -0600 received badge  Editor (source)
2018-12-13 23:36:10 -0600 edited question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-13 23:35:19 -0600 asked a question Image segmentation on Real time

Image segmentation on Real time I am doing masking on every frame of Real time video on Nvidia GPU by using dnn . I had

2018-12-12 08:16:16 -0600 received badge  Student (source)
2018-12-12 06:52:22 -0600 received badge  Supporter (source)
2018-12-12 06:52:21 -0600 marked best answer Is DNN supports threading

Hi, I am trying to use DNN with threading for executing operation on video frame-wise. What I had done so far is:

I had read net from disk using net = cv2.dnn.readNetFromTensorflow(weightsPath, configPath) . I am doing threading with 3 threads. First thread is running correctly but for 2nd and 3rd thread it is throwing error:- cv2.error: OpenCV(3.4.4) /io/opencv/modules/dnn/src/dnn.cpp:834: error: (-215:Assertion failed) ld.inputBlobs[0]->total() == total(shapes[index]) in function 'allocateBlobsForLayer'. Is it because only one thread can access net at particular time or Is DNN not supports threading or some other reasons?

I can share my code if needed.

2018-12-12 06:52:21 -0600 received badge  Scholar (source)
2018-12-12 06:37:49 -0600 asked a question Is DNN supports threading

Is DNN supports threading Hi, I am trying to use DNN with threading for executing operation on video frame-wise. What