↧
Answer by Julio Zurbitu for Python multiprocess can't pickle opencv...
I am not an expert, but i had the same issue and i solved in this way.Instead of using cv2.VideoCapture(0) in init fuction def __init__(self, ): self.process = Process(target = self.run, args=())...
View ArticlePython multiprocess can't pickle opencv videocapture object
I am trying to create a independent process to handle my image acquire from camera. But multiprocessing seems to have difficulty pickling videocapture module from opencv. Can anyone suggest a work...
View Article