質問編集履歴

5

2020/07/15 02:30

投稿

water28
water28

スコア5

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  c++で顔を検出して人数をカウントしたいです。
4
4
 
5
- 顔を検出するプログラムは以下ようにしました。
5
+ 顔を検出するプログラムはopencv公式ホームページのものを参考にしました。
6
6
 
7
7
  このプログラムを使って検出数を出したいのですがどうすればいいですか?
8
8
 

4

2020/07/15 02:30

投稿

water28
water28

スコア5

test CHANGED
File without changes
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  顔検出が丸く出るのでサークルのところを中心に見ています。
16
16
 
17
-
17
+ 例えばサークルの座標を検出数分表示しようと思ったのですができませんでした。可能でしょうか?
18
18
 
19
19
  どのように考えれば良いのでしょうか?
20
20
 

3

2020/07/15 01:37

投稿

water28
water28

スコア5

test CHANGED
File without changes
test CHANGED
File without changes

2

2020/07/15 00:31

投稿

water28
water28

スコア5

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,14 @@
10
10
 
11
11
 
12
12
 
13
+ さまざまな変数をprintf で表示して調べてみましたがどうしてもできません。
14
+
15
+ 顔検出が丸く出るのでサークルのところを中心に見ています。
16
+
17
+
18
+
19
+ どのように考えれば良いのでしょうか?
20
+
13
21
 
14
22
 
15
23
  ```#include "opencv2/objdetect.hpp"#include "opencv2/highgui.hpp"#include "opencv2/imgproc.hpp"#include "opencv2/videoio.hpp"#include <iostream>using namespace std;

1

2020/07/15 00:31

投稿

water28
water28

スコア5

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,9 @@
10
10
 
11
11
 
12
12
 
13
+
14
+
13
- #include "opencv2/objdetect.hpp"#include "opencv2/highgui.hpp"#include "opencv2/imgproc.hpp"#include "opencv2/videoio.hpp"#include <iostream>using namespace std;
15
+ ```#include "opencv2/objdetect.hpp"#include "opencv2/highgui.hpp"#include "opencv2/imgproc.hpp"#include "opencv2/videoio.hpp"#include <iostream>using namespace std;
14
16
 
15
17
  using namespace cv;
16
18
 
@@ -203,3 +205,7 @@
203
205
  imshow("Capture - Face detection", frame);
204
206
 
205
207
  }
208
+
209
+
210
+
211
+ ```