⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 common.c

📁 微软的基于HMM的人脸识别原代码, 非常经典的说
💻 C
字号:
/*M///////////////////////////////////////////////////////////////////////////////////////
//  
//                      INTEL CORPORATION PROPRIETARY INFORMATION              
//         This software is supplied under the terms of a license agreement or 
//         nondisclosure agreement with Intel Corporation and may not be copied
//         or disclosed except in accordance with the terms of that agreement. 
//               Copyright (c) 1999 Intel Corporation. All Rights Reserved.    
//  
//    RCS:
//       $Source:   initrand.c$
//       $Revision: 00.00.05$
//      Purpose: 
//      Contents:
//        Some common ATS functions and variables 
//      Authors:
//        Vadim Pisarevsky
//  
//M*/

#include "ats.h"

char* atsTimingClass = "Timing"; 
char* atsAlgoClass = "Algorithm";
int   atsCPUFreq = 0;

int atsIsNaN( double x )
{
    return (*((int64*)&x) & 0x7fffffffffffffff) > 0x7ff0000000000000;
}

/* End of file. */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -