自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (1)
  • 问答 (16)
  • 收藏
  • 关注

原创 使用GDB调试TensorFlow C++代码

使用

2021-12-20 15:22:57 1461

原创 Cannot find appropriate Makefile processor on this system.

1. Ubuntuapt-get install build-essential2. Centosyum install make automake gcc gcc-c++ kernel-devel

2021-01-28 13:25:42 4440 3

原创 解决 ‘makeinfo‘ is missing on your system.

方法一:ubuntu:sudo apt-get install texinfocentos:yum installtexinfo方法二:dnf --enablerepo=PowerTools install texinfo

2021-01-07 16:10:51 6873 2

原创 C++ primer plus 第六版编程题解答(第五章)

5.1#include <iostream>int main(){ using namespace std; int x, y, res; cout << "Please enter two numbers: "; cin >> x >> y; for (int i = x; i <=y;i++) res += i; cout << "The result is: " &

2020-11-07 14:37:53 125

原创 C++ primer plus 第六版编程题解答(第四章)

4.1#include <iostream>#include <typeinfo>using namespace std;int main(){ char f_name[10], l_name[10]; char grade; int age; cout << "What's your first name? "; cin.getline(f_name,10); cout << "What's you

2020-10-28 20:27:48 153

原创 C++ primer plus 第六版编程题解答(第三章)

3.1#include <iostream>using namespace std;int main(){ const int CONVERT = 12; int high, foot, inch; cout << "Please Enter your height in inch:___\b\b\b"; cin >> high; foot = high/CONVERT; inch = high%CONVERT;

2020-10-28 17:23:01 111

原创 C++ primer plus 第六版编程题解答(第二章)

2.1#include <iostream>int main(){ std::cout << "huisy" << "\n"; std::cout << "dongchuan road 500" << "\n"; return 0;}2.2# include <iostream>using namespace std;int main(){ int a; cin >

2020-10-28 17:16:42 377

原创 Python常用小技巧(一)

列表推导式1.解包# 将二维列表转换为一维列表>>> l = [[1,2],[3,4],[5,6],[7,8]]>>> [i for k in l for i in k][1, 2, 3, 4, 5, 6, 7, 8]2.完成元素操作# 将列表中的元素转换为字符串型>>> l = [1, 2, 3, 4, 5, 6, 7, 8]>>> [str(i) for i in l]['1', '2', '3',

2020-10-26 10:25:30 95

MICCAI2019论文合集.txt

MICCAI 2019超全完整论文集,论文集一共六个chapter,百度网盘资源。做医学图像和深度学习的可以看看。

2019-11-12

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除