ITK Release 4/Video/Time Stamp: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
Line 33: Line 33:
* [http://itk.org/gitweb?p=ITK.git;a=blob;f=Code/Common/itkRealTimeClock.h;h=48cde7370a827dc58ead2f9b6e57782e670e190e;hb=6172fc3b6f4a3b925cc4922f2093719e64104a9a itkRealTimeClock.h]
* [http://itk.org/gitweb?p=ITK.git;a=blob;f=Code/Common/itkRealTimeClock.h;h=48cde7370a827dc58ead2f9b6e57782e670e190e;hb=6172fc3b6f4a3b925cc4922f2093719e64104a9a itkRealTimeClock.h]
* [http://itk.org/gitweb?p=ITK.git;a=blob;f=Code/Common/itkRealTimeClock.cxx;h=6935197e15f261c1c087f27a39ccb1433346a644;hb=6172fc3b6f4a3b925cc4922f2093719e64104a9a itkRealTimeClock.cxx]
* [http://itk.org/gitweb?p=ITK.git;a=blob;f=Code/Common/itkRealTimeClock.cxx;h=6935197e15f261c1c087f27a39ccb1433346a644;hb=6172fc3b6f4a3b925cc4922f2093719e64104a9a itkRealTimeClock.cxx]
== System Time ==
* http://en.wikipedia.org/wiki/System_time

Revision as of 14:16, 29 November 2010

Reference Systems

VRPN - UNC

URL

http://www.cs.unc.edu/Research/vrpn/vrpn_getting_started.html

Time Stamp Structure

<source lang="cpp"> struct timeval

 {
   __time_t tv_sec;		/* Seconds.  */
   __suseconds_t tv_usec;	/* Microseconds.  */
 };

</source>

OpenCV

  • include/opencv/cv.h: double timestamp
  • src/cv/_cvipp.h: float timestamp
  • 3rdparty/include/ffmpeg_/avformat.h: int64_t timestamp;

KWSys

  • static double GetTime();

ITK RealTimeClock

System Time