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

📄 cbcl_model.h

📁 A paper that I presented on Supervisory Control and Data Acquisition (SCADA) won the second prize at
💻 H
字号:
/*!*  ** sharat@mit.edu*/#ifndef __CBCL_MODEL_INC_H__#define __CBCL_MODEL_INC_H__#define IN #define OUT/*!  error definitions*/#define CBCL_ERR_NONE             0 #define CBCL_ERR_INTERNAL_ERROR  -1 #define CBCL_ERR_INVALID_PARAM   -2typedef void* CBCL;/*! */CBCL cbcl_initalize();/*!  @function cbcl_extract_features*/int cbcl_get_features(CBCL IN model,unsigned char* IN img,int IN img_ht,int IN img_wt,int IN x,int y,int ht,int wt,double* ftr);/*!  @function cbcl_feature_length  @abstract returns the feature length   @returns */int cbcl_feature_length(CBCL model);/*!  @function  */int cbcl_classify_features(CBCL model, double* ftr,char* class_name);/*! */void cbcl_finalize(CBCL model);#endif

⌨️ 快捷键说明

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