We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7c0311 commit f72da4bCopy full SHA for f72da4b
learner/learner.py
@@ -128,9 +128,6 @@ def computeOutVar(path):
128
pframe = cv2.resize(frame, dsize=(args.size, args.size))
129
130
# prepare and normalize frame for processing:
131
- # pframe = np.swapaxes(pframe, 0, 2)
132
- # pframe = np.expand_dims(pframe, axis=0)
133
- # print(pframe)
134
pframe = transformsImage(pframe)
135
pframe = torch.autograd.Variable(pframe) # turn Tensor to variable required for pytorch processing
136
pframe = pframe.unsqueeze(0)
0 commit comments