|
void | cv::samples::addSamplesDataSearchPath (const cv::String &path) |
| 通过添加新的搜索位置来覆盖搜索数据路径。
|
|
void | cv::samples::addSamplesDataSearchSubDirectory (const cv::String &subdir) |
| 追加样本搜索数据子目录。
|
|
template<typename _Tp > |
static _Tp * | cv::alignPtr (_Tp *ptr, int n=(int) sizeof(_Tp)) |
| 将指针对齐到指定的字节数。
|
|
static size_t | cv::alignSize (size_t sz, int n) |
| 将缓冲区大小对齐到指定的字节数。
|
|
bool | cv::checkHardwareSupport (int feature) |
| 如果主机硬件支持指定的特性,则返回 true。
|
|
static int | cv::divUp (int a, unsigned int b) |
| 整数除法,结果向上取整。
|
|
static size_t | cv::divUp (size_t a, unsigned int b) |
|
cv::String | cv::samples::findFile (const cv::String &relative_path, bool required=true, bool silentMode=false) |
| 尝试查找请求的数据文件。
|
|
cv::String | cv::samples::findFileOrKeep (const cv::String &relative_path, bool silentMode=false) |
|
const String & | cv::getBuildInformation () |
| 返回完整的配置时间 cmake 输出。
|
|
std::string | cv::getCPUFeaturesLine () |
| 返回编译期间启用的 CPU 特性列表。
|
|
int64 | cv::getCPUTickCount () |
| 返回 CPU 时钟周期数。
|
|
static size_t | cv::getElemSize (int type) |
|
String | cv::getHardwareFeatureName (int feature) |
| 通过 ID 返回特性名称。
|
|
int | cv::getNumberOfCPUs () |
| 返回可用于进程的逻辑 CPU 数量。
|
|
int | cv::getNumThreads () |
| 返回 OpenCV 用于并行区域的线程数量。
|
|
int | cv::utils::getThreadID () |
|
int | cv::getThreadNum () |
| 返回当前执行的线程在当前并行区域中的索引。如果在并行区域之外调用,始终返回 0。
|
|
int64 | cv::getTickCount () |
| 返回时钟周期数。
|
|
double | cv::getTickFrequency () |
| 返回每秒的时钟周期数。
|
|
int | cv::getVersionMajor () |
| 返回主库版本。
|
|
int | cv::getVersionMinor () |
| 返回次要库版本。
|
|
int | cv::getVersionRevision () |
| 返回库版本的修订字段。
|
|
String | cv::getVersionString () |
| 返回库版本字符串。
|
|
void | cv::glob (String pattern, std::vector< String > &result, bool recursive=false) |
|
template<int N, typename T > |
static bool | cv::isAligned (const T &data) |
| 传递的值的对齐检查。
|
|
template<int N> |
static bool | cv::isAligned (const void *p1) |
|
template<int N> |
static bool | cv::isAligned (const void *p1, const void *p2) |
|
template<int N> |
static bool | cv::isAligned (const void *p1, const void *p2, const void *p3) |
|
template<int N> |
static bool | cv::isAligned (const void *p1, const void *p2, const void *p3, const void *p4) |
|
static std::ostream & | cv::operator<< (std::ostream &out, const TickMeter &tm) |
| 输出运算符
|
|
void | cv::parallel_for_ (const Range &range, const ParallelLoopBody &body, double nstripes=-1.) |
| 并行数据处理器。
|
|
static void | cv::parallel_for_ (const Range &range, std::function< void(const Range &)> functor, double nstripes=-1.) |
|
ErrorCallback | cv::redirectError (ErrorCallback errCallback, void *userdata=0, void **prevUserdata=0) |
| 设置新的错误处理程序和可选的用户数据。
|
|
static int | cv::roundUp (int a, unsigned int b) |
| 将第一个值向上舍入到第二个值的最近倍数。
|
|
static size_t | cv::roundUp (size_t a, unsigned int b) |
|
bool | cv::setBreakOnError (bool flag) |
| 设置/重置错误中断模式。
|
|
void | cv::setNumThreads (int nthreads) |
| OpenCV 将尝试为后续的并行区域设置线程数量。
|
|
void | cv::setUseOptimized (bool onoff) |
| 启用或禁用优化代码。
|
|
String | cv::tempfile (const char *suffix=0) |
|
bool | cv::useOptimized () |
| 返回优化代码使用状态。
|
|