mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-30 02:37:26 +02:00
11 lines
254 B
Python
11 lines
254 B
Python
import signal
|
|
import sys
|
|
import meshroom
|
|
from meshroom.common import Backend
|
|
|
|
meshroom.setupEnvironment(backend=Backend.PYSIDE)
|
|
|
|
signal.signal(signal.SIGINT, signal.SIG_DFL)
|
|
from meshroom.ui.app import MeshroomApp
|
|
app = MeshroomApp(sys.argv)
|
|
app.exec_()
|