Skip to content

Commit

Permalink
Dfix
Browse files Browse the repository at this point in the history
  • Loading branch information
xinyuli1204 committed Aug 2, 2024
1 parent 3545616 commit 3c0c6ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bb/image-io/rt_u3v.h
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ class U3VRealCam: public U3V{
log::info("Acquisition option::{} is {}", "frame_sync_", frame_sync_);
log::info("Acquisition option::{} is {}", "realtime_display_mode_", realtime_display_mode_);

for (int i = 0; i < num_sensor; ++i){
for (int i = 0; i < num_device; ++i){
if (dev_id == arv_get_device_id (i) && dev_id != nullptr){
/* if device id is specified
TODO: dev_id may be more than 1
Expand Down Expand Up @@ -1370,7 +1370,7 @@ class U3VGenDC: public U3V{
log::info("Acquisition option::{} is {}", "frame_sync_", frame_sync_);
log::info("Acquisition option::{} is {}", "realtime_display_mode_", realtime_display_mode_);

for (int i = 0; i < num_sensor; ++i){
for (int i = 0; i < num_device; ++i){
if (dev_id == arv_get_device_id (i) && dev_id != nullptr){
/* if device id is specified
TODO: dev_id may be more than 1
Expand Down

0 comments on commit 3c0c6ac

Please sign in to comment.