-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.asv
More file actions
32 lines (22 loc) · 746 Bytes
/
main.asv
File metadata and controls
32 lines (22 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
max_action=3
max_people=10
max_doc=20
for i=1:max_doc
for j=1:max_people
for k=1:max_action
s_i=sprintf('0%d',i);
s_j=sprintf('0%d',j);
if(i>9)
s_i=sprintf('%d',i);
end
if(j>9)
s_j=sprintf('%d',j);
end
file = sprintf('C:\\Users\\Linder\\Documents\\dataset\\skeletons\\MSRAction3DSkeleton(20joints)\\a%s_s%s_e0%d_skeleton.txt',s_i,s_j,k)
nFrames=readSkeletonDataset(file',@plot_skeleton);
w = waitforbuttonpress;
disp(file);
disp(sprintf('N of rames:%d\n',toFrames))
end
end
end