- 博客(99)
- 收藏
- 关注

原创 爬虫+脸部识别+DCGAN脸部自动生成
写真美女套图:爬虫+美女脸部识别+DCGAN脸部自动生成所有代码请到我的github上下载,请star一下,谢谢大家了。https://github.com/sileixinhua/BeautifulGirls第一部分:爬虫 抓美女套图(Python+BeautifulSoup+requests)前言本文主要是以爬虫爬取下来的图片为数据,做一个只针对美女脸部识别,和一个DCGAN合成美女脸的模型。第
2020-04-03 17:55:24
7161
2

原创 三种方法检测:“热狗还是不是热狗”(OpenCV+Cascades+Hash)+ 爬虫(下载训练集)
三种方法检测:“热狗还是不是热狗”(OpenCV+Cascades+Hash)+ 爬虫(下载训练集)所有代码请到我的github中下载,欢迎star,谢谢。https://github.com/sileixinhua/HotdogOrNotHotdog前言在美剧《硅谷》中国,有一个华裔的演员,演绎了一个普通开发者的故事,做了一个识别热狗的APP,然后被大公司收购用来做色情识别。APP的效果图如下图所
2017-12-16 13:06:05
2528
1

原创 爬虫:爬取豆果网和美食网的菜单
爬虫:爬取豆果网和美食网的菜单前言本文主要是介绍如果爬取豆果网和美食网的菜单,并保存在本地,我是以列表的形式保存在TXT文件里,大家有兴趣的可以改一改,下载入数据库或者CSV,json等文件都可以。这里爬出的数据主要是为了下一阶段做菜谱推荐,智能冰箱用的,根据用户以往的饮食习惯的数据,可以推荐今天吃什么,让用户或者自动化下单购买哪些食材,或者直接用appium+Python的方式直接连接安卓手机饿了
2017-12-16 11:42:32
6341
6

原创 谣言识别系统(Python):爬虫(bs+rq)+数据处理(jieba分词)+分类器(贝叶斯)
谣言识别系统(Python):爬虫(bs+rq)+数据处理(jieba分词)+分类器(贝叶斯)简介谣言识别系统是新闻分类系统的后续,这次我补充了正确新闻的数据集,为了体现新闻的绝对正确性,我爬取了澎湃新闻的数据。谣言的数据集爬取与处理请参考我的新闻处理系统的数据集,请看点开下面的网址。http://blog.youkuaiyun.com/sileixinhua/article/details/74943336所
2017-07-13 19:46:49
16775
5

