登录
首页 » python » svm解析验证码

svm解析验证码

于 2022-04-14 发布 文件大小:1.18 MB
0 66
下载积分: 2 下载次数: 1

代码说明:

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

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • MODE-master
    说明:  差分进化算法python实现 比较简单啊啊啊啊啊啊(Differential evolution algorithm)
    2020-05-16 20:29:10下载
    积分:1
  • Ballsearch
    说明:  NAO机器人识别红球并走向红球位置,参数可调(NAO Robot will detect the red ball, if NAO can't find ball, it will select other camera(bottom or top camera) to search. After the red ball is detected, robot will walk to the ball.)
    2021-01-02 16:58:57下载
    积分:1
  • python 学生信息管理系统源码
    本程序使用python编码,绝对原创,打开后先运行login.py,接着输入账号密码(admin,admin)就可以进入系统。程序虽小,然而功能足够,包括信息修改,添加,删除,更新等。
    2022-07-10 21:35:48下载
    积分:1
  • Python网络编程基础
    说明:  Python编程基础,包括客户端、服务器、域名系统、高级网络编程等知识。(This is a document that concludes Python Program for basic knowledge.)
    2020-06-23 05:40:02下载
    积分:1
  • 百度人脸识别
    百度人脸识别,能识别出两张图片中的人脸的相似度,辨别出是不是同个人。(Baidu face recognition, can recognize the similarity of faces in two pictures, to distinguish whether it is the same person.)
    2020-06-25 01:20:02下载
    积分:1
  • holt_winters
    holt-winters 三次指数平滑算法,时间序列预测算法,带测试数据及Demo(Triple Order Exponential Smoothing, Holt-Winters algorithm, time series prediction algorithm with test data and Demo)
    2016-10-10 18:57:02下载
    积分:1
  • CNN
    说明:  python 经典CNN模型。包括VGG resnet等(python classic cnn deep learning)
    2020-10-11 17:49:19下载
    积分:1
  • 基于蚁群的分类算法
    用蚁群算法解决分类问题,但目前我的这段代码只能处理离散的属性。连续性的属性可以先自己进行离散化。当初偷懒了,没有把写离散化的代码。这段代码的水平很低,各位忍忍吧,请原谅一个python新手。
    2022-03-04 23:23:51下载
    积分:1
  • UpData
    说明:  用通达信接气接口来保存A股历史数据到Mysql数据库(using python Tdx to mysql)
    2020-06-15 22:45:01下载
    积分:1
  • Evaluate_Score
    说明:  利用已经使用的分数文本判断文本的分数等级。(The score level of the text is judged using the score text that has been used.)
    2020-06-17 17:20:02下载
    积分:1
  • 696518资源总数
  • 104305会员总数
  • 11今日下载