简体   繁体   English

如何从图像中随机裁剪(比面积和比概率)矩形

[英]How To Random Crop (Specific Area And Specific Probability) Rectangle From Image

This is my now code (it could crop image to 25 piece jpg from one image)这是我现在的代码(它可以将图像从一张图像裁剪为 25 张 jpg)

# -*- coding:utf-8 -*-
from PIL import Image

def cut(id,vx,vy):
    # 打開圖片(open image)
    name1 = "C:\\Users\\admin\\Desktop\\normal_random_crop\\test.png"
    name2 = "C:\\Users\\admin\\Desktop\\normal_random_crop\\test_" + id + "_crop.jpg"
    im =Image.open(name1)
    #偏移量(offset)
    dx = 100
    dy = 100
    n = 1
    #左上角切割(Left Top Poit)
    x1 = 0
    y1 = 0
    x2 = vx
    y2 = vy
    #縱向(Vertical)
    while x2 <= 512:
        #橫向切(Horizontal)
        while y2 <= 512:
            name3 = name2 + str(n) + ".jpg"
            im2 = im.crop((y1, x1, y2, x2))
            im2.save(name3)
            y1 = y1 + dy
            y2 = y1 + vy
            n = n + 1
        x1 = x1 + dx
        x2 = x1 + vx
        y1 = 0
        y2 = vy
    return n-1

if __name__=="__main__":
    id = "1"
    #切割圖片的面積 vx,vy (Crop Area)
    res = cut(id,100,100)
    print(res)

i hope to make generate amount random crop and specific every area specific probability for example : random crop 100 piece (from 512x512 image) total 104%我希望生成数量随机裁剪和特定每个区域的特定概率,例如:随机裁剪 100 块(来自 512x512 图像)总计 104%

( (

=====1%+2%+1%===== ======1%+2%+1%====

1%+10%+10%+10%+1%+ 1%+10%+10%+10%+1%+

1%+10%+10%+10%+1%+ 1%+10%+10%+10%+1%+

1%+10%+10%+10%+1%+ 1%+10%+10%+10%+1%+

=====1%+2%+1%===== ======1%+2%+1%====

) )

yellow area delete(don't need)黄色区域删除(不需要)

在此处输入图片说明

First of all, the total probability can't be more than 100% (in least in this universe).首先,总概率不能超过100%(至少在这个宇宙中)。 Assuming it is 100%, you can represent the image as 1-dimensional array and then do a weighted random choice.假设它是 100%,您可以将图像表示为一维数组,然后进行加权随机选择。

So if you target 25 pieces, 5x5, with probabilities of所以如果你的目标是 25 件,5x5,概率为

0 1  2  1  0
1 9  10 9  1
1 10 10 10 1
1 9  10 9  1
0 1  2  1  0

then it becomes a simple list of probabilities:那么它就变成了一个简单的概率列表:

[0, 1,  2,  1,  0, 1, 9,  10, 9, ... # 25 elements total]

Then you can make a weighted random choice, choose you way, for example, from here: A weighted version of random.choice然后你可以做一个加权随机选择,选择你的方式,例如,从这里: random.choice的加权版本

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM