質問編集履歴
5
ソースコード
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,7 +10,81 @@
|
|
10
10
|
|
11
11
|
mainのコード
|
12
12
|
|
13
|
+
```main
|
13
14
|
|
15
|
+
#include <iostream>
|
16
|
+
|
17
|
+
#include <stdio.h>
|
18
|
+
|
19
|
+
#include <opencv2/opencv.hpp>
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
int main() {
|
24
|
+
|
25
|
+
cv::Mat img = cv::imread("sample.jpg");
|
26
|
+
|
27
|
+
if(img.empty()) {
|
28
|
+
|
29
|
+
printf("aa");
|
30
|
+
|
31
|
+
return -1;
|
32
|
+
|
33
|
+
}
|
34
|
+
|
35
|
+
cv::namedWindow("test", cv::WINDOW_AUTOSIZE);
|
36
|
+
|
37
|
+
cv::imshow("test", img);
|
38
|
+
|
39
|
+
cv::waitKey(0);
|
40
|
+
|
41
|
+
cv::destroyWindow("test");
|
42
|
+
|
43
|
+
return 0;
|
44
|
+
|
45
|
+
}
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
```codeRunner
|
52
|
+
|
53
|
+
{
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
"code-runner.runInTerminal": true,
|
58
|
+
|
59
|
+
"code-runner.saveFileBeforeRun": true,
|
60
|
+
|
61
|
+
"C_Cpp.default.cppStandard": "c++17",
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
"clang.executable": "clang++",
|
66
|
+
|
67
|
+
"clang.cxxflags": [
|
68
|
+
|
69
|
+
"-std=c++14"
|
70
|
+
|
71
|
+
],
|
72
|
+
|
73
|
+
"clang.cflags": [
|
74
|
+
|
75
|
+
"c11"
|
76
|
+
|
77
|
+
],
|
78
|
+
|
79
|
+
"cmake.configureOnOpen": true,
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
}
|
84
|
+
|
85
|
+
```
|
86
|
+
|
87
|
+
main
|
14
88
|
|
15
89
|
![イメージ説明](442a8fbf319046d0f6963f72651ee374.png)
|
16
90
|
|
4
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,7 +30,7 @@
|
|
30
30
|
|
31
31
|
### 試したこと
|
32
32
|
|
33
|
-
ターミナルでは実行ができたため、
|
33
|
+
ターミナルでは実行ができたため、Code Runnerが原因じゃないかなと思っています。もし、それ以外の箇所で原因がある場合についても教えていただきたいです。
|
34
34
|
|
35
35
|
|
36
36
|
|
3
文字の付け足し
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,7 +36,7 @@
|
|
36
36
|
|
37
37
|
### 補足情報(FW/ツールのバージョンなど)
|
38
38
|
|
39
|
-
ちなみにC++を使用しています。
|
39
|
+
ちなみにC++を使用しています。macでvisual studio codeを動かしています。
|
40
40
|
|
41
41
|
|
42
42
|
|
2
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
![イメージ説明](5026fb75f2c6c8ea63aaa05931da9bbb.png)
|
20
20
|
|
21
|
-
Runner
|
21
|
+
Code Runner でコンパイルした際のterminal
|
22
22
|
|
23
23
|
![イメージ説明](78ff7a619a37b486b184d9032313c1ad.png)
|
24
24
|
|
1
写真を改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
Runner Codeでコンパイルした際のterminal
|
22
22
|
|
23
|
-
![イメージ説明](
|
23
|
+
![イメージ説明](78ff7a619a37b486b184d9032313c1ad.png)
|
24
24
|
|
25
25
|
|
26
26
|
|