|
| 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 时钟周期数。
|
| |
| AlgorithmHint | cv::getDefaultAlgorithmHint () |
| | 返回在 OpenCV 编译期间定义的 AlgorithmHint。定义 ALGO_HINT_DEFAULT 行为。
|
| |
| 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 | 定义 ximgproc.hpp:149 () |
| | 返回时钟周期数。
|
| |
| double | CV_EXPORTS_W Mat imread(const String &filename, int flags=IMREAD_COLOR_BGR) () |
| | 返回每秒的时钟周期数。
|
| |
| 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 () |
| | 返回优化代码的使用状态。
|
| |