原创 新闻分类系统(Python):爬虫(bs+rq)+数据处理(jieba分词)+分类器(贝叶斯)
新闻分类系统(Python):爬虫(bs+rq)+数据处理(jieba分词)+分类器(SVM)简介新闻分类系统可以对十种新闻进行自动分类并显示准确性的结果。(交叉验证准确性在65%~70%,数据集一共3183,可增加数据集提高准确率。)系统分为三部分:爬虫部分,使用Requests处理http,post请求。Beautiful Soup处理HTML页面标签并提取信息。目标网站是谣言百科网站,其实
2017-07-11 12:12:24
23445
17
原创 《剑指 offer : 专项突破版》 读后感
《剑指 offer : 专项突破版》 读后感在我上大学的时候《剑指 offer》就已经很火了,基本上是计算机毕业的学生人手一本。刚开始找工作的时候,每天为了抵消内心的焦虑,起床之后都会把《剑指》里的典型问题的代码“默写”一遍。面试的时候也经常被问到原题。但是随着时间的推移,大家对于“八股文”的掌握越来越深厚。第一版《剑指》在现在的时代背景下已经不适合当下“八股文”的热潮了。我想才遂有了这个《剑指 offer : 专项突破版》,一开始我拿到这本书的时候我还在想不会又是一些市面上常见的那些算法书吧?数
2021-10-24 23:15:25
1359
2
原创 【Rust】使用include!来引入其它rs文件中的方法
【Rust】使用include!来引入其它rs文件中的方法代码main.rsinclude!("guess_what_game.rs");fn main() { //猜猜看游戏,Rust 基础练习 guess_what_game();}guess_what_game.rsfn guess_what_game() { println!("Hello, wor...
2020-04-07 01:02:07
4607
原创 1_weditor定位元素位置
WEditor安装github项目地址https://github.com/openatx/weditor安装代码pip install --pre --upgrade weditor显示如下,则安装成功C:\Users\Administrator.PC-20170907TLUD>pip install --pre --upgrade weditor...
2018-06-25 13:21:32
3336
2
原创 0_uiautomator2与atx环境安装与初始化
uiautomator2uiautomator2的介绍,包括环境的安装,设备初始化,定位元素,测试demogithub项目地址https://github.com/openatx/uiautomator2https://www.cnblogs.com/fnng/p/8486863.htmluiautomator2的缺点:1、测试脚本只能使用Java语言。2、测试...
2018-06-25 13:20:47
6165
5
原创 OpenCV3_C++_Akaze()图像的特征点提取 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-15 10:55:32
3679
2
原创 OpenCV3_C++_DetectEye()图像眼睛识别 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-15 10:54:26
5047
3
原创 OpenCV3_C++_DetectFace()图像上脸部识别 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-15 10:53:26
1925
1
原创 OpenCV3_C++_EliminateObjects()图像识别消去 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-15 10:52:28
582
1
原创 OpenCV3_C++_DetectConers()图像上角检测 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-15 10:51:27
1059
原创 OpenCV3_C++_DispBasic()摄像头基本图像展示 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-15 10:50:22
722
1
原创 OpenCV3_C++_Add()图像叠加 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-15 10:49:33
7157
1
原创 OpenCV3_C++_Erode()图像的收缩 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-15 10:48:47
2264
1
原创 OpenCV3_C++_Dilate()图像的膨胀 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 11:07:18
2493
原创 OpenCV3_C++_Canny()canny边缘检测 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 11:06:19
1724
1
原创 OpenCV3_C++_Sobel()sobel边缘检测 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 11:05:26
3552
原创 OpenCV3_C++_Laplacian()拉普拉斯滤波处理 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 11:04:29
4439
2
原创 OpenCV3_C++_GaussianBlur()图像高斯模糊化处理 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 11:01:37
5301
原创 OpenCV3_C++_Blur()图像的模糊化处理 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 10:44:25
1900
原创 OpenCV3_C++_BitwiseNot()图像颜色的反转 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 10:43:33
4073
原创 OpenCV3_C++_Threshold()阈值化处理 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 10:42:24
5890
原创 OpenCV3_C++_Equalize()灰度平滑化 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 10:41:17
710
原创 OpenCV3_C++_GrayScale()图像灰度化 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-14 10:39:51
4947
原创 OpenCV3_C++_DrawText()在图像上添加文字水印 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 20:03:56
11459
3
原创 OpenCV3_C++_DrawRect()在图像上画四边形 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 20:02:53
7621
1
原创 OpenCV3_C++_Lines()在图像上画直线 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 20:01:32
14956
2
原创 OpenCV3_C++_Circles()画圆圈 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 20:00:00
6259
原创 OpenCV3_C++_Perspective()透视形式投影 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 19:57:56
1656
原创 OpenCV3_C++_RotateCotinue()连续回转图像 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 19:55:34
525
原创 OpenCV3_C++_Rotate()回转图像 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 19:54:45
2712
原创 OpenCV3_C++_Resize()图像扩大缩小 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 19:51:33
16602
原创 OpenCV3_C++_Flip()翻转图片 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 19:50:16
1992
原创 OpenCV3_C++_ImageShow()显示图片 实例
Opencv3 的开发环境安装和导入请看http://blog.youkuaiyun.com/sileixinhua/article/details/71175748所有的OpenCV3_C++实例代码请看https://github.com/sileixinhua/OpenCV_C-_tutorials实例#include "stdafx.h"#include <opencv2/opencv.hpp>#p
2017-10-13 19:43:54
9576
原创 日本好的机器学习,深度学习相关书籍推荐
日本好的机器学习,深度学习相关书籍推荐日文书名:ゼロから作るDeep Learning ―Pythonで学ぶディープラーニングの理論と実装 中文书名:用Python从0开始深度学习理论与实践作者:斎藤 康毅日本亚马逊购买地址:https://www.amazon.co.jp/ゼロから作るDeep-Learning-Pythonで学ぶディープラーニングの理論と実装-斎藤-康毅/dp/487311758
2017-08-27 16:21:36
8096
2
原创 tensorflow-入门-01-Ubuntu安装tensorflow以及常见错误libcudnn.Version cannot open shared object file No such
注意这篇在Ubuntu上的安装tensorflow以及常见错误ImportError: libcudnn.Version: cannot open shared object file: No such file or director的处理文章为2017年8月25日22:01:30所写,如果你看这篇文章的时间过于老旧,那这篇文章作用就不大了,可以参考一下。安装环境Ubuntu 16python3t
2017-08-25 23:08:54
1641
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人