Exemplo n.º 1
0
        //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        //생성 :
        //수정 :
        //목적 : 3D 센서( Gocator )
        //설명 :
        //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        public override bool HL3DBackup(string strDestPath)
        {
            bool bReturn = false;

            do
            {
                m_objCamera.Backup(strDestPath);
                bReturn = true;
            } while(false);
            return(bReturn);
        }
Exemplo n.º 2
0
        int BackupSenorParamter(string backupfileName)
        {
            int rtn = 9;

            try
            {
                if (sensor_main.IsConnected())
                {
                    sensor_main.Backup(backupfileName);
                }
            }
            catch (KException ex)
            {
                rtn = (int)ex.Status;
            }
            return(rtn);
        }