-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsisc_wrapper.py
218 lines (199 loc) · 9.17 KB
/
sisc_wrapper.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
''' Human Behavior Analysis Module
==============================
This program is the main entry point for extracting Behavioral Action
Units (BAU's) using Shift Invariant Sparse Coding.
-------------------------------------------------------------------------------
Coded by Md. Iftekhar Tanveer ([email protected])
Rochester Human-Computer Interaction (ROCHCI)
University of Rochester
-------------------------------------------------------------------------------
'''
from argparse import ArgumentParser
from sisc_optimizer import *
import scipy.io as sio
import fileio as fio
import time
##################################
####### NEEDS REFACTORING ########
##################################
##################################
######### NEEDS Debuging #########
##################################
################################# Main Helper #################################
def buildArg():
args = ArgumentParser(description="Automatic Extraction of Human Behavior")
args.add_argument('-i',nargs='*',default='Data/13.3.csv',\
metavar='INPUT_FILES',\
help='CSV file(s) containing the seleton movements\
(default: %(default)s)')
args.add_argument('-o',nargs='?',default='Results/result',\
metavar='OUTPUT_FILE_PATH_AND_PREFIX',\
help='Path and any prefix of the generated output mat files. \
(default: %(default)s)')
args.add_argument('-p',nargs='?',type=int,default=4,\
metavar='Num_Parallel',\
help='Total number of parallel processes to be used. \
(default: %(default)s)')
args.add_argument('-toy',nargs='?',type=int,\
choices=range(1,9),metavar='TOY_DATA_ID',\
help='This will override the INPUT_MAT_FILENAME with synthetic toy data.\
The ID refers different preset synthetic data. \
Must be chosen from the following: %(choices)s')
args.add_argument('-skelTree',nargs='?',default=\
'Data/KinectSkeleton.tree',metavar='SKELETON_TREE_FILENAME',\
help='A .tree file containing kinect skeleton tree (default: %(default)s)')
args.add_argument('-iter_thresh',nargs='?',type=int,default=65536,\
metavar='ITERATION_THRESHOLD',\
help='Threshold of iteration (termination criteria) (default:%(default)s)')
args.add_argument('-diff_thresh',nargs='?',type=float,default=1e-5,\
metavar='DIFFERENCE_THRESHOLD',\
help='Threshold of difference in log objective function\
(termination criteria) (default:%(default)s)')
args.add_argument('-M',nargs='?',type=int,default=64,\
metavar='ATOM_LENGTH',\
help='The length of atomic units (psi)')
args.add_argument('-D',nargs='?',type=int,default=16,\
metavar='DICTIONARY_LENGTH',\
help='The total number of atomic units (psi). In Other Words, the total\
number of elements in the dictionary (default: %(default)s). Does not have\
any effect on toy data')
args.add_argument('-Beta',nargs='?',type=float,default=0.1,\
metavar='NON-SPARSITY_COST',\
help='Represents the cost of nonsparsity. The higer the cost, the \
sparser the occurances of the dictionary elements.')
args.add_argument('--pca',dest='applyPCA',action='store_true',\
default=False,help='Applies frame level PCA before running SISC. When\
displaying the results, it is necessary to backproject from PCA domain\
to the skeleton domain.')
args.add_argument('--Disp',dest='Disp', action='store_true',\
default=False,help='Turns on displays relevant for Toy data.\
Shows Original Data + Final Results. It is not applicable for data input\
from mat. Does not slow down much.')
args.add_argument('--DispObj',dest='Disp_Obj', action='store_true',\
default=False,help='Turns on log of objective function plot. Hugely slows\
down the algorithm.')
args.add_argument('--DispGrad',dest='Disp_Gradiants', action='store_true',\
default=False,help='Turns on the gradient plots. Mainly used for\
debuging. Hugely slows down the algorithm.')
args.add_argument('--DispIter',dest='Disp_Iterations',action='store_true',\
default=False,help='Turns on the plots in each iteration. Mainly used for\
debuging. Hugely slows down the algorithm.')
return args
################################## Unit Test ##################################
def toyTest(args):
dataID = args.toy
# Synthetic Toy Data
if dataID==1:
alpha,psi = fio.toyExample_medium()
elif dataID==2:
alpha,psi = fio.toyExample_medium_boostHighFreq()
elif dataID==3:
alpha,psi = fio.toyExample_medium_boostHighFreq()
elif dataID==4:
alpha,psi = fio.toyExample_reallike()
elif dataID==5:
alpha,psi = fio.toyExample_medium_1d_multicomp()
elif dataID==6:
alpha,psi = fio.toyExample_medium_3d_multicomp()
elif dataID==7:
alpha,psi = fio.toyExample_large_3d_multicomp()
elif dataID==8:
alpha,psi = fio.toyExample_orthogonal_3d_multicomp()
p = Pool(args.p)
# Construct the data
X = recon(alpha,projectPsi(psi,1.0),p)
# Display Original Data if allowed
if args.Disp:
dispOriginal(alpha,psi)
# Apply Convolutional Sparse Coding.
# Length of AEB is set to 2 seconds (60 frames)
# D represents how many Action Units we want to capture
alpha_recon,psi_recon,cost,reconError,L0,SNR = optimize_proxim(X,M=args.M,\
D=args.D,beta=args.Beta,iter_thresh=args.iter_thresh,\
thresh = args.diff_thresh,dispObj=args.Disp_Obj,\
dispGrad=args.Disp_Gradiants,dispIteration=args.Disp_Iterations,\
totWorker=args.p)
# alpha_recon,psi_recon = optimize_proxim(X,M,D,beta,dispObj=dispObj,\
# dispGrad=dispGrad,dispIteration=dispIteration)[:2]
# Display the reconstructed values
if args.Disp:
print '### Parameters & Results ###'
print 'N = ', str(len(X))
print 'K = ', str(np.size(X,axis=1))
print 'M = ', str(args.M)
print 'D = ', str(args.D)
print 'beta = ', str(args.Beta)
print 'cost = ', str(cost)
print 'SNR = ', str(SNR)
print 'reconError = ', str(reconError)
print 'L0 = ', str(L0)
dispPlots(alpha_recon,psi_recon,X,'Final Result',p)
pp.pause(1)
pp.show()
else:
# Save the results
resultName = args.o+'_M='+str(args.M)+'_D='+str(args.D)+'_beta='+\
str(args.Beta)+'_'+time.strftime(\
'%H_%M_%S',time.localtime())
sio.savemat(resultName+'.mat',{'alpha_recon':alpha_recon,'SNR':SNR,\
'psi_recon':psi_recon,'cost':cost,'reconError':reconError,'L0':L0,\
'M':args.M,'D':args.D,'Beta':args.Beta,'X':X,'alpha_origin':alpha,\
'psi_origin':psi,'Data_Origin':'Toy'},do_compression=True)
# Work with real data
def realTest(args):
if len(args.i)>1:
print 'Currently SISC takes only one data file'
return
if not args.applyPCA:
data,header,tx,th,ht = fio.preprocess(args.i[0])
X = data[:,2:]
else:
data,header = fio.readdatafile(args.i[0])
X,princomps,Xmean = fio.txfmdata(data)
# Pad the data to make it power of two and then
# apply Convolutional Sparse Coding
orgX,orgY = np.shape(X);
numZeros = (nextpow2(len(X))-len(X))
X = np.pad(X,((0,numZeros),(0,0)),'constant',constant_values=0)
alpha_recon,psi_recon,cost,reconError,L0,SNR = optimize_proxim(X,M=args.M,\
D=args.D,beta=args.Beta,iter_thresh=args.iter_thresh,\
thresh = args.diff_thresh,dispObj=args.Disp_Obj,\
dispGrad=args.Disp_Gradiants,dispIteration=args.Disp_Iterations,\
totWorker=args.p)
alpha_recon = alpha_recon[0:orgX]
# Save the results
if not args.applyPCA:
resultName = args.o+'_M='+str(args.M)+'_D='+str(args.D)+'_beta='+\
str(args.Beta)+'__'+time.strftime('%H_%M_%S',time.localtime())
sio.savemat(resultName+'.mat',{'alpha_recon':alpha_recon,\
'psi_recon':psi_recon,'cost':cost,'reconError':reconError,'L0':L0,\
'M':args.M,'D':args.D,'K':np.size(X,axis=1),'Beta':args.Beta,'SNR':SNR,\
'Data':data,'header':header,'N':np.size(X,axis=0),'Data_Origin':'Real'})
else:
M,K,D=np.shape(psi_recon)
psi_decoded = np.zeros((M,np.size(princomps,axis=0),D))
for i in xrange(D):
psi_decoded[:,:,i] = psi_recon[:,:,i].dot(princomps.T) + Xmean
print np.shape(psi_decoded)
resultName = args.o+'_M='+str(args.M)+'_D='+str(args.D)+'_beta='+\
str(args.Beta)+'__'+time.strftime('%H_%M_%S',time.localtime())
sio.savemat(resultName+'.mat',{'alpha_recon':alpha_recon,\
'psi_recon':psi_decoded,'cost':cost,'reconError':reconError,'L0':L0,\
'M':args.M,'D':args.D,'Beta':args.Beta,'SNR':SNR,\
'Data':data,'header':header,'K':np.size(X,axis=1),\
'psi_comp':psi_recon,'princmp':princomps,'xmean':Xmean,\
'N':np.size(X,axis=0),'Data_Origin':'Real'})
################################ Main Entrance ################################
def main():
# Handle arguments
parser = buildArg()
args = parser.parse_args()
# Handle the toy data
if not args.toy == None:
toyTest(args)
else:
# Handle the real data
realTest(args)
print 'Done!'
if __name__ == '__main__':
main()