-
coremail
coremail邮件系统企业通讯录导出脚本(Coremail Mail System Enterprise Address Book Export Script)
- 2020-06-18 10:00:01下载
- 积分: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
-
surfaces_cells
ABAQUS中提取几何体、提取几何体表面的参数化建模程序块(In ABAQUS, the geometric body is extracted and the parameterized modeling program block is extracted)
- 2021-02-19 20:29:44下载
- 积分:1
-
few-shot-gnn-master
说明: 通过few_shot少量监督信息来训练图神经网络,达到分类的效果(Training Graph Neural Network for Classification)
- 2020-06-16 01:00:01下载
- 积分:1
-
dxf2gcode_b02_source
说明: dxf文件直接转换g编码的源代码,python编写(convert dxf to g code , source code)
- 2011-04-08 15:06:10下载
- 积分:1
-
CNN可视化
利用pytorch深度框架,实现CNN 可视化, 包括filter, layer , 梯度等可视化。 具有详细的数据和实现例程,可以更好地明白CNN的实现机理
- 2022-03-11 15:10:56下载
- 积分:1
-
Python 获取精确IP位址
Python 获取通过IP获得用户改IP对应的精确位置。精确到小区
- 2023-04-09 02:30:03下载
- 积分:1
-
窗口摄像(视频)
说明: 使用python读取摄像头视频,并将信息显示到TK窗口,在窗口可编辑性上有很大的提高(Use python to read the camera video and display the information to the TK window, which greatly improves the editability of the window)
- 2020-04-12 14:31:48下载
- 积分:1
-
time-series-forecasting-keras-master
基于ARIMA模型和LSTM模型,提出一种高性能得时间序列预测算法(Based on ARIMA model and LSTM model, a high performance time series prediction algorithm is proposed.)
- 2020-10-20 09:17:25下载
- 积分:1
-
PIL图片拼接
使用pil库将某个文件夹下所有bmp图片拼成长图,挺实用的一个图片批处理代码
- 2022-02-14 04:37:52下载
- 积分:1