File size: 464 Bytes
83ae704 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Copyright (C) 2024-present Naver Corporation. All rights reserved.
# Licensed under CC BY-NC-SA 4.0 (non-commercial use only).
#
# --------------------------------------------------------
# utilitary functions for MASt3R
# --------------------------------------------------------
import os
import hashlib
def mkdir_for(f):
os.makedirs(os.path.dirname(f), exist_ok=True)
return f
def hash_md5(s):
return hashlib.md5(s.encode('utf-8')).hexdigest()
|