上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: IplImage * img; Mat temp = cvarrToMat(img); // IplImage* 格式 ==》 Mat 格式 img = (IplImage *)&temp; // IplImage* 格式 《== Mat 格式 阅读全文
posted @ 2020-01-04 10:45 一颗蘋果 阅读(883) 评论(0) 推荐(0) 编辑
摘要: static __INLINE uint32_t SysTick_Config(uint32_t ticks) { // 判断 tick 的值是否大于 2^24,如果大于,则不符合规则 if (ticks > SysTick_LOAD_RELOAD_Msk) return (1); // 初始化re 阅读全文
posted @ 2019-12-29 13:57 一颗蘋果 阅读(5769) 评论(0) 推荐(0) 编辑
摘要: 出错是因为你当前运行的文件调用到了core_cm3.h,而core_cm3.h文件中包含了有IRQn_Type类型名,但是此类型名是在“stm32f10x.h”中定义的,所以你需要在当前文件包含#include "core_cm3.h"之前先包含#include "stm32f10x.h"记住,两个 阅读全文
posted @ 2019-12-29 13:45 一颗蘋果 阅读(1976) 评论(0) 推荐(0) 编辑
摘要: 这种情况一般是use microlib这个选项没有勾选,勾选一下就好了 阅读全文
posted @ 2019-12-27 21:45 一颗蘋果 阅读(1972) 评论(0) 推荐(0) 编辑
摘要: CRT下载地址: 链接: https://pan.baidu.com/s/1kDsBZLkszNf85pKGLAA-_g 提取码: 4ibj Name:meisi Company:TEAM ZWT Serial Number:03-14-367662 License Key:ACCFAX R9FHJ 阅读全文
posted @ 2019-12-23 20:41 一颗蘋果 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 首先下载工具包,解压后放在以下路径: C:\Program Files\MATLAB\R2015b\toolbox\rvctools 使用时,命令行输入startup_rvc 启动该工具箱 打开例程 >>rtbdemo 阅读全文
posted @ 2019-12-22 10:19 一颗蘋果 阅读(1660) 评论(0) 推荐(0) 编辑
摘要: 这里只调用opencv4.1.1的包,不进行cmake文件。 下面的.pro文件是没有问题的!! INCLUDEPATH += E:/opencv4.1.1/opencv/build/include\ INCLUDEPATH += E:/opencv4.1.1/opencv/build/includ 阅读全文
posted @ 2019-11-28 14:30 一颗蘋果 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 1、LNK2019:mainwindow.obj:-1: error: LNK2019: 无法解析的外部符号 "public: class QString __cdecl PushAlarmModel::getPicUrl(class QModelIndex const &)" (?getPicUr 阅读全文
posted @ 2019-11-23 09:23 一颗蘋果 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 四个步骤 一、预处理阶段 展开头文件,宏替换,条件编译,去掉注释 二、编译阶段 检查语法错误,生成汇编代码 三、汇编阶段 把汇编代码转换成二进制机器码 四、链接阶段 将所有机器码链接在一起,生成可执行程序 字节对齐: (1)当前成员变量之前的总容量必须为此变量大小的整倍数 (2)整个结构体的总容量必 阅读全文
posted @ 2019-11-18 08:32 一颗蘋果 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #include <stdlib.h> int main() { int ch; int count = 0; FILE * fp; char fname[50]; printf("请输入文件名:\n"); scanf("%s", fname); getc 阅读全文
posted @ 2019-11-12 21:24 一颗蘋果 阅读(218) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页