RenzKa/sign-segmentation

Question about sliding window

Closed this issue · 1 comments

Dear authors,

  1. Do you use sliding window over the input video in both algorithms ? (ICASSP and CVPRW)
  2. Since the input video size is reduced to N-15 frames from N how do you extract per frame labels ( 0 or 1 ) ?

Thank you in advance

Hi,

  1. Yes, for both algorithms we use the I3D network with sliding window over the input video to extract features (windows size: 16 frames, stride: 1 frame)
  2. Because of the window size of 16 frames for the feature extraction we get a reduced number (N-15) of feature vectors. We assign the feature vector always to the middle frame of the window. Therefore you don't get features for the first and last few frames and also no boundary predictions. In case you need them you can extend the video by half of the window size on both sides.