l see albedo gt from
albedo_path = os.path.join(pre_path, "albedo", image_basename)
# 2. 检查文件是否存在
if os.path.exists(albedo_path):
# 3. 从磁盘加载图像
albedo = Image.open(albedo_path)
albedo = np.array(albedo, dtype=np.float32) / 255.0
how to preprocess my own datasets to get this alebdo file like the code you give above ,
thank you
l see albedo gt from
albedo_path = os.path.join(pre_path, "albedo", image_basename)
how to preprocess my own datasets to get this alebdo file like the code you give above ,
thank you