回答編集履歴
1
引用の変更
answer
CHANGED
@@ -1,26 +1,26 @@
|
|
1
1
|
どうぞ。[OpenCV: OpenCV modules](https://docs.opencv.org/3.4.7/index.html)
|
2
2
|
右上の検索窓から関数やクラスを探すと早いです。
|
3
3
|
|
4
|
-
例えば
|
4
|
+
例えばthreshold関数については、次のように併記されています。
|
5
5
|
|
6
|
-
> ###
|
6
|
+
> ###threshold()
|
7
|
+
|
7
8
|
> ```
|
8
|
-
|
9
|
+
double cv::threshold(InputArray src,
|
9
|
-
|
10
|
+
OutputArray dst,
|
11
|
+
double thresh,
|
10
|
-
|
12
|
+
double maxval,
|
11
|
-
double beta = 0,
|
12
|
-
int norm_type = NORM_L2,
|
13
|
-
|
13
|
+
int type
|
14
|
-
InputArray mask = noArray()
|
15
|
-
|
14
|
+
)
|
16
15
|
> ```
|
17
16
|
|
18
17
|
> **Python:**
|
18
|
+
|
19
19
|
> ```
|
20
|
-
dst = cv.
|
20
|
+
retval, dst = cv.threshold( src, thresh, maxval, type[, dst] )
|
21
21
|
> ```
|
22
22
|
|
23
|
-
**引用元:** [OpenCV:
|
23
|
+
**引用元:** [OpenCV: Miscellaneous Image Transformations - threshold](https://docs.opencv.org/3.4.7/d7/d1b/group__imgproc__misc.html#gae8a4a146d1ca78c626a53577199e9c57)
|
24
24
|
|
25
25
|
> そもそもOpenCV(C++)のリファレンスは参考になるのでしょうか。
|
26
26
|
|