用法:
skimage.data.file_hash(fname, alg='sha256')
计算给定文件的哈希值。
用于检查文件是否已更改或损坏。
- fname:str
文件的名称。
- alg:str
哈希算法的类型
- hash:str
文件的哈希。
参数:
返回:
例子:
>>> fname = "test-file-for-hash.txt" >>> with open(fname, "w") as f: ... __ = f.write("content of the file") >>> print(file_hash(fname)) 0fc74468e6a9a829f103d069aeb2bb4f8646bad58bf146bb0e3379b759ec4a00 >>> import os >>> os.remove(fname)
相关用法
- Python skimage.data.binary_blobs用法及代码示例
- Python skimage.draw.random_shapes用法及代码示例
- Python skimage.draw.polygon2mask用法及代码示例
- Python skimage.draw.ellipse_perimeter用法及代码示例
- Python skimage.draw.bezier_curve用法及代码示例
- Python skimage.draw.line用法及代码示例
- Python skimage.draw.set_color用法及代码示例
- Python skimage.draw.circle_perimeter用法及代码示例
- Python skimage.draw.polygon用法及代码示例
- Python skimage.draw.rectangle_perimeter用法及代码示例
- Python skimage.draw.ellipse用法及代码示例
- Python skimage.draw.polygon_perimeter用法及代码示例
- Python skimage.draw.circle_perimeter_aa用法及代码示例
- Python skimage.draw.line_nd用法及代码示例
- Python skimage.draw.disk用法及代码示例
- Python skimage.draw.rectangle用法及代码示例
- Python skimage.draw.line_aa用法及代码示例
- Python skimage.feature.graycomatrix用法及代码示例
- Python skimage.color.lab2lch用法及代码示例
- Python skimage.feature.blob_doh用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.data.file_hash。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。