What steps will reproduce the problem?
该问题的重现步骤是什么?
1.我现在自己准备了图片,完成了训练得到了输出文件
2.但是如何将这个训练结果导入到工程中,实现我自己的图像处理方法,翻了几次论坛的k230文件没有找到。
3.我应用的是k230的ide进行开发。
What is the expected output? What do you see instead
获得一个有教学步骤或者讲解的教程,找了一个没有找到。
希望找到一个教程或者文档,能够告诉我开发一步一步是怎么完成的。
问题可能有点愚蠢,但是我看了几个工程,始终不得其法,入不了门。
What version of the product are you using? On what operating system?
硬件为K230。固件版本CanMV-K230_micropython_v1.0_sdk_v1.6_nncase_v2.8.3(创乐博V3.0)。
Are there any error messages or logs?
无。
What have you tried to resolve the issue?
我看了教学文档中二维码条形码的工程文件,主要是通过
code in img.find_qrcodes():
rect = code.rect()
img.draw_rectangle([v for v in rect], color=(255, 0, 0), thickness=5)
img.draw_string_advanced(rect[0], rect[1], 32, code.payload())
这种封装好的函数完成的,但是我如果自定义功能,并没有这种封装好的函数。
Please provide any additional information (e.g., code snippets, configuration settings, screenshots):
无