摘要:
代码只进行了18次循环处理俩个人18个关键点的距离。单进程耗时0.001秒,多进程耗时6.34秒。 import cv2 import numpy as np from modules.keypoints import BODY_PARTS_KPT_IDS, BODY_PARTS_PAF_IDS f 阅读全文
摘要:
时间single 0.09075808525085449 multi 4.713615894317627。因此计算量不是特别大不建议使用多进程。 import threading import time ind=100 def single(): for j in range(ind): for i 阅读全文
摘要:
result存储的是线程的返回结果,因此可以用线程池获取返回。 最终时间比 single 3.388930559158325 multi 2.5222535133361816 import threading import time ind=3 def single(): for j in rang 阅读全文
摘要:
import threading import time ind=3 def single(): for j in range(ind): for i in range(5000): w=2*i #print(w) def s(): for i in range(5000): w=2*i #prin 阅读全文