HunyuanVideo / hyvideo /utils /data_utils.py
Fabrice-TIERCELIN's picture
Upload 5 files
1b84443 verified
raw
history blame contribute delete
336 Bytes
import numpy as np
import math
def align_to(value, alignment):
"""align hight, width according to alignment
Args:
value (int): height or width
alignment (int): target alignment factor
Returns:
int: the aligned value
"""
return int(math.ceil(value / alignment) * alignment)