回答編集履歴
1
追記
answer
CHANGED
@@ -8,4 +8,11 @@
|
|
8
8
|
> **Note**
|
9
9
|
This function should be followed by cv::waitKey function which displays the image for specified milliseconds. Otherwise, it won't display the image. For example, **waitKey(0)** will display the window infinitely until any keypress (it is suitable for image display). **waitKey(25)** will display a frame for 25 ms, after which display will be automatically closed. (If you put it in a loop to read videos, it will display the video frame-by-frame)
|
10
10
|
|
11
|
-
引用元:[OpenCV: High-level GUI - cv::imshow()](https://docs.opencv.org/3.4.2/d7/dfc/group__highgui.html#ga453d42fe4cb60e5723281a89973ee563)
|
11
|
+
引用元:[OpenCV: High-level GUI - cv::imshow()](https://docs.opencv.org/3.4.2/d7/dfc/group__highgui.html#ga453d42fe4cb60e5723281a89973ee563)
|
12
|
+
|
13
|
+
---
|
14
|
+
ちらと眺めるぶんには、怪しいのは関数TextCutの方かと思います。
|
15
|
+
本当に充分な量のデータをCutDataに押し込めているのでしょうか?
|
16
|
+
|
17
|
+
全体的にグローバル変数が多くて処理が追いづらいので、
|
18
|
+
その点も含めてベクトルの扱い方を再考した方が良いかと思います。
|