摘要:
VIM 基础配置 参考资料 Vimrc Configuration Guide - How to Customize Your Vim Code Editor with Mappings, Vimscript, Status Line, and More https://github.com/pre 阅读全文
摘要:
OpenCV4 源码编译安装 | 记录 参考资料 官方文档:https://docs.opencv.org/4.x/d7/d9f/tutorial_linux_install.html 环境 wsl2-ubuntu20.04 opencv4.5.5 步骤 安装GCC \ CMake \ make s 阅读全文
摘要:
C 数据类型与字节数组相互转化 uint16_t → bytes uint8_t uint16_t2bytes(uint8_t* buffer, uint16_t data) { if(buffer == NULL) return 0; uint16_t tmp2byte = data; *buff 阅读全文