我正在尝试解决一个问题,其中我有一个大小=宽度*高度的区域,然后必须在该区域内的位置x,y处找到一个子区域,其大小为width_1 * height_1。
值是:
Region_width = 71680
Region_height = 39680
Sub_location_x=272
Sub_location_y=130
Sub_width=372
Sub_height=519
我正在尝试实现的代码应该是这样的。
#Width height of box
region_width = 71680
region_height = 39680
x = 272
y = 130
sub_width = 372
sub_height = 519
#Create numpy array of width and height (This I am unsure of)
Region_array = np.array(width, height)
#Pull out sub box (This I am also unsure of)
Sub_box = Region_array[x: x + sub_width, y: y + sub_height]
真的很感谢我对解决问题的任何帮助或见解。