Exemplo n.º 1
0
 internal VtiTimeStampComposer(VideoFormat?format, int integratedAAVFrames, bool evenBeforeOdd, bool duplicatedFields, IVideoController videoController, ICalibrationErrorProcessor calibrationErrorProcessor, Func <uint[]> getCurrImageQuery)
 {
     m_VideoFormat               = format;
     m_IntegratedAAVFrames       = integratedAAVFrames;
     m_VideoController           = videoController;
     m_CalibrationErrorProcessor = calibrationErrorProcessor;
     m_GetCurrImageQuery         = getCurrImageQuery;
     m_EvenBeforeOdd             = evenBeforeOdd;
     m_DuplicatedFields          = duplicatedFields;
     m_Corrector.Reset(m_VideoFormat);
 }
Exemplo n.º 2
0
 internal void PrepareCalibrationFailedReport(ICalibrationErrorProcessor errorProcessor)
 {
     errorProcessor.AddErrorText(string.Format("{0:0.00}% of all signatures have been recognized.", 100 - m_UnrecognSignPerc));
 }