- 博客(21)
- 资源 (5)
- 收藏
- 关注
原创 34-数据结构-循环队列(1.0版本)-加了详细注释
#include <stdio.h> #include <malloc.h> #include <stdlib.h> //【1】队列数据结构 typedef struct queue { int* pbase; // 注意是int * int rear=0; int front=0; }QUEUE; void init(QUEUE...
2019-09-04 17:38:24
233
原创 33-数据结构--栈(2)
#include<stdio.h> #include<malloc.h> #include<stdlib.h> //【1】定义数据类型和两个指针 typedef struct node { int data; struct node* pnest; }NODE,*PNODE; typedef struct stack { PNODE p...
2019-09-03 21:35:52
168
原创 033-数据结构-栈(1)
【1】 #include<stdio.h> #include<malloc.h> #include<stdlib.h> //【1】节点数据类型 typedef struct node { int data; struct node* pnext; }NODE,*PNODE; //【2】栈:两个参数 typedef struct stack ...
2019-09-03 16:35:05
173
原创 032-创建链表和遍历链表(4)
#include<stdio.h> #include<malloc.h> #include<stdlib.h> //【1】数据类型 typedef struct node { int data; struct node* pnext;// struct node * 是数据类型 ,所以p->pnext 就是指的p指向的结构体里的指...
2019-09-03 11:19:14
251
原创 31-数据结构-创建链表(3)
#include<stdio.h> #include<malloc.h> #include<stdlib.h> //【1】节点数据类型 typedef struct node { int data; struct node* pnext; }NODE,*PNODE; PNODE creat_list(); void travel_list(P...
2019-09-03 10:35:32
189
原创 30-数据结构-创建链表(2)
#include<stdio.h> #include<malloc.h> #include<stdlib.h> #include<stdlib.h> //---【1】创建结点数据类型 typedef struct node { int data; struct node* pnext; } NODE, * PNODE; ...
2019-09-03 09:31:44
185
原创 29-数据结构-链表创建和遍历(1)
学习笔记啦,笔试用的,希望能敲出来 #include<stdio.h> #include<malloc.h> #include<stdlib.h> //--【1】----先把每个结点的数据类型写出来-------结构体------------ typedefstructNode { intdata;//数据域 structNo...
2019-09-02 18:09:10
220
原创 026-opencv320 (总结)
【1】读入读片 imread 【2】 // 001-test.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include <iostream> #include<opencv2/opencv.hpp> #include<opencv2/highgui/highgui.hpp> using namespace cv; ...
2019-08-31 21:33:36
321
原创 【23】---双目程序整理(2)
【1】介绍下邹华宇的双目代码,把详细配置都贴出来会,以及报错的地方修改 (1)程序会出现的报错: (图1.1) (图1.2) 修改方法如上图 (2)具体配置过程(注意细节,我都用红色标注出来了) 包含目录: H:\opencv249\opencv\build\include; H:\opencv249\opencv\build\incl...
2019-08-31 11:10:39
262
原创 021-文章列表
双目https://blog.youkuaiyun.com/Y_principal/article/details/100143013 常用命令总结https://blog.youkuaiyun.com/Y_principal/article/details/100107742
2019-08-28 21:21:54
152
原创 020-pyinstaller 打包
【1】pyinstaller 打包之后闪退 .\文件名.exe 可以看到报错信息 (图1.1) 解决办法 【2】尝试用cx_freeze打包
2019-08-28 21:20:16
132
原创 19- 一些常用命令 ------python----windows------
目录 【1】激活conda中python版本 【2】conda info --env可以看到所有python环境 【3】for 循环遍历列表方法输出列表 【4】for循环输出字典内容 【5】opencv中取出图像坐标点的方法 【6】【7】【8】【9】【10】【11】【12】【13】【14】【15】【16】【17】【18】【19】【20】【21】【22】【23】 【1...
2019-08-27 20:19:35
174
原创 camshift 鼠标标出框和实际显示不准
1. capture = cvCaptureFromAVI("1.avi"); // 如果用MP4文件将会出现,画框位置不准的情况 程序参考https://blog.youkuaiyun.com/zhengtu009/article/details/17225351 ...
2019-07-27 15:09:12
233
原创 数据库学习笔记
【1】开始学习时间 2019年7月17日23:38:53 【2】更新时间2019年8月20日15:21:05 ----学习查询 【2】安装方法https://www.cnblogs.com/rewwensoftware/p/9580697.html 【3】数据库查询: (1)添加数据图: ...
2019-07-17 16:54:08
151
原创 深度学习(学习记录)
//先占个位置,有时间了更 【1】分类 近期打算用keras写一个分类的文章,主要是为了实现分类。例如,不同积木在摆放时,获取他的颜色(3种)和姿态(两种) 【2】识别 关于人脸识别,和人脸特征点检测,课题做了一段时间这个,就当找工作之前总结一下。 ...
2019-07-17 16:51:33
168
原创 通过深度&&机械臂
前段时间做了一个项目,用深度学习识别物体,然后抓取物体,用的是埃夫特的机械臂,后面有时间就写一下 【1】kinect 标定 【2】通信/tcp 协议 【3】机械臂编程 ...
2019-07-17 16:45:45
342
原创 03-python基本语法
主要是是在学习过程中的一些记录笔记 有一部分是莫凡视频教程里的代码,正则部分是别的视频里的 # print 函数print("hello world")print('hello world'+str(4))#转换为字符串print("int(2**2)")print(2**2) # 2的2次方print(2+2)# 2+2print(int('2')+2)# 字符串转换为整型# ...
2019-07-17 16:10:09
1587
eric6----17.03.1这个是支持汉化的版本,需要者自取
2019-08-24
designer_zh_CN1111.zip
2019-08-25
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