Skip to content

Commit eb935be

Browse files
committed
fix typo in resize of image pre-hog line
1 parent 0ea88c7 commit eb935be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def compute_hog_descriptor(self):
123123

124124
# generate the HOG descriptors for a given image
125125

126-
img_hog cv2.resize(img, (params.DATA_WINDOW_SIZE[0], params.DATA_WINDOW_SIZE[1]), interpolation = cv2.INTER_AREA)
126+
img_hog = cv2.resize(img, (params.DATA_WINDOW_SIZE[0], params.DATA_WINDOW_SIZE[1]), interpolation = cv2.INTER_AREA)
127127

128128
self.hog_descriptor = hog.compute(img_hog)
129129

0 commit comments

Comments
 (0)