Ejemplo n.º 1
0
 public ETEyeImageMonitor(ETController ETDevice, PictureBox inPicBox)
 {
     Console.WriteLine("Test1");
     EyeImageCallback = new GetEyeImageCallback(GetEyeImageCallbackFunction);
     ETDevice.iV_SetEyeImageCallback(EyeImageCallback);
     pictureBoxReference = inPicBox;
 }
Ejemplo n.º 2
0
 public ETEyeImageMonitor(ETController ETDevice, PictureBox inPicBox)
 {
     Console.WriteLine("Test1");
     EyeImageCallback = new GetEyeImageCallback(GetEyeImageCallbackFunction);
     ETDevice.iV_SetEyeImageCallback(EyeImageCallback);
     pictureBoxReference = inPicBox;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes this instance.
 /// </summary>
 public void initialize()
 {
     ETDevice = new EyeTrackingController();
     m_CalibrationCallback     = new CalibrationCallback(CalibrationCallbackFunction);
     m_SampleCallback          = new GetSampleCallback(GetSampleCallbackFunction);
     m_EventCallback           = new GetEventCallback(GetEventCallbackFunction);
     m_EyeImageCallback        = new GetEyeImageCallback(GetEyeImageCallbackFunction);
     m_SceneVideoCallback      = new GetSceneVideoCallback(GetSceneVideoCallbackFunction);
     m_TrackingMonitorCallback = new GetTrackingMonitorCallback(GetTrackingMonitorCallbackFunction);
 }
Ejemplo n.º 4
0
        private void SmiSample_Load(object sender, EventArgs e)
        {
            ETDevice = new EyeTrackingController.EyeTrackingController();

            m_CalibrationCallback     = new CalibrationCallback(CalibrationCallbackFunction);
            m_SampleCallback          = new GetSampleCallback(GetSampleCallbackFunction);
            m_EventCallback           = new GetEventCallback(GetEventCallbackFunction);
            m_EyeImageCallback        = new GetEyeImageCallback(GetEyeImageCallbackFunction);
            m_SceneVideoCallback      = new GetSceneVideoCallback(GetSceneVideoCallbackFunction);
            m_TrackingMonitorCallback = new GetTrackingMonitorCallback(GetTrackingMonitorCallbackFunction);
        }
Ejemplo n.º 5
0
    /// <summary>
    /// Initializes this instance.
    /// </summary>
		public void initialize()
		{
			ETDevice = new EyeTrackingController();
			 m_CalibrationCallback = new CalibrationCallback(CalibrationCallbackFunction);
       m_SampleCallback = new GetSampleCallback(GetSampleCallbackFunction);
       m_EventCallback = new GetEventCallback(GetEventCallbackFunction);
       m_EyeImageCallback = new GetEyeImageCallback(GetEyeImageCallbackFunction);
       m_SceneVideoCallback = new GetSceneVideoCallback(GetSceneVideoCallbackFunction);
       m_TrackingMonitorCallback = new GetTrackingMonitorCallback(GetTrackingMonitorCallbackFunction);
		}