1
0
mirror of https://github.com/gsi-upm/senpy synced 2025-12-27 05:28:15 +00:00

Fixed bugs in Ekman2VAD

This commit is contained in:
J. Fernando Sánchez
2017-02-28 04:01:05 +01:00
parent 5fb858f5fc
commit 453b9f3257
6 changed files with 58 additions and 16 deletions

View File

@@ -13,6 +13,7 @@ from .api import API_PARAMS, NIF_PARAMS, parse_params
from threading import Thread
import os
import copy
import fnmatch
import inspect
import sys
@@ -180,7 +181,7 @@ class Senpy(object):
newentries = []
for i in resp.entries:
if output == "full":
newemotions = i.emotions.copy()
newemotions = copy.copy(i.emotions)
else:
newemotions = []
for j in i.emotions: