image_manipulation.py 文件源码

python
阅读 21 收藏 0 点赞 0 评论 0

项目:pyglitch 作者: giofusco 项目源码 文件源码
def rescale_image(X):
    """rescales the RGB values back to 0-255 in the image (useful after especially applying audio filters)"""
    I = X.copy()
    if (I.min() < 0 or I.max() > 255):
        I = (I - I.min()) * (255 / (I.max() - I.min()))
        I = I.round()
    return I.astype(np.uint8)


# TODO: speed up with jit?
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号