重现步骤
期待结果和实际结果
软硬件版本信息
错误日志
尝试解决过程
补充材料
micropython可以先创建ulab.numpy.ndarray,然后转成hwc排布,在hwc数据上创建Image实例
hwc_array = np.array(hwc, dtype=np.uint8)这shape是(320,160,3)
img = image.Image(320, 160, image.RGB888, alloc=image.ALLOC_REF, data=hwc_array)
img.save(root_path+"det_result.jpg")
OSError: current format not support save function!