質問編集履歴
3
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,44 +1,50 @@
|
|
1
|
-
###実装コード
|
2
|
-
|
3
|
-
|
1
|
+
位置測定が実測と全く合わないです。
|
2
|
+
|
4
|
-
|
3
|
+
事前に別のコードからカメラキャリブレーションを行った前提のこーどです。
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
```
|
8
|
+
|
9
|
+
|
10
|
+
|
5
|
-
|
11
|
+
#define _CRT_SECURE_NO_WARNINGS
|
6
|
-
|
12
|
+
|
7
|
-
|
13
|
+
#include <opencv2/opencv.hpp>
|
8
|
-
|
14
|
+
|
9
|
-
|
15
|
+
#include <iostream>
|
10
|
-
|
16
|
+
|
11
|
-
|
17
|
+
#include <string>
|
12
|
-
|
18
|
+
|
13
|
-
|
19
|
+
#include <sstream>
|
14
|
-
|
20
|
+
|
15
|
-
|
21
|
+
#include <iomanip>
|
16
|
-
|
22
|
+
|
17
|
-
|
23
|
+
#include <opencv2/imgcodecs.hpp>
|
18
|
-
|
24
|
+
|
19
|
-
|
25
|
+
#include <vector>
|
20
|
-
|
26
|
+
|
21
|
-
|
27
|
+
#include <opencv2/imgproc/imgproc.hpp>
|
22
|
-
|
28
|
+
|
23
|
-
|
29
|
+
#.include <random>
|
24
|
-
|
30
|
+
|
25
|
-
|
31
|
+
#include <strstream>
|
26
32
|
|
27
33
|
|
28
34
|
|
29
35
|
//抽出する画像の輝度値の範囲を指定
|
30
36
|
|
31
|
-
|
37
|
+
#define B_MAX 100
|
32
|
-
|
38
|
+
|
33
|
-
|
39
|
+
#define B_MIN 0
|
34
|
-
|
40
|
+
|
35
|
-
|
41
|
+
#define G_MAX 100
|
36
|
-
|
42
|
+
|
37
|
-
|
43
|
+
#define G_MIN 0
|
38
|
-
|
44
|
+
|
39
|
-
|
45
|
+
#define R_MAX 255
|
40
|
-
|
46
|
+
|
41
|
-
|
47
|
+
#define R_MIN 100
|
42
48
|
|
43
49
|
|
44
50
|
|
@@ -674,4 +680,6 @@
|
|
674
680
|
|
675
681
|
return 0;
|
676
682
|
|
683
|
+
}
|
684
|
+
|
677
|
-
|
685
|
+
```
|
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
###実装コード
|
2
2
|
|
3
|
-
<code>>
|
3
|
+
<code>> "
|
4
4
|
|
5
5
|
.#define _CRT_SECURE_NO_WARNINGS
|
6
6
|
|
@@ -674,4 +674,4 @@
|
|
674
674
|
|
675
675
|
return 0;
|
676
676
|
|
677
|
-
}
|
677
|
+
}"
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
###実装コード
|
2
2
|
|
3
|
-
|
3
|
+
<code>> 引用テキスト
|
4
4
|
|
5
5
|
.#define _CRT_SECURE_NO_WARNINGS
|
6
6
|
|
@@ -674,4 +674,4 @@
|
|
674
674
|
|
675
675
|
return 0;
|
676
676
|
|
677
|
-
}
|
677
|
+
}> 引用テキスト
|