distance.py 文件源码

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

项目:nimo 作者: wolfram2012 项目源码 文件源码
def boolToUbyte(x):
    "Convert a boolean vector to a ubyte vector which is much more space efficient."
    assert isinstance(x,np.ndarray)
    assert x.dtype in [np.bool]
    assert len(x.shape) == 1
    assert x.shape[0] % 8 == 0

    out =   1*x[7::8] + \
            2*x[6::8] + \
            4*x[5::8] + \
            8*x[4::8] + \
           16*x[3::8] + \
           32*x[2::8] + \
           64*x[1::8] + \
          128*x[0::8]

    out = out.astype(np.ubyte)
    return out
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号