Information

processed

Basic shortcuts

Ctrl + SSave subtitles
Ctrl + click
Double click
Edit highlighted caption
TabEdit next caption
Shift + TabEdit previous caption
EscLeave edit mode
Ctrl + SpacePlay / pause video
Ctrl + HomePlay selected caption
Ctrl + EnterSplit caption at cursor position
at current time

Advanced shortcuts

Ctrl + InsertAdd new caption
Ctrl + DeleteDelete selected caption
Ctrl + IEdit currently played segment
Shift + EnterNew line when editing
Ctrl + LeftPlay from -1s
Ctrl + RightPlay from +1s
Alt + LeftShift caption start time -0.1s
Alt + RightShift caption start time +0.1s
Alt + DownShift caption end time -0.1s
Alt + UpShift caption end time +0.1s

Annotation shortcuts

Ctrl + 1Hesitation
Ctrl + 2Speaker noise
Ctrl + 3Background noise
Ctrl + 4Unknown word
Ctrl + 5Wrong segment
Ctrl + 6Crosstalk segment
You are in the read-only mode. Close
00:00.0
00:02.0
The video scenes are carefully picked that can show the effect of image processing techniques to the full.
00:02.1
00:04.0
Here is the grayscale switches that are required.
00:04.1
00:07.5
This is the gaussian blur, increasing the filter kernel will take adjacent pixel gray values into account, the bigger kernel you have, the larger this range of "merging" will be.
00:07.6
00:12.0
Bilateral filter can blur the images while preserving the boundary features. Especially for objects like comb,tree stems, textures on the surfaces were blurred while edges were preserved.
00:12.1
00:16.0
To grab the orange, color thresholding was used to pick out designated colors.
00:16.1
00:20.0
Improvement was made by applying morphological open operation and we show it in cyan.
00:20.1
00:21.7
For Sobel,we first use CV_16U unsigned, thus only two gradient-dropping edges will be detected (right, bottom)
00:21.8
00:23.4
Then we change to CV_16S signed, then all edges will be detected (up,bottom,left,right), we can also increase delta value to make the edge easier to be detected.
00:23.5
00:25.0
Lastly, we can increase the scale of sobel to make gradient drop/climb even more drastic to address the presence of boundaries.
00:25.1
00:26.6
Here we first use small threshold values for only bottlecap, with three different setups, first is with a resolution scaling rate 1 and circle distance one-fourth of the image height. We can see bottlecap got captured correctly and without redundant circles.
00:26.7
00:28.3
Second, we use a very low circle center distances, clearly a lot of redundant circles roughly at same place were detected.
00:28.4
00:29.6
Then we roll back circle distances and give scaling factor 10, which scales video frames to one-tenth the original resolution. Obviously with a lower resolution, more false circles are detected.
00:29.7
00:31.0
Here we change the threshold to higher values to capture orange and avoid bottlecap. First, we use a low param2 value which gives us multiple circles, lower param2 value means loose restriction.
00:31.1
00:32.7
Then we raise param2 to a more reasonable value, which gives us perfect orange detection.
00:32.8
00:34.0
Lastly, we switch between high param1 and normal param1, when increasing param1, less circles are detected, which means a more strict requirement for circle detection.
00:34.1
00:36.0
Now we draw the attention of audience with flashy/colorful bounding box to our target, the bottlecap.
00:36.1
00:39.0