Python 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 around ? I am using python 3.7.1 from multiprocessing import Process import multiprocessing as mp import time import logging import logging.handlers import sys import logging from enum import Enum import cv2 class Logger(): @property def logger(self): component = "{}.{}".format(type(self).__module__