MichaelDu
MichaelDu
I am wonder esp-adf-arduino when will be relesed. Does the development team have a schedule on it?Thanks.
Are there any plans to increase MSC support here? CDC+MSC may be great Thanks
https://github.com/espressif/esp-dl/blob/79034eeb6a98e5dd896c1bf8e87403d562460078/include/model_zoo/face_recognizer.hpp According to the code, currently, face id data can only be saved in Flash storage. How to save face ID to sdcard instead of flash
将Model Zoo中的人脸识别等算法内置到了Micropython中,可以通过micropython指令方便的调用这些模型,识别速度非常满意。 在开启摄像头及图传后,我们内部内存剩余在50-80KB左右,一旦开启人脸检测后,很容易报wifi内存错误,我们分析可能是内存不足引起的。因为这些模型是不开源的,所以想了解一下这些模型的内存占用情况,尤其是峰值情况。 我在使用esp who\examples\human_face_detection\lcd例程时,开启了另外一个task,间隔10ms打印内存信息,偶尔可以看到内存占用了70K左右内部内存的情况。 如一下截图  使用的内存函数:printf("m: %d, inter: %d, dram: %d\r\n", esp_get_free_heap_size(), heap_caps_get_free_size(MALLOC_CAP_INTERNAL), heap_caps_get_free_size(MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT));
USB MSC Wireless Disk例程中提到: [Known Issues](https://github.com/espressif/esp-iot-solution/blob/master/examples/usb/device/usb_msc_wireless_disk/README.md#known-issues) Files uploaded through web can not be aware by host , so Windows files resource manager can not update the files list automatically. Please...
如题 使用场景:无需使用tensorflow等训练平台,直接在S3上学习训练,完成一些有明显特征的分类训练。 既然已有的人脸识别案例已经可以在S3上实现人脸特征的学习训练,相信一些简单特征的学习训练应该也是可以满足的。 这方面有官方案例或开源资料可以参考吗,分类速度能达到10帧左右即可,谢谢
LittlevGL is awesome, thank you for your efforts. I want to know how the lv_gui_builder is going and when will be released? Thank you
Hi, mocleiri. After I successfully completed the image classification based on edge impulse and tensorflow-micropython-examples, I began to try the audio classification based on edge impulse. At the beginning, my...