Ask Your Question

3pino's profile - activity

2016-06-20 23:57:38 -0600 received badge  Student (source)
2015-07-19 05:50:46 -0600 asked a question python multiprocessing performance in opencv image processing

I am writing a program with Opencv in python which takes a video, does some filters and then goes into a detectmultiscale. I am searching a way to increase fps processed and I split in 2 processes this 2 operations (filtering and detecting) using queue to put and get the frame.

Now the filtering goes at double speed against the detection but the overall fps remains the same. I am asking why and how can I increase performance.