Inheritance: INotifyPropertyChanged
 private void Initialize()
 {
     //HandShapeClassifier.GetSingleton();
     m_OpenCVController = OpenCVController.GetSingletonInstance();
     m_VideoProcessor = VideoProcessor.GetSingletonInstance();
     this.sld_progress.DataContext = VisualData.GetSingleton();
     this.img_color.Source = m_VideoProcessor.ColorWriteBitmap;
     this.img_depth.Source = m_VideoProcessor.DepthWriteBitmap;
     this.img_leftFront.Source = m_VideoProcessor.WrtBMP_LeftHandFront;
     this.img_rightFront.Source = m_VideoProcessor.WrtBMP_RightHandFront;
     string path = @"F:\Aaron\1-250";
     //m_VideoProcessor.OpenDir(@"D:\Kinect data\newdata\HKG_001_a_0001 Aaron 22");
 }
Example #2
0
 private void Initialize()
 {
     //HandShapeClassifier.GetSingleton();
     m_OpenCVController            = OpenCVController.GetSingletonInstance();
     m_VideoProcessor              = VideoProcessor.GetSingletonInstance();
     this.sld_progress.DataContext = VisualData.GetSingleton();
     this.img_color.Source         = m_VideoProcessor.ColorWriteBitmap;
     this.img_depth.Source         = m_VideoProcessor.DepthWriteBitmap;
     this.img_leftFront.Source     = m_VideoProcessor.WrtBMP_LeftHandFront;
     this.img_rightFront.Source    = m_VideoProcessor.WrtBMP_RightHandFront;
     string path = @"F:\Aaron\1-250";
     //m_VideoProcessor.OpenDir(@"D:\Kinect data\newdata\HKG_001_a_0001 Aaron 22");
 }
Example #3
0
 public static VideoProcessor GetSingletonInstance()
 {
     return(m_VideoProcessor ?? (m_VideoProcessor = new VideoProcessor()));
 }
 public static VideoProcessor GetSingletonInstance()
 {
     return m_VideoProcessor ?? (m_VideoProcessor = new VideoProcessor());
 }