質問編集履歴

5

ソースコード

2021/11/27 02:10

投稿

Naruaki
Naruaki

スコア2

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

誤字

2021/11/27 02:10

投稿

Naruaki
Naruaki

スコア2

test CHANGED
File without changes
test CHANGED
@@ -30,7 +30,7 @@
30
30
 
31
31
  ### 試したこと
32
32
 
33
- ターミナルでは実行ができたため、runner codeが原因じゃないかなと思っています。もし、それ以外の箇所で原因がある場合についても教えていただきたいです。
33
+ ターミナルでは実行ができたため、Code Runnerが原因じゃないかなと思っています。もし、それ以外の箇所で原因がある場合についても教えていただきたいです。
34
34
 
35
35
 
36
36
 

3

文字の付け足し

2021/11/27 02:01

投稿

Naruaki
Naruaki

スコア2

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

誤字

2021/11/27 01:59

投稿

Naruaki
Naruaki

スコア2

test CHANGED
File without changes
test CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  ![イメージ説明](5026fb75f2c6c8ea63aaa05931da9bbb.png)
20
20
 
21
- Runner Codeでコンパイルした際のterminal
21
+ Code Runner でコンパイルした際のterminal
22
22
 
23
23
  ![イメージ説明](78ff7a619a37b486b184d9032313c1ad.png)
24
24
 

1

写真を改善

2021/11/27 01:58

投稿

Naruaki
Naruaki

スコア2

test CHANGED
File without changes
test CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  Runner Codeでコンパイルした際のterminal
22
22
 
23
- ![イメージ説明](36553cab74e0ec0fa5bcd74c37786fa9.png)
23
+ ![イメージ説明](78ff7a619a37b486b184d9032313c1ad.png)
24
24
 
25
25
 
26
26