新手小白,求教‘Cell‘ object has no attribute ‘image解决方案

import openpyxl
from PIL import Image, ImageOps
import io
import pytesseract


# 加载Excel工作簿和工作表
workbook = openpyxl.load_workbook('D:\QQQQQ\\12.xlsx')
sheet = workbook.active

# 假设图片在A1单元格
cell_with_image = sheet['C3']

if cell_with_image.image:
    # 提取图片数据
    img_data = cell_with_image.image.content

    # 将图片数据转换为字节流
    img_stream = io.BytesIO(img_data)

    # 使用Pillow(PIL)加载图像
    image = Image.open(img_stream)

    # 转换为灰度图
    gray_image = image.convert('L')

    # 可选的二值化处理
    _, binary_image = ImageOps.invert(gray_image).convert('1').point(lambda x: 0 if x < 128 else 255, '1')

    # 使用Tesseract进行OCR
    text = pytesseract.image_to_string(binary_image, lang='eng', config='--psm 6')

    # 提取数字
    numbers = ''.join(filter(str.isdigit, text))

    # 将识别的数字转换为整数列表
    num_list = [int(num) for num in numbers]

    # 计算数字的和
    sum_of_numbers = sum(num_list)

    print("从图片中识别的数字是:", numbers)
    print("数字之和:", sum_of_numbers)
else:
    print("A1单元格中未找到图片。")
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值