Skip to content

Commit f174419

Browse files
committed
ruff
1 parent bc7b178 commit f174419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nerfstudio/data/utils/data_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def get_depth_image_from_path(
116116
else:
117117
image = cv2.imread(str(filepath.absolute()), cv2.IMREAD_ANYDEPTH)
118118
image = image.astype(np.float32) * scale_factor
119-
image = cv2.resize(image, (width, height), interpolation=interpolation) # type: ignore
119+
image = cv2.resize(image, (width, height), interpolation=interpolation) # type: ignore
120120
return torch.from_numpy(image[:, :, np.newaxis])
121121

122122

0 commit comments

Comments
 (0)