-
大小: 26.57MB文件类型: .gz金币: 1下载: 0 次发布日期: 2023-06-15
- 语言: 其他
- 标签: opencv ippicv 2017u3 lnx_intel64
资源简介
ippicv_2017u3_lnx_intel64_general_20170822.tar.gz
extract and put the file into opencv build directory 3rdparty ippicv
代码片段和文件信息
/*
// Copyright 2016-2017 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
#include “omp.h“ // 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
#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
///////////////////////////////////////////////////////////////////////////// */
#ifdef IW_BUILD_DLL
#if defined _WIN32
#include
int WINAPI DllMain( HINSTANCE hinstDLL DWORD fdwReason LPVOID lpvReserved )
{
switch( fdwReason )
{
case DLL_PROCESS_ATTACH: break;
case DLL_THREAD_ATTACH: break;
case DLL_THREAD_DETACH: break;
case DLL_PROCESS_DETACH: break;
default: break;
}
return 1;
UNREFERENCED_PARAMETER(hinstDLL);
UNREFERENCED_PARAMETER(lpvReserved);
}
#elif defined __unix__
int _init(void)
{
return 1;
}
void _fini(void)
{
}
#elif defined __APPLE__
__attribute__((constructor)) void initializer( void )
{
static int initialized = 0;
if(!initialized)
{
initialized =
- 上一篇:全国大学生数学建模竞赛优秀论文汇编
- 下一篇:富士通 API 库函数 中文版
相关资源
- opencv识别数字
- openCV for iOS
- 眼底图像拼接
- OPENCV实现ORB/SURF/SIFT + RANSAC 图像自动拼
- ippicv_2017u3_lnx_intel64_general_20180518.tgz
- LearningOpenCV中文版-于仕琪书源码.zip
- qtOpenCVTools v1.7.0.rar
- mingw64编译好的OpenCV3.4.10
- OpenCV 4.2.0 && Qt5.14.1 编译好的库
-
OpenCV的haarcascades 各种分类器xm
l文件 - OpenCV计算机视觉编程攻略 第三版
- opencv-4.1.0样例图片和视频.zip
- OpenCv3.3 32位版本
- OpenCV 的opencv_createsamples.exe和opencv_ha
- Kinect + openni+opencv 获取深度图
- opencv-3.4.1-windows版本
- opencv 2计算机视觉编程手册_中文_+图片
- opencv-3.4.7.zip
- 深入理解OpenCV 实用计算机视觉项目解
- vgg_generated_120.i等.tar.gz
- opencv4.5.0-cmake错误解决
- OpenCV 3.1 离线文档(包括contrib部分)
- QT实现的Opencv图像处理、点云显示、演
- 《opencv3编程入门》 毛星云完整版--
- 自定义图像识别
- opencv2.4.1-源码
- OpenCV-2.4.1_build&tbb;_vs_(x64)05/08/10三种
- OpenCvSharp 读摄像头及图像拼接功能
- opencv 3.1.0 3rdparty\\ffmpeg\\download
- 《OpenCV图像处理编程》完整版(高清
评论
共有 条评论