OpenCV 4.5.3(日本語機械翻訳)
Toggle main menu visibility
総合概要
諸情報
モジュール
名前空間
名前空間一覧
名前空間メンバ
全て
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
関数
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
型定義
列挙型
a
b
c
d
f
g
h
i
k
l
m
n
q
r
s
t
u
v
w
列挙値
a
b
c
d
e
f
g
h
i
k
l
m
n
q
r
s
t
u
v
w
クラス
クラス一覧
クラス索引
クラス階層
クラスメンバ
全て
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
関数
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
~
変数
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
型定義
列挙型
列挙値
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
u
w
関連関数
a
c
e
i
l
p
s
t
ファイル
ファイル一覧
各種例
•
全て
クラス
名前空間
ファイル
関数
変数
型定義
列挙型
列挙値
フレンド
グループ
ページ
opencv2
core
detail
exception_ptr.hpp
1
// This file is part of OpenCV project.
2
// It is subject to the license terms in the LICENSE file found in the top-level directory
3
// of this distribution and at http://opencv.org/license.html.
4
5
#ifndef OPENCV_CORE_DETAILS_EXCEPTION_PTR_H
6
#define OPENCV_CORE_DETAILS_EXCEPTION_PTR_H
7
8
#ifndef CV__EXCEPTION_PTR
9
# if defined(__ANDROID__) && defined(ATOMIC_INT_LOCK_FREE) && ATOMIC_INT_LOCK_FREE < 2
10
# define CV__EXCEPTION_PTR 0
// Not supported, details: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58938
11
# elif defined(CV_CXX11)
12
# define CV__EXCEPTION_PTR 1
13
# elif defined(_MSC_VER)
14
# define CV__EXCEPTION_PTR (_MSC_VER >= 1600)
15
# elif defined(__clang__)
16
# define CV__EXCEPTION_PTR 0
// C++11 only (see above)
17
# elif defined(__GNUC__) && defined(__GXX_EXPERIMENTAL_CXX0X__)
18
# define CV__EXCEPTION_PTR (__GXX_EXPERIMENTAL_CXX0X__ > 0)
19
# endif
20
#endif
21
#ifndef CV__EXCEPTION_PTR
22
# define CV__EXCEPTION_PTR 0
23
#elif CV__EXCEPTION_PTR
24
# include <exception>
// std::exception_ptr
25
#endif
26
27
#endif
// OPENCV_CORE_DETAILS_EXCEPTION_PTR_H
構築:
1.9.2