python随机在一张图像上截取任意大小图片的方法

时间:2022-08-25 10:04:56

如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'''
机器学习中随机产生负样本的
'''
 
import cv2
import random
 
#读取图片
img=cv2.imread('1.png')
 
#h、w为想要截取的图片大小
h=80
w=80
 
count=1
while 1:
    #随机产生x,y  此为像素内范围产生
   y = random.randint(1, 890)
  x = random.randint(1, 1480)
  #随机截图
   cropImg = img[(y):(y + h), (x):(x + w)]
  cv2.imwrite('pic/' + str(count) + '.png', cropImg)
  count+=1
 
  if count==2500:
    break

以上这篇python随机在一张图像上截取任意大小图片的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/Lw_Akeman/article/details/81016673