zoukankan      html  css  js  c++  java
  • python PIL图像处理-框选

    框选图中位置

    代码

    from PIL import Image,ImageDraw,ImageFont,ImageFilter
    import random
    
    #-------------------------------------
    #filepath,[837,103][942,208]
    
    #图片处理,框选
    def pic_rectangle(filepath,bound):
        image = Image.open(filepath)
        draw = ImageDraw.Draw(image)
        # 坐标
        x1, y1 =bound[0]
        x2, y2 =bound[1]
        # outline 外线,fill填充
        draw.rectangle((x1, y1, x2, y2), outline="red", width=5)
        image.save('filepath', 'jpeg')
        #image.show()
    
    if  __name__=="__main__":
        #调用
        filepath="./image/name.jpg"
        bound=[[744, 276],[1014, 366]]
        pic_rectangle(filepath,bound)
  • 相关阅读:
    9.4
    9.3
    9.2
    2016.9.1
    html,body
    prototype
    京东笔试题的一些小细节
    gulp安装过程中的问题。
    json
    双飞翼布局和圣杯布局
  • 原文地址:https://www.cnblogs.com/lisa2016/p/10697271.html
Copyright © 2011-2022 走看看