📜  谷歌视频处理器 python nmp - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:30.999000             🧑  作者: Mango

代码示例7
# Load a random image from the images folder
file_names = next(os.walk(IMAGE_DIR))[2]
image = skimage.io.imread(os.path.join(IMAGE_DIR, random.choice(file_names)))
  
# Run detection
results = model.detect([image], verbose=1)