Example #1
0
        public void FrameIn(object sender, VsImageEventArgs e)
        {
            VsImage img = (VsImage)e.Image.Clone();

            this.vsViewer.SizeMode = PictureBoxSizeMode.StretchImage;

            //if (vsAttachType == VsAttachType.ATTACH_ANALYZER)
            //    this.vsViewer.Image = img.AnalyzedImage;
            //else
            this.vsViewer.Image = img.Image;

            //this.vsViewer.Image.Save("test.bmp");
            // if the first frame -> alert to application and property control
            if (vsStatus == VsViewStatusType.VIEW_CONNECTING)
            {
                // connected flag
                vsStatus = VsViewStatusType.VIEW_CONNECTED;

                // alert to sigleview
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                                       new VsViewerParas(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_SIGLEVIEW, vsDeviceType, vsDeviceName, VsViewerType.VIEW_STATUS)));

                // alert to application control
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                                       new VsViewerParas(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_APPICATION, vsDeviceType, vsDeviceName, VsViewerType.VIEW_STATUS)));

                // alert to property control
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                                       new VsViewerParas(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_PROPERTY, vsDeviceType, vsDeviceName, VsViewerType.VIEW_STATUS)));
            }
        }
Example #2
0
        public void InitialViewer()
        {
            vsViewer.Image    = global::Vs.Monitor.Properties.Resources.isys;
            vsViewer.SizeMode = PictureBoxSizeMode.CenterImage;

            i = 0;
            // initial toolbox - disable
            labelStatus.Text = "";
            panelTool.Focus();
            buttonStop.Enabled     = false;
            buttonAttach.Enabled   = false;
            buttonAnalyzer.Enabled = false;

            this.BorderStyle = BorderStyle.None;

            vsDeviceType = VsDeviceType.CAMERA;
            vsAttachType = VsAttachType.ATTACH_RECEIVER;
            vsStatus     = VsViewStatusType.VIEW_AVAIABLE;
        }
Example #3
0
        public void InitialViewer()
        {
            vsViewer.Image = global::Vs.Monitor.Properties.Resources.isys;
            vsViewer.SizeMode = PictureBoxSizeMode.CenterImage;

            i = 0;
            // initial toolbox - disable 
            labelStatus.Text = "";
            panelTool.Focus();
            buttonStop.Enabled = false;
            buttonAttach.Enabled = false;
            buttonAnalyzer.Enabled = false;

            this.BorderStyle = BorderStyle.None;

            vsDeviceType = VsDeviceType.CAMERA;
            vsAttachType = VsAttachType.ATTACH_RECEIVER;
            vsStatus = VsViewStatusType.VIEW_AVAIABLE;
        }
Example #4
0
        public void FrameIn(object sender, VsImageEventArgs e)
        {
            VsImage img = (VsImage)e.Image.Clone();

            this.vsViewer.SizeMode = PictureBoxSizeMode.StretchImage;

            //if (vsAttachType == VsAttachType.ATTACH_ANALYZER)
            //    this.vsViewer.Image = img.AnalyzedImage;
            //else
            this.vsViewer.Image = img.Image;

            //this.vsViewer.Image.Save("test.bmp");
            // if the first frame -> alert to application and property control
            if (vsStatus == VsViewStatusType.VIEW_CONNECTING)
            {
                // connected flag
                vsStatus = VsViewStatusType.VIEW_CONNECTED;

                // alert to sigleview
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                    new VsViewerParas(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_SIGLEVIEW, vsDeviceType, vsDeviceName, VsViewerType.VIEW_STATUS)));

                // alert to application control
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                    new VsViewerParas(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_APPICATION, vsDeviceType, vsDeviceName, VsViewerType.VIEW_STATUS)));

                // alert to property control
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                    new VsViewerParas(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_PROPERTY, vsDeviceType, vsDeviceName, VsViewerType.VIEW_STATUS)));
            }
        }
