質問編集履歴
2
エラーメッセージを追加しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,9 +24,19 @@
|
|
24
24
|
|
25
25
|
pointer-to-function 型に対する適切な operator() または変換関数のないクラス型のオブジェクトの呼び出しです 55行目
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
→→→rs2::frame depth_vis = color_map(aligned_frames.get_depth_frame()); //55行目
|
27
|
+
→→→ rs2::frame depth_vis = color_map(aligned_frames.get_depth_frame()); //55行目
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
'im_d_vis'定義されていない識別子です 62行目
|
32
|
+
|
33
|
+
→→→ auto im_d_vis = frame_to_mat(depth_vis); //可視化用の距離画像
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
'im_d'定義されていない識別子です 71行目
|
38
|
+
|
39
|
+
→→→ sprintf( name_c,"image/image%05d.png", cnt );
|
30
40
|
|
31
41
|
```
|
32
42
|
|
1
発生している問題・エラーメッセージの欄にエラーが出ているコード、該当のソースコードの55行目にコメントを追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,7 +24,9 @@
|
|
24
24
|
|
25
25
|
pointer-to-function 型に対する適切な operator() または変換関数のないクラス型のオブジェクトの呼び出しです 55行目
|
26
26
|
|
27
|
+
|
28
|
+
|
27
|
-
|
29
|
+
→→→rs2::frame depth_vis = color_map(aligned_frames.get_depth_frame()); //55行目
|
28
30
|
|
29
31
|
```
|
30
32
|
|
@@ -132,7 +134,7 @@
|
|
132
134
|
|
133
135
|
auto aligned_frames = align.process(data); // RGB画像に対してDepth画像を位置合わせ
|
134
136
|
|
135
|
-
rs2::frame depth_vis = color_map(aligned_frames.get_depth_frame());
|
137
|
+
rs2::frame depth_vis = color_map(aligned_frames.get_depth_frame()); //←←←この行でエラーが出ています
|
136
138
|
|
137
139
|
rs2::frame depth = aligned_frames.get_depth_frame();
|
138
140
|
|