mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +02:00
[reconstruction] don't store intrinsics-building thread internally
This commit is contained in:
parent
9f2dbc9639
commit
dca6d6f2f2
1 changed files with 1 additions and 2 deletions
|
@ -148,7 +148,6 @@ class Reconstruction(UIGraph):
|
||||||
|
|
||||||
def __init__(self, graphFilepath='', parent=None):
|
def __init__(self, graphFilepath='', parent=None):
|
||||||
super(Reconstruction, self).__init__(graphFilepath, parent)
|
super(Reconstruction, self).__init__(graphFilepath, parent)
|
||||||
self._buildIntrinsicsThread = None
|
|
||||||
self._buildingIntrinsics = False
|
self._buildingIntrinsics = False
|
||||||
self._cameraInit = None
|
self._cameraInit = None
|
||||||
self._cameraInits = QObjectListModel(parent=self)
|
self._cameraInits = QObjectListModel(parent=self)
|
||||||
|
@ -332,7 +331,7 @@ class Reconstruction(UIGraph):
|
||||||
def importImages(self, images, cameraInit):
|
def importImages(self, images, cameraInit):
|
||||||
""" Add the given list of images to the Reconstruction. """
|
""" Add the given list of images to the Reconstruction. """
|
||||||
# Start the process of updating views and intrinsics
|
# Start the process of updating views and intrinsics
|
||||||
self._buildIntrinsicsThread = self.runAsync(self.buildIntrinsics, args=(cameraInit, images,))
|
self.runAsync(self.buildIntrinsics, args=(cameraInit, images,))
|
||||||
|
|
||||||
def buildIntrinsics(self, cameraInit, additionalViews):
|
def buildIntrinsics(self, cameraInit, additionalViews):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue