13 lines
390 B
Python
13 lines
390 B
Python
import numpy as np
|
|
|
|
|
|
def copy_array_offset(src: np.array, dst: np.array, offset: tuple[int, int]) -> None:
|
|
"""
|
|
Copy a numpy array into another one with an offset
|
|
:source: source array
|
|
:dst: destination array
|
|
:offset: the offset where to copy the array
|
|
"""
|
|
row, column = offset
|
|
width, height = src.shape
|
|
dst[row:row + width, column:column + height] = src
|