def converttime(time):
#offset = time & 0xFFF
cycle1 = (time >> 12) & 0x1FFF
cycle2 = (time >> 25) & 0x7F
seconds = cycle2 + cycle1 / 8000.
return secondsdef uncycle(time):
cycles = np.insert(np.diff(time) < 0, 0, False)
cycleindex = np.cumsum(cycles)
return time + cycleindex * 128
Hopefully this will be helpful information for anyone trying to interpret the PointGrey timestamps.
Cheers!
converttime(319619333) => 9.538
converttime(320710480) => 9.57125
converttime(321802659) => 9.604625
--
You received this message because you are subscribed to the Google Groups "Bonsai Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bonsai-users+unsubscribe@googlegroups.com.
Visit this group at https://groups.google.com/group/bonsai-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/bonsai-users/81870ac9-93f9-4fa7-9496-e3991d355512%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to bonsai-users...@googlegroups.com.
Visit this group at https://groups.google.com/group/bonsai-users.
To unsubscribe from this group and stop receiving emails from it, send an email to bonsai-users+unsubscribe@googlegroups.com.
Visit this group at https://groups.google.com/group/bonsai-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/bonsai-users/6300a898-51ca-4502-96e6-c0fe931d98fb%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to bonsai...@googlegroups.com.
Visit this group at https://groups.google.com/group/bonsai-users.
To unsubscribe from this group and stop receiving emails from it, send an email to bonsai-users...@googlegroups.com.
Visit this group at https://groups.google.com/group/bonsai-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/bonsai-users/92de67a9-5b2d-4fa0-b778-ef21d1315d51%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to bonsai-users...@googlegroups.com.
Visit this group at https://groups.google.com/group/bonsai-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/bonsai-users/297bd857-cbbe-4cde-a0bc-29a0708cf711%40googlegroups.com.