资源简介
opencv编译时下载慢 ippicv_2019_win_intel64_20180723_general
代码片段和文件信息
/*
// Copyright 2016-2018 Intel Corporation All Rights Reserved.
//
// The source code information and material (“Material“) contained herein is
// owned by Intel Corporation or its suppliers or licensors and title
// to such Material remains with Intel Corporation or its suppliers or
// licensors. The Material contains proprietary information of Intel
// or its suppliers and licensors. The Material is protected by worldwide
// copyright laws and treaty provisions. No part of the Material may be used
// copied reproduced modified published uploaded posted transmitted
// distributed or disclosed in any way without Intel‘s prior express written
// permission. No license under any patent copyright or other intellectual
// property rights in the Material is granted to or conferred upon you
// either expressly by implication inducement estoppel or otherwise.
// Any license under such intellectual property rights must be express and
// approved by Intel in writing.
//
// Unless otherwise agreed by Intel in writing
// you may not remove or alter this notice or any other notice embedded in
// Materials by Intel or Intel‘s suppliers or licensors in any way.
//
*/
#include “iw_own.h“
#include “iw/iw_image.h“
#if defined _WIN32
#include
#include
#else
#ifdef _OPENMP
#if (defined __GNUC__) && !(defined __clang__)
#define GCC_VERSION (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__)
#if (GCC_VERSION >= 40700)
#define OWN_ALLOW_OMP_ATOMICS
#endif
#undef GCC_VERSION
#else
#define OWN_ALLOW_OMP_ATOMICS
#endif
#endif
#ifdef OWN_ALLOW_OMP_ATOMICS
#include // Use OMP atomics
#else
#if (defined __clang__ && defined __has_include)
#if !__has_include()
#ifndef __STDC_NO_ATOMICS__
#define __STDC_NO_ATOMICS__
#endif
#endif
#elif (defined __GNUC__)
#define GCC_VERSION (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__)
#if (GCC_VERSION < 40900)
#ifndef __STDC_NO_ATOMICS__
#define __STDC_NO_ATOMICS__
#endif
#endif
#undef GCC_VERSION
#endif
#if !defined __STDC_NO_ATOMICS__
#include
#ifndef __ATOMIC_ACQ_REL
#define __ATOMIC_ACQ_REL 4
#endif
#else
#pragma message(“Atomic operations are not supported by this compiler. Some features my not be thread-safe.“)
#endif
#endif
#ifndef __APPLE__
#include
#endif
#endif
/* /////////////////////////////////////////////////////////////////////////////
// IW DLL entry points
//////////////////////
相关资源
- opencv使用cascade分类器训练人脸检测的
- 用于运动目标检测的视频。
- OpenCV 4.0.0 VS2017vc15编译后的lib、dll、
- OpenCV3编程入门_毛星云编著.pdf
- opencv_contrib-3.2.0,修复了各种文件和库
- VS串口通讯
- opencv 3.4.5 源码
- 人头分类器训练样本数据集
- opencv3.4.2在vs2015下的32位库-包括contr
- opencv3.4.2+VS2013已编译好的库
- OpenCV图像处理视频课程 - 贾志刚 PP
- opencv-4.10带nonfree.zip
- opencv-2.4.13 VS2015支持包编译好了可直接
- opencv2.2.0
- opencv3.1用SVM实现MNIST
- opencv调用海康威视摄像头并实时编码
- Learning_OpenCV_3.pdf
- 基于opencv车牌识别源码
- ippicv_2017u3_lnx_intel64_20170822.tgz包
- opencv4.1_x86.rar
- opencv for qt5.8
- OpenCV两种方法显示中文
- opencv2.2.0版本
- 最经典的开源车牌识别代码 OPENCV
- 《学习OpenCV(中文版)》-于仕琪
- opencv打开图片并显示在Qt界面上
- opencv1.0.zip
- OpenCV3+Qt5视频处理GUI程序
- Opencv2.0.0
- 识别出表盘的指针刻度-opencv
评论
共有 条评论