首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >python -剪切手写数字的图像

python -剪切手写数字的图像
EN

Stack Overflow用户
提问于 2017-09-06 04:53:37
回答 1查看 1.6K关注 0票数 3

我试图使用MNIST作为dataset & python来预测手写数字。现在,我必须给已经裁剪的图像作为程序的输入。进一步处理,使其成为MNIST数据集格式是使用以下功能,但如何自动裁剪一个随机图像作为输入?

代码语言:javascript
复制
def imageprepare(argv):
    """
    This function returns the pixel values.
    The imput is a png file location.
    """
    im = Image.open(argv).convert('L')
    width = float(im.size[0])
    height = float(im.size[1])
    newImage = Image.new('L', (28, 28), (255)) #creates white canvas of 28x28 pixels

    if width > height: #check which dimension is bigger
        #Width is bigger. Width becomes 20 pixels.
        nheight = int(round((20.0/width*height),0)) #resize height according to ratio width
        if (nheigth == 0): #rare case but minimum is 1 pixel
            nheigth = 1  
        # resize and sharpen
        img = im.resize((20,nheight), Image.ANTIALIAS).filter(ImageFilter.SHARPEN)
        wtop = int(round(((28 - nheight)/2),0)) #caculate horizontal pozition
        newImage.paste(img, (4, wtop)) #paste resized image on white canvas
    else:
        #Height is bigger. Heigth becomes 20 pixels. 
        nwidth = int(round((20.0/height*width),0)) #resize width according to ratio height
        if (nwidth == 0): #rare case but minimum is 1 pixel
            nwidth = 1
         # resize and sharpen
        img = im.resize((nwidth,20), Image.ANTIALIAS).filter(ImageFilter.SHARPEN)
        wleft = int(round(((28 - nwidth)/2),0)) #caculate vertical pozition
        newImage.paste(img, (wleft, 4)) #paste resized image on white canvas

    #newImage.save("sample.png")

    tv = list(newImage.getdata()) #get pixel values

    #normalize pixels to 0 and 1. 0 is pure white, 1 is pure black.
    tva = [ (255-x)*1.0/255.0 for x in tv] 
    return tva
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2017-09-06 05:05:29

您可以使用OpenCV轮廓来定位实际图像中的潜在数字,其中一些技术将取决于您正在处理的实际数据。在http://www.pyimagesearch.com/2017/02/13/recognizing-digits-with-opencv-and-python/有一个数字候选位置的例子,它可以给你一些指针。

但是,您可能会遇到一些脚本的问题,因为我认为在所有欧洲脚本中,每个数字都应该是连续的和不同的,但我不确定这两个点是否适用于所有脚本。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/46067016

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档