Reconstructs a signal from a framed representation.
View aliases
Compat aliases for migration
See Migration guide for more details.
tf.signal.overlap_and_add(
signal, frame_step, name=None
)
Adds potentially overlapping frames of a signal with shape
[..., frames, frame_length]
, offsetting subsequent frames by frame_step
.
The resulting tensor has shape [..., output_size]
where
output_size = (frames - 1) * frame_step + frame_length
Returns | |
---|---|
A Tensor with shape [. containing the overlap-added
frames of signal 's inner-most two dimensions.
|