Beispiel #1
0
        public void Integration(int framesToIntegrate, FrameIntegratingMode mode, PixelIntegrationType type)
        {
            m_UseIntegration    = true;
            m_FramesToIntegrate = framesToIntegrate;
            m_IntegrationMode   = mode;
            m_IntegrationType   = type;

            Update();
        }
Beispiel #2
0
        public void OpenVideo(IFrameStream frameStream)
        {
            EnsureClosed();

            m_VideoStream = frameStream;

            this.m_IsRunning           = false;
            this.m_StopRequestReceived = false;

            m_MillisecondsPerFrame = (int)m_VideoStream.MillisecondsPerFrame;
            m_CurrentFrameIndex    = m_VideoStream.FirstFrame - 1;
            m_FramesToIntegrate    = 0;
            m_FrameIntegration     = FrameIntegratingMode.NoIntegration;
            m_PlayBackwards        = false;
        }
Beispiel #3
0
 public void SetupFrameIntegration(int framesToIntegrate, FrameIntegratingMode frameMode, PixelIntegrationType pixelIntegrationType)
 {
     m_FramesToIntegrate = framesToIntegrate;
     m_FrameIntegration = frameMode;
     m_PixelIntegrationMode = pixelIntegrationType;
 }
Beispiel #4
0
        public void OpenVideo(IFrameStream frameStream)
        {
            EnsureClosed();

            m_VideoStream = frameStream;

            this.m_IsRunning = false;
            this.m_StopRequestReceived = false;

            m_MillisecondsPerFrame = (int)m_VideoStream.MillisecondsPerFrame;
            m_CurrentFrameIndex = m_VideoStream.FirstFrame - 1;
            m_FramesToIntegrate = 0;
            m_FrameIntegration = FrameIntegratingMode.NoIntegration;
            m_PlayBackwards = false;
        }
Beispiel #5
0
 public void SetupFrameIntegration(int framesToIntegrate, FrameIntegratingMode frameMode, PixelIntegrationType pixelIntegrationType)
 {
     m_FramesToIntegrate    = framesToIntegrate;
     m_FrameIntegration     = frameMode;
     m_PixelIntegrationMode = pixelIntegrationType;
 }
        public void Integration(int framesToIntegrate, FrameIntegratingMode mode, PixelIntegrationType type)
        {
            m_UseIntegration = true;
            m_FramesToIntegrate = framesToIntegrate;
            m_IntegrationMode = mode;
            m_IntegrationType = type;

            Update();
        }