Skip to content

Commit f72da4b

Browse files
committedJul 20, 2017
updated to new code
1 parent f7c0311 commit f72da4b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed
 

‎learner/learner.py

-3
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,6 @@ def computeOutVar(path):
128128
pframe = cv2.resize(frame, dsize=(args.size, args.size))
129129

130130
# prepare and normalize frame for processing:
131-
# pframe = np.swapaxes(pframe, 0, 2)
132-
# pframe = np.expand_dims(pframe, axis=0)
133-
# print(pframe)
134131
pframe = transformsImage(pframe)
135132
pframe = torch.autograd.Variable(pframe) # turn Tensor to variable required for pytorch processing
136133
pframe = pframe.unsqueeze(0)

0 commit comments

Comments
 (0)
Please sign in to comment.