Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
21_22-J-02
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
21_22-J-02
21_22-J-02
Commits
b3431ded
Commit
b3431ded
authored
Apr 19, 2022
by
NaweenTharuka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Hand gestures view navigated
parent
d4d3a2cc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
Presently/presently/users/__pycache__/urls.cpython-39.pyc
Presently/presently/users/__pycache__/urls.cpython-39.pyc
+0
-0
Presently/presently/users/__pycache__/views.cpython-39.pyc
Presently/presently/users/__pycache__/views.cpython-39.pyc
+0
-0
Presently/presently/users/urls.py
Presently/presently/users/urls.py
+1
-0
Presently/presently/users/views.py
Presently/presently/users/views.py
+6
-1
No files found.
Presently/presently/users/__pycache__/urls.cpython-39.pyc
View file @
b3431ded
No preview for this file type
Presently/presently/users/__pycache__/views.cpython-39.pyc
View file @
b3431ded
No preview for this file type
Presently/presently/users/urls.py
View file @
b3431ded
...
@@ -16,6 +16,7 @@ urlpatterns = [
...
@@ -16,6 +16,7 @@ urlpatterns = [
path
(
'feedback/emotion/audio'
,
views
.
emotionaudio
,
name
=
'emotionaudio'
),
path
(
'feedback/emotion/audio'
,
views
.
emotionaudio
,
name
=
'emotionaudio'
),
path
(
'feedback/emotion/audio/warnings'
,
views
.
warningemotionsaudio
,
name
=
'warningemotionaudio'
),
path
(
'feedback/emotion/audio/warnings'
,
views
.
warningemotionsaudio
,
name
=
'warningemotionaudio'
),
path
(
'feedback/emotion/video'
,
views
.
emotionvideo
,
name
=
'emotionvideo'
),
path
(
'feedback/emotion/video'
,
views
.
emotionvideo
,
name
=
'emotionvideo'
),
path
(
'feedback/emotion/video/hand-gestures'
,
views
.
handgestures
,
name
=
'handgestures'
),
path
(
'feedback/emotion/audio/prosody'
,
views
.
emotionaudioprosody
,
name
=
'emotionaudioprosody'
),
path
(
'feedback/emotion/audio/prosody'
,
views
.
emotionaudioprosody
,
name
=
'emotionaudioprosody'
),
path
(
'login/'
,
auth_view
.
LoginView
.
as_view
(
template_name
=
'users/login.html'
),
name
=
"login"
),
path
(
'login/'
,
auth_view
.
LoginView
.
as_view
(
template_name
=
'users/login.html'
),
name
=
"login"
),
path
(
'logout/'
,
auth_view
.
LogoutView
.
as_view
(
template_name
=
'users/logout.html'
),
name
=
"logout"
),
path
(
'logout/'
,
auth_view
.
LogoutView
.
as_view
(
template_name
=
'users/logout.html'
),
name
=
"logout"
),
...
...
Presently/presently/users/views.py
View file @
b3431ded
...
@@ -64,7 +64,12 @@ def feedback(request):
...
@@ -64,7 +64,12 @@ def feedback(request):
def
emotionaudio
(
request
):
def
emotionaudio
(
request
):
all_video
=
Video
.
objects
.
all
()
all_video
=
Video
.
objects
.
all
()
return
render
(
request
,
'users/emotionaudio.html'
,{
"all"
:
all_video
})
return
render
(
request
,
'users/emotionaudio.html'
,{
"all"
:
all_video
})
def
handgestures
(
request
):
all_video
=
Video
.
objects
.
all
()
return
render
(
request
,
'users/handgestures.html'
,{
"all"
:
all_video
})
def
emotionvideo
(
request
):
def
emotionvideo
(
request
):
emotion
=
emotiondetectionvideo
.
emo
emotion
=
emotiondetectionvideo
.
emo
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment