-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor!:adopt PHAL plugin https://github.com/OpenVoiceOS/ovos-PHAL-plugin-camera * refactor!:adopt PHAL plugin https://github.com/OpenVoiceOS/ovos-PHAL-plugin-camera * session support * dont expand home dir , let phal do it so it works in satellites * better session handling * warm up time * fixdialogs * dont open camera * fix gui path * fix
- Loading branch information
Showing
10 changed files
with
92 additions
and
170 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
I couldn't access the camera. | ||
I can't access the camera. | ||
I couldn't detect a camera. | ||
It seems there is no camera available. | ||
I couldn't find a working camera. |
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,3 @@ | ||
Yes, a camera is available. | ||
My camera is ready to use. | ||
The camera is functioning correctly. |
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,6 @@ | ||
do you have a camera | ||
can you access the camera | ||
is a camera available | ||
is the camera working | ||
can I use the camera | ||
is there a camera |
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 |
---|---|---|
@@ -1,4 +1 @@ | ||
imutils | ||
ovos_workshop>=0.0.12 | ||
opencv-python | ||
picamera2; sys_platform == 'linux' and platform_machine == 'armv7l' or platform_machine == 'aarch64' |
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 |
---|---|---|
@@ -1,10 +1,17 @@ | ||
{ | ||
"camera_error.dialog": [ | ||
"I couldn't access the camera." | ||
"I can't access the camera." | ||
], | ||
"camera_yes.dialog": [ | ||
"My camera is ready to use.", | ||
"The camera is functioning correctly.", | ||
"Yes, a camera is available." | ||
], | ||
"get_ready.dialog": [ | ||
"say cheese" | ||
], | ||
"get_ready.dialog": ["say cheese"], | ||
"picture.dialog": [ | ||
"picture taken", | ||
"i like taking pictures" | ||
"i like taking pictures", | ||
"picture taken" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,6 +1,14 @@ | ||
{ | ||
"have_camera.intent": [ | ||
"can I use the camera", | ||
"can you access the camera", | ||
"do you have a camera", | ||
"is a camera available", | ||
"is the camera working", | ||
"is there a camera" | ||
], | ||
"take_picture.intent": [ | ||
"take a picture", | ||
"take a photo" | ||
"take a photo", | ||
"take a picture" | ||
] | ||
} |