Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2023-029
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
2023-029
2023-029
Commits
5b73813b
Commit
5b73813b
authored
Sep 06, 2023
by
janithgamage1.ed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: update
parent
654456a2
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
6 additions
and
48 deletions
+6
-48
Project/Frontend/SignConnectPlus/src/pages/emotion-detection/emotion-audio-detection/list/list.tsx
...s/emotion-detection/emotion-audio-detection/list/list.tsx
+1
-1
Project/Frontend/SignConnectPlus/src/pages/emotion-detection/emotion-video-detection/list/list.tsx
...s/emotion-detection/emotion-video-detection/list/list.tsx
+1
-1
Project/Frontend/SignConnectPlus/src/pages/services/AudioEmotionDetection.js
...gnConnectPlus/src/pages/services/AudioEmotionDetection.js
+0
-13
Project/Frontend/SignConnectPlus/src/pages/services/SignLanguageToText.js
.../SignConnectPlus/src/pages/services/SignLanguageToText.js
+0
-12
Project/Frontend/SignConnectPlus/src/pages/services/VideoEmotionDetection.js
...gnConnectPlus/src/pages/services/VideoEmotionDetection.js
+0
-13
Project/Frontend/SignConnectPlus/src/services/AudioEmotionDetection.js
...end/SignConnectPlus/src/services/AudioEmotionDetection.js
+1
-2
Project/Frontend/SignConnectPlus/src/services/VideoEmotionDetection.js
...end/SignConnectPlus/src/services/VideoEmotionDetection.js
+1
-2
Project/Frontend/SignConnectPlus/src/services/VideoToSignLanguage.js
...ntend/SignConnectPlus/src/services/VideoToSignLanguage.js
+2
-4
No files found.
Project/Frontend/SignConnectPlus/src/pages/emotion-detection/emotion-audio-detection/list/list.tsx
View file @
5b73813b
...
...
@@ -13,7 +13,7 @@ import construction from 'assets/images/maintenance/under-construction.svg';
import
{
CardContent
,
IconButton
,
InputAdornment
,
Paper
,
TextField
,
Typography
}
from
'
@mui/material
'
;
import
CopyOutlined
from
'
@ant-design/icons/lib/icons/CopyOutlined
'
;
import
AudioEmotionDetectService
from
'
../../../services/AudioEmotionDetection.js
'
;
import
AudioEmotionDetectService
from
'
../../../
../
services/AudioEmotionDetection.js
'
;
import
{
MuiFileInput
}
from
'
mui-file-input
'
;
import
{
useSnackbar
}
from
'
notistack
'
;
...
...
Project/Frontend/SignConnectPlus/src/pages/emotion-detection/emotion-video-detection/list/list.tsx
View file @
5b73813b
...
...
@@ -13,7 +13,7 @@ import construction from 'assets/images/maintenance/under-construction.svg';
import
{
CardContent
,
IconButton
,
InputAdornment
,
Paper
,
TextField
,
Typography
}
from
'
@mui/material
'
;
import
CopyOutlined
from
'
@ant-design/icons/lib/icons/CopyOutlined
'
;
import
VideoEmotionDetectService
from
'
../../../services/VideoEmotionDetection.js
'
;
import
VideoEmotionDetectService
from
'
../../../
../
services/VideoEmotionDetection.js
'
;
import
{
MuiFileInput
}
from
'
mui-file-input
'
;
import
{
useSnackbar
}
from
'
notistack
'
;
...
...
Project/Frontend/SignConnectPlus/src/pages/services/AudioEmotionDetection.js
deleted
100644 → 0
View file @
654456a2
import
axios
from
'
axios
'
;
class
AudioEmotionDetectService
{
predictEmotionAudio
(
data
)
{
return
axios
.
post
(
// @ts-ignore
`http://127.0.0.1:8000/predict_emotion/audio/`
,
data
);
}
}
export
default
new
AudioEmotionDetectService
();
\ No newline at end of file
Project/Frontend/SignConnectPlus/src/pages/services/SignLanguageToText.js
deleted
100644 → 0
View file @
654456a2
import
axios
from
'
axios
'
;
class
SignLanguageToTextService
{
predictSignLanguageVideo
(
speed
,
data
)
{
return
axios
.
post
(
`http://127.0.0.1:8000/predict-sign-language/video/speed_levels?speed=
${
speed
}
`
,
data
);
}
}
export
default
new
SignLanguageToTextService
();
Project/Frontend/SignConnectPlus/src/pages/services/VideoEmotionDetection.js
deleted
100644 → 0
View file @
654456a2
import
axios
from
'
axios
'
;
class
VideoEmotionDetectService
{
predictEmotionVideo
(
data
)
{
return
axios
.
post
(
// @ts-ignore
`http://127.0.0.1:8000/predict_emotion/video/`
,
data
);
}
}
export
default
new
VideoEmotionDetectService
();
\ No newline at end of file
Project/Frontend/SignConnectPlus/src/services/AudioEmotionDetection.js
View file @
5b73813b
...
...
@@ -2,8 +2,7 @@ import axios from 'axios';
class
AudioEmotionDetectService
{
predictEmotionAudio
(
data
)
{
return
axios
.
post
(
// @ts-ignore
return
axios
.
post
(
`http://127.0.0.1:8000/predict_emotion/audio/`
,
data
);
...
...
Project/Frontend/SignConnectPlus/src/services/VideoEmotionDetection.js
View file @
5b73813b
...
...
@@ -2,8 +2,7 @@ import axios from 'axios';
class
VideoEmotionDetectService
{
predictEmotionVideo
(
data
)
{
return
axios
.
post
(
// @ts-ignore
return
axios
.
post
(
`http://127.0.0.1:8000/predict_emotion/video/`
,
data
);
...
...
Project/Frontend/SignConnectPlus/src/
pages/
services/VideoToSignLanguage.js
→
Project/Frontend/SignConnectPlus/src/services/VideoToSignLanguage.js
View file @
5b73813b
...
...
@@ -3,10 +3,8 @@ import axios from 'axios';
class
VideoToSignLanguage
{
videoTranslation
(
data
)
{
return
axios
.
post
(
// @ts-ignore
`http://127.0.0.1:8000/translated_items/`
,
data
);
`http://127.0.0.1:8000/translated_items/`
,
data
);
}
}
...
...
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