#include #include #include #include void
colorReduce(cv::Mat& image, int div=64){ int nr = image.rows; int nc =
image.cols * image.channels(...
分类:
其他好文 时间:
2014-05-19 19:54:20
阅读次数:
270
首先上header file
#ifndef _SCHED_H
#define _SCHED_H
#define HZ 100
#define NR_TASKS 64
#define TASK_SIZE 0x04000000
#define LIBRARY_SIZE 0x00400000
#if (TASK_SIZE & 0x3fffff)
#error "TASK_...
分类:
系统相关 时间:
2014-05-07 11:56:55
阅读次数:
662
与C中的main函数一样,MEX程序中的开始函数为mexFunction.默认变量参数是:void mexFunction(int nlhs, mxArray
*plhs[], int nrhs, const mxArray *prhs[])其中nlhs输出参数数目plhs[]指向输出参数的指针nr...
分类:
其他好文 时间:
2014-05-02 18:01:35
阅读次数:
386