Fix issue with wrong using index instead of camera_index in opencv (#466)

This commit is contained in:
Eugene Mironov 2024-10-09 16:35:19 +07:00 committed by GitHub
parent d5b669634a
commit c29e70e5a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ def save_images_from_cameras(
executor.submit( executor.submit(
save_image, save_image,
image, image,
camera.index, camera.camera_index,
frame_index, frame_index,
images_dir, images_dir,
) )