Example #1
0
        public override void RunTest()
        {
            var capture = new VideoCapture();

            capture.Set(VideoCaptureProperties.FrameWidth, 640);
            capture.Set(VideoCaptureProperties.FrameHeight, 480);
            capture.Open(-1);
            if (!capture.IsOpened())
            {
                throw new Exception("capture initialization failed");
            }

            var fs = FrameSource.CreateFrameSource_Camera(-1);
            var sr = SuperResolution.CreateBTVL1();

            sr.SetInput(fs);

            using var normalWindow = new Window("normal");
            using var srWindow     = new Window("super resolution");
            var normalFrame = new Mat();
            var srFrame     = new Mat();

            while (true)
            {
                capture.Read(normalFrame);
                sr.NextFrame(srFrame);
                if (normalFrame.Empty() || srFrame.Empty())
                {
                    break;
                }
                normalWindow.ShowImage(normalFrame);
                srWindow.ShowImage(srFrame);
                Cv2.WaitKey(100);
            }
        }
 /// <summary>
 ///
 /// </summary>
 /// <param name="deviceId"></param>
 /// <returns></returns>
 public static FrameSource CreateFrameSource_Camera(int deviceId)
 {
     return(FrameSource.CreateFrameSource_Camera(deviceId));
 }