-
Python串口通信实例(pyserial)
一个应用pyserial的实例
- 2020-11-28下载
- 积分:1
-
时间序列预测lstm
【实例简介】
- 2021-08-06 00:31:00下载
- 积分:1
-
pygamedemo
一个pygame开发的小例子,仅供学习参考(A pygame small demo )
- 2013-04-11 10:35:42下载
- 积分:1
-
Python_HACKER1
深入理解Python中文版-啄木鸟 深入理解Python中文版-啄木鸟(Depth understanding of the Chinese version of Python- Python-depth understanding of the Chinese version Woodpecker- Woodpecker)
- 2013-09-13 20:16:38下载
- 积分:1
-
cohesive
说明: 用于abaqus建模内聚力单元建模,通过内聚力单元分析材料损伤(Used for abaqus modeling, the cohesion unit is used to analyze material damage)
- 2020-06-19 17:20:02下载
- 积分:1
-
RdWr
Read and write test by Winfof
- 2016-10-18 18:10:49下载
- 积分:1
-
dlib_face_recognition_resnet_model_v1.dat
人脸识别中需要的resnet网络模型,用于处理人脸数据(RESNET network model for face recognition, which is used to process face data)
- 2021-03-31 20:59:08下载
- 积分:1
-
w5_bayesianRegression
machine learning 方面有关于Bayesian Regression的资料,语言是python(There are aspects of machine learning Bayesian Regression information about language is python)
- 2013-12-07 23:19:27下载
- 积分:1
-
svm解析验证码
SVM做的验证码识别,准确率85%# -*- coding: utf-8 -*
__author__ = "eple"
from svmutil import *
from PIL import Image
from numpy import *
import os
import string
def getFeatures(path):
features = []
im = array(Image.open(path).convert("L"))
h,w = shape(im)
for i in xrange(0,h):
for j in xrange(0,w):
im[i][j] = 0 if im[i][j] < 128 else 1
for i in xrange(1,h-1):
for j in xrange(1,w-1):
if im[i][j] != 0 and im[i-1][j]==0 and im[i][j-1]==0 and im[i][j+1]==0 and im[i+1][j]==0:
im[i][j] = 0
for rang in [xrange(2,8), xrange(12,18), xrange(22,28), xrange(32,38)]:
temp = []
for i in rang:
for j in xrange(0,10):
temp.append(im[j][i])
features.append(temp)
return features
- 2022-04-14 17:07:19下载
- 积分:1
-
sort_0.7
说明: Sorting m3u files, for iptv
- 2019-05-13 16:25:45下载
- 积分:1