自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (8)
  • 收藏
  • 关注

原创 Intellij IDEA搭建SpringBoot + MySql + mybatis项目

1.新建SpringBoot项目1.1通过file->new project,新建项目1.2.设置项目名称,包名等1.3.选择web项目和数据库1.4.点击Next,然后点击Finish完成项目创建,项目结构如下图2.修改配置文件项目中生成的配置文件为application.properties,使用起来不够简洁、切勿代码提示,因此,改换appli...

2018-11-23 08:47:26 9873 10

原创 jupyter同时支持python2和python3

windows电脑可用首先通过pip install jupyter安装jupyter之后通过python3实现下面的命令,实现kernel公用python3 -m pip install ipykernelpython3 -m ipykernel install --user

2018-10-10 17:14:13 1830 1

原创 windows7 64 tensorflow配置

参考网页https://www.tensorflow.org/install/install_windows。1、安装anaconda最新版本python3.6,但是python3.6不支持TensorFlow的安装,所以需要装回python3.5;2、配置anaconda的环境变量(../Anaconda3/Scripts)加入进环境变量中去;3、修改python版本号conda

2017-08-09 22:15:12 218

Intellij IDEA搭建SpringBoot + MySql + mybatis项目

使用IDEA搭建了spring-boot+mybatis的工程,实现了和MySQL数据库的交互。 使用IDEA搭建了spring-boot+mybatis的工程,实现了和MySQL数据库的交互。 使用IDEA搭建了spring-boot+mybatis的工程,实现了和MySQL数据库的交互。

2018-11-23

李航 统计学习方法 kd树实现

kd树(K-dimension tree)是一种对k维空间中的实例点进行存储以便对其进行快速检索的树形数据结构。kd树是是一种二叉树,表示对k维空间的一个划分,构造kd树相当于不断地用垂直于坐标轴的超平面将K维空间切分,构成一系列的K维超矩形区域。kd树的每个结点对应于一个k维超矩形区域。利用kd树可以省去对大部分数据点的搜索,从而减少搜索的计算量。

2017-09-29

统计学习方法 kd树实现

包含kd树的建立以及搜索两部分程序,具体算法过程如下: 给定一个目标点,搜索其最近邻,首先找到包含目标点的叶节点,然后从该叶节点出发,依次退回到其父节点,不断查找是否存在比当前最近点更近的点,直到退回到根节点时终止,获得目标点的最近邻点。如果按照流程可描述如下: 1. 从根节点出发,若目标点x当前维的坐标小于切分点的坐标,则移动到左子节点,反之则移动到右子节点,直到移动到最后一层叶节点。 2. 以此叶结点为“当前最近点” 3. 递归的向上回退,在每个节点进行如下的操作: a.如果该节点保存的实例点距离比当前最近点更小,则该点作为新的“当前最近点” b.检查“当前最近点”的父节点的另一子节点对应的区域是否存在更近的点,如果存在,则移动到该点,接着,递归地进行最近邻搜索。如果不存在,则继续向上回退 4. 当回到根节点时,搜索结束,获得最近邻点

2017-09-29

python pygame 小游戏

使用Python+pygame写的三子棋的小游戏。 Python知识用到了类及方法的建立,库的导入 Pygame涉及到了画布的建立,背景的绘制,矩形,圆形,线条的绘制等

2016-05-10

Android 台球小游戏源码

我玩桌球源码,可直接运行,分为计时赛和练习赛,还有排行榜功能,很适合学习开发使用……

2015-04-07

Mastering OpenCV with Practical Computer Vision Projects

本书只是通过几个案例来熟悉一下几个常用计算机视觉的模块应用,开头用了两个增强现实的例子,有个SVM的例子,还有个结合Kinect的例子,蛮有针对性,对刚入门计算机视觉的同学很实用。 Computer Vision is fast becoming an important technology and is used in Mars robots, national security systems, automated factories, driver-less cars, and medical image analysis to new forms of human-computer interaction. OpenCV is the most common library for computer vision, providing hundreds of complex and fast algorithms. But it has a steep learning curve and limited in-depth tutorials. Mastering OpenCV with Practical Computer Vision Projects is the perfect book for developers with just basic OpenCV skills who want to try practical computer vision projects, as well as the seasoned OpenCV experts who want to add more Computer Vision topics to their skill set or gain more experience with OpenCV’s new C++ interface before migrating from the C API to the C++ API. Each chapter is a separate project including the necessary background knowledge, so try them all one-by-one or jump straight to the projects you’re most interested in. Create working prototypes from this book including real-time mobile apps, Augmented Reality, 3D shape from video, or track faces & eyes, fluid wall using Kinect, number plate recognition and so on. Mastering OpenCV with Practical Computer Vision Projects gives you rapid training in nine computer vision areas with useful projects. - Allows anyone with basic OpenCV experience to rapidly obtain skills in many computer vision topics, for research or commercial use - Each chapter is a separate project covering a computer vision problem, written by a professional with proven experience on that topic - All projects include a step-by-step tutorial and full source-code, using the C++ interface of OpenCV

2015-04-07

opencv2.4.9+vs2013_打开摄像头

opencv2.4.9+vs2013+打开摄像头,边缘检测,转化为灰度图

2014-08-14

GY-80 三轴陀螺仪

GY-80 9轴陀螺仪 51程序代码,测试可用

2013-08-09

空空如也

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

TA关注的人

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