摘要:
今天改进跌倒检测模块的main部分,使其可以通过摄像头实时监测 import time from collections import deque import requests import cv2 import numpy as np import mediapipe as mp from st 阅读全文
摘要:
跌倒检测main部分,但是只能传mp4 # import time # from collections import deque # # import cv2 # import numpy as np # import mediapipe as mp # # from stgcn.stgcn im 阅读全文
摘要:
Models部分 ### Reference from: https://github.com/yysijie/st-gcn/tree/master/net import torch import torch.nn as nn import torch.nn.functional as F impo 阅读全文
摘要:
stgcn部分 import os import torch import numpy as np from .Models import TwoStreamSpatialTemporalGraph from .Utils import normalize_points_with_size, sca 阅读全文
摘要:
Utils部分 import os import torch import numpy as np from .Models import TwoStreamSpatialTemporalGraph from .Utils import normalize_points_with_size, sca 阅读全文