Skip to content

Commit

Permalink
Update gen_lv.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jsn5 committed Aug 8, 2018
1 parent 85e3353 commit b0b47de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gen_lv.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
lv_array = []
limit = len(os.listdir('imgs'))

for i in range(3,limit-3):
for i in range(1,limit):
img = cv2.imread('imgs/{}.jpg'.format(i),cv2.IMREAD_GRAYSCALE)
img = cv2.resize(img,(208,120))
data_np = np.array(img) / 255
Expand Down

0 comments on commit b0b47de

Please sign in to comment.