会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
luoganttcc
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
338
339
340
341
342
343
344
345
下一页
2018年7月10日
python TF-IDF
摘要: TF-IDF
阅读全文
posted @ 2018-07-10 22:32 luoganttcc
阅读(86)
评论(0)
推荐(0)
2018年7月6日
python 正则之提取字符串中的汉字,数字,字母
摘要: #\d 匹配一个数字字符。等价于 [0-9]#\D 匹配一个非数字字符。等价于 [^0-9]#过滤字符串中的英文与符号,保留汉字import rest = "hello,world!!%[545]你好234世界。。。"ste = re.sub("[A-Za-...
阅读全文
posted @ 2018-07-06 20:59 luoganttcc
阅读(2145)
评论(0)
推荐(0)
2018年7月5日
python 正则学习笔记
摘要: 官方document#1.0import rem=re.search('(?<=abc)def','cxabcdefgb')print(m.group(0))#1.1m=re.search(r'(?<=-)\w+','apam-egg')print(m.gr...
阅读全文
posted @ 2018-07-05 17:25 luoganttcc
阅读(95)
评论(0)
推荐(0)
2018年7月1日
opencv 修改图片尺寸
摘要: import cv2# Load an color image in grayscaleimg = cv2.imread('psu.jpeg',3)#cv2.imshow('image',img)res=cv2.resize(img,(1340,1104),...
阅读全文
posted @ 2018-07-01 14:10 luoganttcc
阅读(307)
评论(0)
推荐(0)
2018年6月29日
opencv 卷积神经网络
摘要: import numpy as npimport cv2from scipy import ndimagek33=np.array([[-1,-1,-1], [-1,8,-1], [-1,-1,-1]])k...
阅读全文
posted @ 2018-06-29 11:11 luoganttcc
阅读(283)
评论(0)
推荐(0)
opencv 高斯模糊
摘要: import numpy as npimport cv2from scipy import ndimagek33=np.array([[-1,-1,-1], [-1,8,-1], [-1,-1,-1]])k...
阅读全文
posted @ 2018-06-29 11:00 luoganttcc
阅读(148)
评论(0)
推荐(0)
2018年6月28日
tf.sesson
摘要: import tensorflow as tf #导入tensorflowa=tf.constant([[1,2]]) #定义了一个1×2的矩阵b=tf.constant([[2], [4]]) #定义了一个2×1的...
阅读全文
posted @ 2018-06-28 22:59 luoganttcc
阅读(86)
评论(0)
推荐(0)
ubuntu 安装 opencv 3.4.1
摘要: 文章1文章2
阅读全文
posted @ 2018-06-28 22:48 luoganttcc
阅读(71)
评论(0)
推荐(0)
2018年6月27日
python 快速排序
摘要: a=[5,4,2,3,1]print(a)n=len(a)l=0r=n-1while True: if a[l]>a[r]: a[l],a[r]=a[r],a[l] r=r-1 if l==r: l=l+1 ...
阅读全文
posted @ 2018-06-27 11:47 luoganttcc
阅读(99)
评论(0)
推荐(0)
python 堆排序的两种实现
摘要: import heapq#-*- coding: UTF-8 -*-import numpy as npdef MakeHeap(a): for i in range(int(a.size / 2) - 1, -1, -1):#对非叶子节点的子节点进行...
阅读全文
posted @ 2018-06-27 10:43 luoganttcc
阅读(159)
评论(0)
推荐(0)
上一页
1
···
338
339
340
341
342
343
344
345
下一页
公告