Skip to content

Commit 688ea1a

Browse files
authored
Merge pull request #219 from saeugetier/develop
Release 0.7.2
2 parents cf0e1d6 + 226f73a commit 688ea1a

3 files changed

Lines changed: 16 additions & 4 deletions

File tree

docs/index.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ Photo capture is currently only supported via V4L2 camera. In prior version of t
66

77
The application is distributed via Flathub. But interested people can compile the software by themselves. Steps are documented. The photobooth application used a [Yocto Linux deployment](https://github.com/saeugetier/poky-photobooth/) in the past. This deployment is deprecated now, because the distribution via flatpak is more convinient.
88

9+
## Basic Instructions
10+
* Type of collage can be selected in the main menu.
11+
* Settings menu can be opened in the main menu page via gears symbol. Passwors is "0815" if enabled
12+
* During snapshot (after selecting a collage type) a live preview is shown. The shutter button will trigger a count down. AI background removal can be enabled via Snapshot Settings
13+
* A preview of the taken photo is displayed after snapshot. The photo can be confirmed or discarded. Effects can be applied to the photo via wizard menu.
14+
* A preview of the collage is displayed as the next step.
15+
* next photo is taken afterwards
16+
* when all photos are taken, the collage can be printed out
17+
* Previous photos and collages can be printed again via the Gallery.
18+
919
## Video
1020

1121
[![](https://markdown-videos-api.jorgenkh.no/youtube/fB2aQGPT-wg?width=640&height=360)](https://youtu.be/fB2aQGPT-wg)
@@ -15,12 +25,12 @@ The application is distributed via Flathub. But interested people can compile th
1525
## Software
1626
Framework: Qt 6.5 or higher - [https://qt.io](https://qt.io)
1727

18-
Neural network execution for background removal is done via onnxruntime.
28+
Background removal neural network execution is handled using either ONNX Runtime or NCNN. Depending on the target hardware architecture, one of these runtime engines may provide better performance.
1929

2030
## Tested Hardware
2131
Camera: USB Webcam
2232

23-
Printer: Canon Selphy Photo Printer
33+
Printer: Canon Selphy Photo Printer or a generic printer (via CUPS)
2434

2535
LED Driver: https://www.aliexpress.com/item/14-37-Inch-LED-LCD-Universal-TV-Backlight-Constant-Current-Board-Driver-Boost-Structure-Step-Up/32834942970.html
2636

io.github.saeugetier.photobooth.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
"--share=network",
1010
"--device=all",
1111
"--filesystem=home",
12-
"--filesystem=host:removable",
12+
"--filesystem=/media",
13+
"--filesystem=/run/media",
14+
"--filesystem=/mnt",
1315
"--socket=fallback-x11",
1416
"--socket=wayland"
1517
],

qml/Application.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ ApplicationWindow {
179179
property bool disableEffectPopup: false
180180
property string cameraName: ""
181181
property bool printFromGallery: true
182-
property bool enableSettingsPassword: true
182+
property bool enableSettingsPassword: false
183183
property int cameraOrientation: 0
184184
property string neuralNetworkRuntime: "ONNX"
185185

0 commit comments

Comments
 (0)