-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #556 from mprib/554-post-processing-widget-interfa…
…ces-with-controller 554 post processing widget interfaces with controller
- Loading branch information
Showing
15 changed files
with
345 additions
and
429 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from PySide6.QtWidgets import QApplication | ||
import sys | ||
from pathlib import Path | ||
from pyxy3d.controller import Controller | ||
from pyxy3d.gui.post_processing_widget import PostProcessingWidget | ||
from pyxy3d.gui.vizualize.calibration.capture_volume_widget import CaptureVolumeWidget | ||
|
||
app = QApplication(sys.argv) | ||
workspace_dir = Path(r"C:\Users\Mac Prible\OneDrive\pyxy3d\4_cam_prerecorded_practice_working") | ||
controller = Controller(workspace_dir) | ||
# controller.load_camera_array() | ||
controller.load_estimated_capture_volume() | ||
window = CaptureVolumeWidget(controller) | ||
|
||
|
||
window.show() | ||
|
||
app.exec() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from PySide6.QtWidgets import QApplication | ||
import sys | ||
from pathlib import Path | ||
from pyxy3d.controller import Controller | ||
from pyxy3d.gui.post_processing_widget import PostProcessingWidget | ||
|
||
app = QApplication(sys.argv) | ||
workspace_dir = Path(r"C:\Users\Mac Prible\OneDrive\pyxy3d\4_cam_prerecorded_practice_working") | ||
controller = Controller(workspace_dir) | ||
controller.load_camera_array() | ||
window = PostProcessingWidget(controller) | ||
|
||
|
||
window.show() | ||
|
||
app.exec() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.