亚马逊验证码识别

该博客演示了如何使用Python的easyocr库来识别亚马逊网站上的验证码。首先,通过urllib下载验证码图片,然后利用opencv处理图像,最后通过easyocr读取文字。整个过程展示了验证码识别的基本步骤。
摘要由CSDN通过智能技术生成
一.通过ocr识别亚马逊验证码

在这里插入图片描述

# -*- coding: utf-8 -*-
# @Time    : 2021/10/8 8:38
# @Author  :
import numpy as np
from urllib.request import urlopen

import cv2
import easyocr
# from torchvision import transforms
# trans = transforms.ToTensor()


# opencv链接转图片
def url_to_image(url):
    # download the image, convert it to a NumPy array, and then read
    # it into OpenCV format
    resp = urlopen(url)
    # bytearray将数据转换成(返回)一个新的字节数组
    # asarray 复制数据,将结构化数据转换成ndarray
    image = np.asarray(bytearray(resp.read()), dtype="uint8")
    # cv2.imdecode()函数将数据解码成Opencv图像格式
    image = cv2.imdecode(image, cv2.IMREAD_COLOR)
    # return the image
    return image


# initialize the list of image URLs to download
# amazon captcha img url
# https://www.amazon.com/errors/validateCaptcha
urls = [
    "https://images-na.ssl-images-amazon.com/captcha/ddwwidnf/Captcha_hkpyvxpepn.jpg",
]

# loop over the image URLs
for url in urls:
    # download the image URL and display it
    print("downloading %s" % (url))
    img = url_to_image(url)
    reader = easyocr.Reader(['ch_sim', 'en'])
    print("亚马逊验证码结果:", reader.readtext(img))
    cv2.imshow("img", img)
    # res = cv2.resize(img, (192, 64))
    # image  = trans(res)
    # cv2.imshow('new_img', res)
    cv2.waitKey(0)
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Cocktail_py

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值