摘要: 这是第三天的学习记录 1 #include <iostream> 2 3 using namespace std; 4 class B 5 { 6 public: 7 B() { cout << "B construction !" << endl; } 8 ~B() { cout << "B de 阅读全文
posted @ 2022-05-07 08:15 Z_He 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 这是第二天学习的代码。 1 #include <iostream> 2 3 using namespace std; 4 5 // 引用 6 int add(int& a, int& b) 7 { 8 return a+b; 9 } 10 void swap(int& a, int& b) 11 { 阅读全文
posted @ 2022-05-05 21:59 Z_He 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 终于又更新博客了,这次更新的内容是关于C++学习记录的。 1 #include <iostream> 2 #include <cstring> 3 4 //using namespace std; // 这种方式会包含许多不需要的内容 5 using std::cout; // 这种方式就很轻便 6 阅读全文
posted @ 2022-05-04 21:48 Z_He 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 首先,我学习了一下google的CoLab的在线代码编辑功能,更新了以前的两个学习的项目: 1)CIFAR10与改进的VGG13 https://www.cnblogs.com/heze/p/12292536.html 2)CIFAR10与ResNet18 https://www.cnblogs.c 阅读全文
posted @ 2020-05-24 18:46 Z_He 阅读(498) 评论(3) 推荐(0) 编辑
摘要: 3个Github相关项目介绍 (1)32 Star 它源于Kaggle2017年的竞赛题,结果:训练4000次,2小时,GTX1070,DICE系数0.78; 预测512张,有96%的效果。 (2)2 Star 看不懂,似乎有一点(1)的影子 (3)Newest 简单,代码没给全。 总结: 1、参考 阅读全文
posted @ 2020-05-04 09:12 Z_He 阅读(475) 评论(0) 推荐(1) 编辑
摘要: U-Net网络模型属于全卷积神经网络的一种,是一个有监督的端到端的图像分割网络,由弗莱堡大学Olaf在ISBI举办的细胞影像分割比赛中提出的[1]。其网络结构形式字母U,如图,命名为U-Net,网络主要由两部分,收缩路径(编码层)和扩展路径(解码层),前者主要用于提取图片的上下信息,后者用于对图片中 阅读全文
posted @ 2020-05-01 22:46 Z_He 阅读(1523) 评论(0) 推荐(0) 编辑
摘要: (一) 8x8点阵 代码 1 int LedPins[8] = {2, 7, 19, 5, 13, 18, 12, 16}; 2 int GndPins[8] = {6, 11, 10, 3, 17, 4, 8, 9}; 3 4 void setup() { 5 // put your setup 阅读全文
posted @ 2020-04-30 09:57 Z_He 阅读(873) 评论(0) 推荐(0) 编辑
摘要: (一) 4×4薄膜按键 代码如下: 1 const int numRows = 4; 2 const int numCols = 4; 3 const int debounceTime = 20; 4 const char keymap[numRows][numCols] = { 5 {'1','2 阅读全文
posted @ 2020-04-27 21:32 Z_He 阅读(826) 评论(0) 推荐(0) 编辑
摘要: (一)、抢答器: 代码 1 int redled = 8; 2 int yellowled = 7; 3 int greenled = 6; 4 5 int redpin = 5; 6 int yellowpin = 4; 7 int greenpin = 3; 8 9 int restpin = 阅读全文
posted @ 2020-04-23 22:09 Z_He 阅读(1829) 评论(0) 推荐(0) 编辑
摘要: 作为兴趣爱好,开始学习开发板,从基础入手,记录学习使用心得。 一、arduino Arduino是一款便捷灵活、方便上手的开源电子原型平台。包含硬件(各种型号的Arduino板)和软件(ArduinoIDE)。 由一个欧洲开发团队于2005年冬季开发。其成员包括Massimo Banzi、David 阅读全文
posted @ 2020-04-21 20:52 Z_He 阅读(4208) 评论(0) 推荐(0) 编辑