摘要: main.c #include <stdio.h> #include <stdlib.h> #include "sw_timer.h" #include "windows.h" /* run this program using the console pauser or add your own 阅读全文
posted @ 2023-11-01 16:13 星辰陪衬 阅读(23) 评论(0) 推荐(0)
摘要: 转载: https://www.jb51.net/article/193024.htm 问题描述 安装Qt5.15.0后,在运行测试用例时弹出错误: qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even thoug 阅读全文
posted @ 2022-08-23 16:44 星辰陪衬 阅读(504) 评论(0) 推荐(0)
摘要: 转载: https://blog.csdn.net/weixin_42704090/article/details/103141408 防止链接失效 1、函数: 函数原型: 参数: 。第一个参数:输出视频文件名,可以指定输出路径。第二个参数:用于压缩帧的编码器的4个字符的代码,如:CV_FOURCC 阅读全文
posted @ 2022-08-23 16:43 星辰陪衬 阅读(305) 评论(0) 推荐(0)
摘要: 修改坐标文字的位置 删除曲线上的点 阅读全文
posted @ 2022-07-24 15:45 星辰陪衬 阅读(1047) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-06-24 10:20 星辰陪衬 阅读(14) 评论(0) 推荐(0)
摘要: 一,初始化 int BackupSRAM_Init(void){ RCC->AHB4ENR |= 1 << 28; PWR->CR1 |= 1<<8; (RCC->D3AMR) |= (RCC_D3AMR_BKPRAMAMEN); RCC->AHB4ENR |= 1<<28; PWR->CR2 |= 阅读全文
posted @ 2022-06-15 14:49 星辰陪衬 阅读(916) 评论(0) 推荐(0)
摘要: #include "stdio.h" #include "string.h" #define uint8_t unsigned char #define uint16_t unsigned short #define uint32_t unsigned int uint8_t File_Name[1 阅读全文
posted @ 2020-08-03 15:27 星辰陪衬 阅读(247) 评论(0) 推荐(0)
摘要: //待完善-仅供参考 #include "stdio.h" #include "math.h" double O1_x = 0,O1_y = 0; double O2_x = 0,O2_y = 0; void CircleCenter(double x1,double y1,double x2,do 阅读全文
posted @ 2020-06-28 17:15 星辰陪衬 阅读(263) 评论(0) 推荐(0)
摘要: #include "stdio.h" #define uint8_t unsigned char #define uint16_t unsigned short #define uint32_t unsigned int uint32_t Float_To_Hex(float data) { uin 阅读全文
posted @ 2020-06-28 17:07 星辰陪衬 阅读(5041) 评论(0) 推荐(0)
摘要: 用C语言对文件的每一个Byte进行有规律的循环位移,解密时反向移动即可。 阅读全文
posted @ 2020-03-10 23:07 星辰陪衬 阅读(1138) 评论(0) 推荐(0)