import os import cv2 import requests import json import base64 import numpy as np from collections import OrderedDict from concurrent.futures import ThreadPoolExecutor # 进程池模块 import time def getByte(path): with open(path, 'rb') as f: img_byte = base64.b64enco…