摘要: VIM 基础配置 参考资料 Vimrc Configuration Guide - How to Customize Your Vim Code Editor with Mappings, Vimscript, Status Line, and More https://github.com/pre 阅读全文
posted @ 2023-02-18 14:06 Mozzarella_cheese 阅读(34) 评论(0) 推荐(0) 编辑
摘要: OpenCV4 源码编译安装 | 记录 参考资料 官方文档:https://docs.opencv.org/4.x/d7/d9f/tutorial_linux_install.html 环境 wsl2-ubuntu20.04 opencv4.5.5 步骤 安装GCC \ CMake \ make s 阅读全文
posted @ 2022-05-09 20:15 Mozzarella_cheese 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 排列组合 排列 指从给定n个数的元素中提取出指定r个数的元素,进行排序。 \[ A_n^r=\frac{n!}{(n-r)!} \] 组合 指从给定n个数的元素中仅取出指定r个数的元素,不考虑排序。 \[ C_n^r=\frac{n!}{r!(n-r)!} \] 阅读全文
posted @ 2021-07-21 19:43 Mozzarella_cheese 阅读(29) 评论(0) 推荐(0) 编辑
摘要: C 数据类型与字节数组相互转化 uint16_t → bytes uint8_t uint16_t2bytes(uint8_t* buffer, uint16_t data) { if(buffer == NULL) return 0; uint16_t tmp2byte = data; *buff 阅读全文
posted @ 2021-07-14 21:31 Mozzarella_cheese 阅读(313) 评论(0) 推荐(0) 编辑