- 博客(7)
- 资源 (7)
- 收藏
- 关注
原创 在编译通过的项目移植UCOS-II文件,编译出现问题
问题:..\OBJ\PWM.axf: Error: L6200E: Symbol PendSV_Handler multiply defined (by os_cpu_a.o and stm32f10x_it.o).根据编译输出的提示,在项目中打开 stm32f10x_it.c 文件,找到 PendSV_Handler 函数实体,注释后再次编译即可通过。...
2020-06-10 17:05:52
1006
原创 stm32f4xx_fsmc.c出现很多不正常的error
如果你的stm32单片机是f4系列的,就Remove掉stm32f4xx_fsmc.c这个文件。如果你stm32单片机不是f4的,而且stm32f4xx_fmc.c文件出现很多错误,可以参考https://wenku.baidu.com/view/554173a064ce0508763231126edb6f1aff00711e.html的第七页。...
2019-04-21 21:48:03
3569
原创 matlab图像配准与拼接参考
图像配准:https://ww2.mathworks.cn/help/images/ref/imtransform.html图像拼接:https://ww2.mathworks.cn/help/vision/examples/feature-based-panoramic-image-stitching.html?s_tid=srchtitle ht...
2019-04-15 10:33:01
3235
原创 获取path路径中的文件夹
function [folderLen,folder]=getFolder(path)% dir函数获得文件夹的数目lists=dir(path); % 全部文件及文件夹列表lists(1:2)=[];% folder=[];n=1;for index=1:length(lists) if lists(index).isdir==1 folder(n)=...
2018-10-20 16:49:56
1919
原创 Pre-trained Convolutional Neural Network学习笔记
使用Pre-trained Convolutional Neural Network对一千个种类识别。首先,再matlab中加载imagenet-caffe-alex.mat。data=load('imagenet-caffe-alex.mat');然后在matlab工作区data.layers,可以看到有1x21个cell,这21个cell是已经训练好用于这1000种类的识别。例如data.la...
2018-04-30 16:09:38
757
原创 AlexNet用于识别
code:clear;clc;close all;%获取alexnetnet = alexnet; %读照片选物体I= imread('11.jpg'); [cropedim, rect2]=imcrop(I);cropedim=imresize(cropedim,[227 227]);figure(1),imshow(cropedim);% 用AlexNet分类 label = classif...
2018-04-29 19:54:16
2072
1
AccessDatabaseEngine2007与2010版.zip
2019-07-06
hagaygarty/mdCNN
2018-04-26
cifar 10数据集
2018-04-25
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人