13 lines
207 B
Python
13 lines
207 B
Python
import cv2
|
||
import torch
|
||
|
||
|
||
def process_image(image):
|
||
# todo:使用OpenCV和Torch处理图像,识别物体
|
||
pass
|
||
|
||
|
||
def get_object_coordinates(image):
|
||
# todo:返回识别物体的坐标
|
||
pass
|