質問編集履歴

3

プログラムの削除

2016/11/05 06:20

投稿

culuculu
culuculu

スコア52

test CHANGED
File without changes
test CHANGED
@@ -20,41 +20,7 @@
20
20
 
21
21
  心当たりのある方はご教授願います。
22
22
 
23
- ```.cpp
24
23
 
25
- void VideoPicture(cv::Mat VideoImg, cv::Mat BlackImg, int tx, int ty)
26
-
27
- {
28
-
29
- VideoPicture(VideoImg, BlackImg, tx, ty);
30
-
31
- }
32
-
33
-
34
-
35
- cv::Mat FacePicture = cv::imread("../image/video_capture.png");
36
-
37
- cv::Mat BlackImg(cv::Size(1920, 1080), CV_8UC3);
38
-
39
-
40
-
41
- int main()
42
-
43
- {
44
-
45
- VideoPicture(BlackImg, FacePicture, 0, 0);
46
-
47
- cv::namedWindow("image_superimpose");
48
-
49
- cv::imshow("image_superimpose", BlackImg);
50
-
51
- cv::waitKey(10000);
52
-
53
- }
54
-
55
-
56
-
57
- ```
58
24
 
59
25
 
60
26
 

2

プログラムの追加

2016/11/05 06:20

投稿

culuculu
culuculu

スコア52

test CHANGED
File without changes
test CHANGED
@@ -20,6 +20,42 @@
20
20
 
21
21
  心当たりのある方はご教授願います。
22
22
 
23
+ ```.cpp
24
+
25
+ void VideoPicture(cv::Mat VideoImg, cv::Mat BlackImg, int tx, int ty)
26
+
27
+ {
28
+
29
+ VideoPicture(VideoImg, BlackImg, tx, ty);
30
+
31
+ }
32
+
33
+
34
+
35
+ cv::Mat FacePicture = cv::imread("../image/video_capture.png");
36
+
37
+ cv::Mat BlackImg(cv::Size(1920, 1080), CV_8UC3);
38
+
39
+
40
+
41
+ int main()
42
+
43
+ {
44
+
45
+ VideoPicture(BlackImg, FacePicture, 0, 0);
46
+
47
+ cv::namedWindow("image_superimpose");
48
+
49
+ cv::imshow("image_superimpose", BlackImg);
50
+
51
+ cv::waitKey(10000);
52
+
53
+ }
54
+
55
+
56
+
57
+ ```
58
+
23
59
 
24
60
 
25
61
  ------------

1

文章の追加

2016/11/04 07:02

投稿

culuculu
culuculu

スコア52

test CHANGED
File without changes
test CHANGED
@@ -2,15 +2,19 @@
2
2
 
3
3
  ビルドはできたのですが、デバッグができません。
4
4
 
5
- 警告みたいなものが出てきて、「初回例外が0x032FBFCA(opencv_core310.dll)で発生しました(プロジェクト名.exe 内):0xC0000005:場所0x00000011の読み取り中にアクセス違反が発生しました。
5
+ デバッグ開始をしてみると警告みたいなものが出てきて、「初回例外が0x032FBFCA(opencv_core310.dll)で発生しました(プロジェクト名.exe 内):0xC0000005:場所0x00000011の読み取り中にアクセス違反が発生しました。
6
6
 
7
7
  この例外のハンドラーがある場合は、プログラムを安全に続行できます。」
8
8
 
9
9
  と表示されます。
10
10
 
11
+ デバッグなしで開始をするとプロジェクト名.exeは動作を停止しました。
12
+
13
+ と表示されます。
11
14
 
12
15
 
16
+
13
- このエラーの原因はopencv_core310.dllだと考えていますが、パス指定もうまくできているので何がいけないのかわかりません。
17
+ このエラーの原因はopencv_core310.dllかプロジェクト名.exeだと考えていますが、ライブラリのパス指定もうまくできているのでおそらくプロジェクト名.exeだと思っていますが何がいけないのかわかりません。
14
18
 
15
19
 
16
20