示例#1
0
        public static void Reset(string cameraName)
        {
            Debug.Assert(cameraName != null, "The cameraName parameter cannot be null.");

            int status = NiImaqdxDll.IMAQdxResetCamera(cameraName, Convert.ToUInt32(false));

            ExceptionBuilder.CheckErrorAndThrow(status);
        }
示例#2
0
        public static void ResetAll()
        {
            int status = NiImaqdxDll.IMAQdxResetCamera(String.Empty, Convert.ToUInt32(true));

            ExceptionBuilder.CheckErrorAndThrow(status);
        }