Example #5
0
        // drag drop into window
        void VsCameraViewer_DragDrop(object sender, DragEventArgs e)
        {
            this.BorderStyle = BorderStyle.None;

            if (vsStatus == VsViewStatusType.VIEW_CONNECTING || vsStatus == VsViewStatusType.VIEW_CONNECTED) return;

            string send = (string)e.Data.GetData(typeof(string));
            string[] cmd = send.Split('\\');

            vsDeviceName = cmd[1];
            // check if not root node
            if (cmd.Length == 2 && cmd[0] == "Analyzers")
            {
                // set flag
                vsDeviceType = VsDeviceType.CAMERA;
                vsStatus = VsViewStatusType.VIEW_CONNECTING;

                // update event
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                    new VsParameter(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_SIGLEVIEW, vsDeviceType, vsDeviceName)));

                labelStatus.Text = "Connecting...";
                // the current camera is connected
                if (!vsCoreMonitor.ConnectingCamera(vsDeviceName))
                {
                    // not connected
                    // try to connect
                    if (!vsCoreMonitor.ConnectCamera(vsDeviceName, false))
                        return;

                    // cache current camera
                    vsCamera = vsCoreMonitor.GetCameraByName(vsDeviceName);
                }

                // the camera is connected
                // attach to current view
                vsCoreMonitor.AttachCameraView(vsDeviceName, this);
                vsAttachType = VsAttachType.ATTACH_RECEIVER;

                // enable toolbox
                buttonStop.Enabled = true;
                buttonAttach.Enabled = true;
                buttonAnalyzer.Enabled = true;
            }
            else if (cmd.Length == 2 && cmd[0] == "Layouts")
            {
                // set flag
                vsDeviceType = VsDeviceType.CHANNEL;
                vsStatus = VsViewStatusType.VIEW_CONNECTING;

                // update event
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                    new VsParameter(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_SIGLEVIEW, vsDeviceType, vsDeviceName)));

                // the current channel is connected
                if (!vsCoreMonitor.ConnectingChannel(vsDeviceName))
                {
                    // not connected
                    // try to connect
                    if (!vsCoreMonitor.ConnectChannel(vsDeviceName, false))
                        return;

                    // cache current camera
                    vsChannel = vsCoreMonitor.GetChannelByName(vsDeviceName);
                }

                // the camera is connected
                // attach to current view
                vsCoreMonitor.AttachChannelView(vsDeviceName, this);

                // enable toolbox
                buttonStop.Enabled = true;
                buttonAttach.Enabled = true;
                buttonAnalyzer.Enabled = true;
            }
        }
Example #6
0
        public void connectDevice(string send)
        {
            if (vsStatus == VsViewStatusType.VIEW_CONNECTING || vsStatus == VsViewStatusType.VIEW_CONNECTED)
            {
                return;
            }

            string[] cmd = send.Split('\\');

            vsDeviceName = cmd[1];
            // check if not root node
            if (cmd.Length == 2 && cmd[0] == "Analyzers")
            {
                // set flag
                vsDeviceType = VsDeviceType.CAMERA;
                vsStatus     = VsViewStatusType.VIEW_CONNECTING;

                // update event
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                                       new VsParameter(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_SIGLEVIEW, vsDeviceType, vsDeviceName)));

                labelStatus.Text = "Connecting...";
                // the current camera is connected
                if (!vsCoreMonitor.ConnectingCamera(vsDeviceName))
                {
                    // not connected
                    // try to connect
                    if (!vsCoreMonitor.ConnectCamera(vsDeviceName, false))
                    {
                        return;
                    }

                    // cache current camera
                    vsCamera = vsCoreMonitor.GetCameraByName(vsDeviceName);
                }

                // the camera is connected
                // attach to current view
                vsCoreMonitor.AttachCameraView(vsDeviceName, this);
                vsAttachType = VsAttachType.ATTACH_RECEIVER;

                // enable toolbox
                buttonStop.Enabled     = true;
                buttonAttach.Enabled   = true;
                buttonAnalyzer.Enabled = true;
            }
            else if (cmd.Length == 2 && cmd[0] == "Layouts")
            {
                // set flag
                vsDeviceType = VsDeviceType.CHANNEL;
                vsStatus     = VsViewStatusType.VIEW_CONNECTING;

                // update event
                this.vsUpdateEvent(this, new VsMonitorEventArgs(
                                       new VsParameter(VsAppControlType.APP_SIGLEVIEW, VsAppControlType.APP_SIGLEVIEW, vsDeviceType, vsDeviceName)));

                // the current channel is connected
                if (!vsCoreMonitor.ConnectingChannel(vsDeviceName))
                {
                    // not connected
                    // try to connect
                    if (!vsCoreMonitor.ConnectChannel(vsDeviceName, false))
                    {
                        return;
                    }

                    // cache current camera
                    vsChannel = vsCoreMonitor.GetChannelByName(vsDeviceName);
                }

                // the camera is connected
                // attach to current view
                vsCoreMonitor.AttachChannelView(vsDeviceName, this);

                // enable toolbox
                buttonStop.Enabled     = true;
                buttonAttach.Enabled   = true;
                buttonAnalyzer.Enabled = true;
            }
        }