infuanfu / study-0

Study on possible palette to genre correlations in anime trailers
1 stars 0 forks source link

Pairing consecutive frames for later comparison #4

Open hdznrrd opened 10 years ago

hdznrrd commented 10 years ago

After converting a video into individual frames, every frame has to be compared with its follower

hdznrrd commented 10 years ago
find frames/ | sort > framelist
len=$(wc -l framelist)

head -n $(echo $len - 1|bc) framelist > first
tail -n $(echo $len - 1|bc) framelist > second
paste first second >pairs
rm first second