我有一个应用程序可以决定一个人是在挥手、跑步还是走路。这个想法是我已经分割了一个动作,比如手波,到它的姿势。比方说
例子;
for human1:pose7-pose3-pose7-..... represents handwave
for human3:pose1-pose7-pose1-..... represents handwave
for human7:pose1-pose1-pose7-..... represents handwave
for human20:pose3-pose7-pose7-..... represents handwave
for human1 pose11-pose33-pose77-..... represents walking
for human2 pose31-pose33-pose77-..... represents walking
for human3 pose11-pose77-pose77-..... represents walking
for human20 pose11-pose33-pose11-..... represents walking
我使用上述向量在 Matlab 中训练 SVM 和神经网络。
现在我用它测试测试图像。我再次为测试图像分割了姿势。
对于 MATLAB 中的测试集和训练集的向量大小;SVM 和神经网络需要相同的向量大小。让它发挥作用;
如果我附加 0(假设它像pose0
- 这是一个无效的姿势),为了使尺寸相等,我的性能非常好。
如果我在开头复制初始姿势并将它们附加到末尾,直到大小相等,性能就会下降。
例如;
train set: pose1-pose2-pose4-pose7-pose2-pose4-pose7
(1st method)test set: pose3-pose1-pose4-0-0-0-0 or
(2nd method)test set: pose3-pose1-pose4-pose3-pose1-pose4-pose3
我希望使用第二种方法有更好的分类,因为附加值是姿势的实际值。但pose0
不是真正的姿势。
你有什么想法 ?问候