mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 01:46:31 +02:00
31 lines
847 B
Python
31 lines
847 B
Python
import os
|
|
import sys
|
|
|
|
from PySide2.QtGui import QGuiApplication
|
|
from PySide2.QtQml import QQmlApplicationEngine
|
|
|
|
from meshroom.ui.reconstruction import Reconstruction
|
|
from meshroom.ui.utils import QmlInstantEngine
|
|
|
|
from meshroom.ui import components
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = QGuiApplication(sys.argv)
|
|
|
|
qmlDir = os.path.join(os.path.dirname(__file__), "qml")
|
|
url = os.path.join(qmlDir, "main.qml")
|
|
engine = QmlInstantEngine()
|
|
engine.addFilesFromDirectory(qmlDir)
|
|
engine.setWatching(os.environ.get("MESHROOM_INSTANT_CODING", False))
|
|
components.registerTypes()
|
|
|
|
r = Reconstruction()
|
|
engine.rootContext().setContextProperty("_reconstruction", r)
|
|
|
|
# Request any potential computation to stop on exit
|
|
app.aboutToQuit.connect(r.stopExecution)
|
|
|
|
engine.load(os.path.normpath(url))
|
|
app.exec_()
|
|
|