private ImageSource CapturePixel()
        {
            Point point = System.Windows.Forms.Cursor.Position;

            Console.WriteLine("X: " + point.X + "\t Y: " + point.Y);
            point.X -= _pixelWidth / 2;
            point.Y -= _pixelHeight / 2;

            var image = ScreenCaptureHelper.CaptureWindow(User32Helper.GetDesktopWindow(), point.X, point.Y, _pixelWidth, _pixelHeight);

            return(ScreenCaptureHelper.ConvertImageToImageSource(image));
        }