自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (9)
  • 收藏
  • 关注

原创 使用Anaconda2 和 Pycharm搭建Python IDE

先安装Anaconda2,再安装pycharm2016一劳永逸,解决python packages numpy matplotlib 安装困难问题尤其适合离线安装

2016-03-27 10:05:54 7550

原创 Handwriting Number Recognition Using Python 2.7.11

The code blow comes from the Sentdex video on youtube, which I have changed a little bit. It’s easy to understand with basic Python knowledge.Now is the function and script: # coding = utf-8# from se

2016-03-12 11:21:39 995

原创 Python 2.7.11 字典操作

#coding=utf-8# DictMappingOperation.py# 1. 创建字典phonebook={'Alice':'2341', 'Beth':'9120', 'Cecil':'3248'}print phonebookitems=[('name','rong'),('age',24)]#使用键值对序列d=dict(items)print dd2=dict(name

2016-03-06 17:29:39 2040

原创 Python 2.7.11 字符串操作

#coding=utf-8# StringOperation.py# 1. str.find(substr,startIdx,endIdx)# 返回左边第一个子串的左边第一个字符的索引# 区分大小写string1='To be or not to be'print string1.find('be',1)print string1.find('to',0,5)#未找到返回-1# 2. s

2016-03-06 15:52:44 1520

原创 Python 2.7.11 基本语法和数据结构学习笔记

#coding=utf-8# hello.py# Python 基本语法学习笔记##1) str, reprs='Hello world!'print str(s)# Hello world!print repr(s)# 'Hello world!'##2) input, raw_inputname=input("what is your name?")#只支持字符串print "He

2016-03-06 10:54:15 781

原创 OpenCV2411 数据类型

#include <opencv2/core/core.hpp>#include <opencv2/imgproc/imgproc.hpp>#include <opencv2/highgui/highgui.hpp>#include <iostream>using namespace cv;using namespace std;int OpenCVDataTypes(){ //

2016-03-05 18:58:25 712

原创 QT OpenCV2.4.11 .pro文件内容

QT OpenCV2.4.11 .pro文件内容QT += coreQT -= guiTARGET = HelloWorldTestCONFIG += consoleCONFIG -= app_bundleTEMPLATE = appSOURCES += main.cpp \ drawpicture.cpp \ opencvdatatypes.cppINCLUDEPATH+=C

2016-03-05 18:56:47 1016

custom_data.ipynb

pytorch 自定义数据集 notebook # Dataset 类 # torch.utils.data.Dataset 是一个抽象类, 表示一个dataset. # 自定义的dataset类需要继承Dataset. 并且重载: # __len__函数, len(dataset)返回数据集的长度 # __getitem__函数, 支持dataset[i]寻址.

2019-10-23

图像处理分析与机器视觉-Sonka-教辅-代码

Image Processing Analysis and Machine Vision 算法代码 matlab实现 带图像素材

2018-10-19

机器学习实战_machine learning in action_SourceCode.zip

机器学习实战_machine learning in action_SourceCode.zip

2018-08-16

Introduction to Machine Learning with Python_正式版.pdf

Introduction to Machine Learning with Python_正式版.pdf Introduction to Machine Learning with Python_正式版.pdf Introduction to Machine Learning with Python_正式版.pdf 不是early release.

2018-08-16

An-introduction-to-neural-networks-for-beginners

An-introduction-to-neural-networks-for-beginners pdf

2018-08-16

cuda-supercomputing-for-the-masses

cuda-supercomputing-for-the-masses

2017-07-17

Notepad ++ 文件比较插件. 来源于SourceForge.

Notepad ++ 文件比较插件. 来源于SourceForge.

2017-07-04

CUDA By Example 代码

CUDA By Example 代码

2017-06-26

《算法导论》第三版 教师指导手册英文清晰版

有学习指导和部分答案。有学习指导和部分答案。有学习指导和部分答案。

2013-11-01

空空如也

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

TA关注的人

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