overlap_add
overlap_add(
self ,
tiles: ndarray ,
taper: ndarray ,
)-> ‘np.ndarray’
Return the array the tapered tiles sum to, cropped to the array’s shape.
Parameters
| Parameter | Description |
|---|---|
| tiles |
A stack as extract returns, [n_tiles, *size].
|
| taper |
The weights each tile is multiplied by, of the tile’s shape; seedascore.utils.signal.get_taper.
|