Browse Source

Working ORVS Thermal node

pull/65/head
Hongyu Li 2 years ago
parent
commit
a5b33fbb7b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      vz_ros_wrappers/scripts/orvs_ros_interface.py

+ 1
- 1
vz_ros_wrappers/scripts/orvs_ros_interface.py View File

@ -49,9 +49,9 @@ class FLIR_LEPTON:
if self.index < 300:
print(self.index)
self.frame_arr[self.index] = cv_image
self.index += 1
deltat = t.to_sec() - self.t_zero
self.time_arr[self.index] = deltat
self.index += 1
else: # when list is full
self.index = 0 # reset index
vid_arr = np.asarray(self.frame_arr) # make into np array

Loading…
Cancel
Save