From e70643a40dd8a6d55cf76a8b1128b89a7cc750b5 Mon Sep 17 00:00:00 2001 From: Gregoire De Lillo Date: Tue, 30 Jan 2018 14:42:37 +0100 Subject: [PATCH] [ui] Allow `.nef` files --- meshroom/ui/reconstruction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/ui/reconstruction.py b/meshroom/ui/reconstruction.py index 6ce1982f..b878a9bf 100755 --- a/meshroom/ui/reconstruction.py +++ b/meshroom/ui/reconstruction.py @@ -149,7 +149,7 @@ class Reconstruction(UIGraph): Specialization of a UIGraph designed to manage a 3D reconstruction. """ - imageExtensions = ('.jpg', '.jpeg', '.tif', '.tiff', '.png', '.exr', '.rw2', '.cr2') + imageExtensions = ('.jpg', '.jpeg', '.tif', '.tiff', '.png', '.exr', '.rw2', '.cr2', '.nef') def __init__(self, graphFilepath='', parent=None): super(Reconstruction, self).__init__(graphFilepath, parent)