Skip to content

Commit bd3c7f1

Browse files
committed
correct test folder path
1 parent 7b63dc8 commit bd3c7f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
num_samples = 20
2626
samples = random.sample(test_images, num_samples)
2727
results = []
28-
for image_name in samples:
28+
for i, image_name in enumerate(samples):
2929
filename = os.path.join(test_path, image_name)
3030
print('Start processing image: {}'.format(filename))
3131
bgr_img = cv.imread(filename)

0 commit comments

Comments
 (0)