# captchaidentify **Repository Path**: usernameisregistered/captchaidentify ## Basic Information - **Project Name**: captchaidentify - **Description**: 这是一个识别验证码的相关代码 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-06-01 - **Last Updated**: 2024-06-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 说明 ## 配置 文件**config.json** ```js { "imageSource": "验证码的路径", "train": "训练集的比例,类型数字", "validation": "验证集的比例,类型数字", "test":"测试集的比例,类型数字" } ``` ## 文件目录 **graying**:彩色图像灰度化 + maxValue 最大值法 + meanVlue 平均值法 + weightedMeanValue 加权平均值法 **binarization** 图像二值化 + peakmean 获取直方图的2个波峰的平均值 + otsu 最大间方差法 + pTile p-分位法 **denoise**:图像降噪声 + mean 均值滤波 + median 中值滤波 **substr** 字符提取 + mean 平均切分 *备注 暂时没有找到合适的node用来处理图片的库,使用node-canvas处理图片*