自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

YukinoAI的博客

不因虚度年华而悔恨,不因碌碌无为而羞愧

  • 博客(15)
  • 资源 (6)
  • 收藏
  • 关注

原创 Jupyter NoteBook——如何修改jupyter的默认打开路径及主题

设置默认打开路径方法11.打开cmd,首先进入到Jupyter的安装目录,我的是在D:\Python\Anaconda\Scrips中。d:cd Python\Anaconda\Scrips2.进入到上面路径后输入命令jupyter notebook --generate-config3.执行命令后,会在如下所示路径的文件夹中找到新建立的Jupyter_noteboo...

2018-10-16 16:48:15 20463 9

原创 OpenCV-Python——利用笔记本摄像头实现人脸检测

1.安装opencv首先参考其他文章安装pip。之后以管理员身份运行命令提示符,输入以下代码安装opencvpip install --user opencv-python可以使用以下代码测试安装是否成功#导入opencv模块import cv2#捕捉帧,笔记本摄像头设置为0即可capture = cv2.VideoCapture(0)#循环显示帧while(Tr...

2018-10-16 15:29:49 18197 6

转载 Linux(Ubuntu)常用命令总结--Linux Command CheatSheet

最近看到一份非常不错的linux常用命令总结,适合于刚入门的新手原地址:https://rumorscity.com/wp-content/uploads/2014/08/10-Linux-Unix-Command-Cheat-Sheet-021.jpg 

2018-10-07 13:54:17 2243 1

转载 C++Primer Plus笔记——第十七章 输入、输出和文件课后编程练习答案

转自https://blog.csdn.net/Robot_x/article/details/54932730,侵删课后编程练习答案习题1              习题2             习题3            习题4              习题5            习题6习题1#include<iostream>int main(){...

2018-10-04 16:32:32 539

原创 C++Primer Plus笔记——第十六章 string类和标准模板库课后编程练习答案

课后编程练习答案习题1        习题2         习题3         习题4          习题5习题6        习题7         习题8         习题9          习题10习题1#include "stdafx.h"#include <string>#include <iostream>using n...

2018-10-04 16:18:37 368

原创 C++Primer Plus笔记——第十五章 友元、异常和其他课后编程练习答案

课后编程练习答案习题1                习题2               习题3             习题4习题1//tv.h#ifndef TV_H_#define TV_H_#include <iostream>using namespace std;class Tv{ friend class Remote;public: ...

2018-10-04 16:01:34 316 1

原创 C++Primer Plus笔记——第十六章 string类和标准模板库总结及程序清单

目录本章小结程序清单string类16.1 str1.cpp                16.2 strfile.cpp            16.3 hangman.cpp          16.4 str2.cpp智能指针模板类16.5 smrtptrs.cpp         16.6 fowl.cpp标准模板库16.7 vect1.cpp      ...

2018-10-03 20:05:51 725

原创 C++Primer Plus笔记——第十五章 友元、异常和其他总结及程序清单

目录本章小结程序清单友元类15.1 tv.h                   15.2 tv.cpp                   15.3 use_tv.cpp            15.4 tvfm.h嵌套类 15.5 queuetp.h         15.6 nested.cpp异常15.7 error1.cpp          15.8 e...

2018-10-03 19:50:18 678

原创 C++Primer Plus笔记——第十七章 输入、输出和文件总结及程序清单

目录本章小结程序清单使用cout进行输出17.1 write.cpp            17.2 defaults.cpp         17.3 manip.cpp        17.4 width.cpp       17.5 fill.cpp17.6 precise.cpp        17.7 showpt.cpp          17.8 setf.cpp...

2018-10-03 19:30:56 722

原创 C++Primer Plus笔记——第十四章 C++中的代码重用课后编程练习答案

编程练习答案习题1     习题2     习题3    习题4    习题5习题1//winec.h#ifndef WINEC_H_#define WINEC_H_#include <iostream>#include <string>#include <valarray>using namespace std;template&l...

2018-10-01 20:28:03 405

原创 C++Primer Plus笔记——第十四章 C++中的代码重用总结及程序清单

目录本章小结程序清单使用valarray对象创建Student类    14.1 studentc.h    14.2 studentc.cpp    14.3 use_stuc.cpp使用string类和valarray类派生Student类    14.4 studenti.h    14.5 studenti.cpp    14.6 use_stui.cpp多重继承   ...

2018-10-01 20:03:36 1073 1

原创 C++Primer Plus笔记——第十三章 类继承课后编程练习答案

目录习题1习题2习题3习题4课后编程练习习题1#include <iostream>#include <cstring>using namespace std;// base classclass Cd{ char performers[50]; char label[20]; int selections; // number...

2018-10-01 16:01:23 390

原创 C++Primer Plus笔记——第十三章 类继承总结及程序清单

目录本章小结程序清单一个简单的基类派生一个类多态公有继承抽象基类使用动态内存分配和友元的继承本章小结       继承通过使用已有的类(基类)定义新的类(派生类),使得能够根据需要修改编程代码。公有继承建立is-a关系,这意味若派生类对象也应该是某种基类对象。作为is-a模型的一部分,派生类继承基类的数据成员和大部分方法,但不继承基类的构造函数、析构函数和赋值运...

2018-10-01 15:42:22 678

原创 C++Primer Plus笔记——第十二章 类和动态内存分配课后编程练习答案

目录课后习题习题1习题2习题3习题4习题5&6课后习题习题1#include <iostream>#include <cstring>using namespace std;class Cow { char name[20]; char * hobby; double weight;public: Cow(...

2018-10-01 14:48:19 365

原创 C++Primer Plus笔记——第十二章 类和动态内存分配总结及程序清单

目录本章小结程序清单改进前的string类(在构造函数和析构函数中使用了动态内存分配)改进后的String类(添加了复制构造函数及赋值运算符)再谈定位new运算符复习:模拟队列本章小结       本章介绍了定义和使用类的许多重要方面。其中的一些方面是非常微妙甚至很难理解的概念。如果其中的某些概念对于您来说过于复杂,也不用害怕——这些问题对于大多数C++的初学者来说...

2018-10-01 14:33:47 575 1

深度学习基础概念思维导图

深度学习基础概念的思维导图,有中文翻译(机器翻译的),利用思维导图可以帮助新手更快掌握深度学习的理论体系

2019-04-09

Maple 使用手册

大型符号运算软件Maple的入门指导手册 内容由浅入深,覆盖范围全面 注意是英文的

2018-12-05

ROS机器人编程

不错的ROS中文入门资料 环境为Ubuntu14.04系统,ROS版本为Kinetic

2018-12-05

树莓派及计算机视觉

Design and implement your own computer vision applications with the Raspberry Pi

2018-12-04

Raspberry Pi for Beginners All you nee

不错的树莓派入门资料 The Raspberry Pi has taken the world by storm. The credit-card size computer has sold over a million units and has captured the imagination of kids and adults all over the globe. For the former, it has proved a great way to get into the world of programming and for the latter, it has allowed their creativity to soar. With a few peripherals and basic programming knowledge, your Raspberry Pi can do things you never imagined. Raspberry Pi for Beginners teaches you just that. We begin with the peripherals you’ll need, how to set it up and install distros familiar to you. Raspbian tutorials then introduce you to the potential of the device. A weather station, music streamer and webcam server are a few of the many project tutorials we’ve shown you how to create and there’s also a section on how to get started with Scratch and Python programming. Every new venture comes with its own set of challenges, so we’ve concluded with a section on Troubleshooting and FAQs.

2018-12-04

空空如也

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

TA关注的人

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