Skip to content

Instantly share code, notes, and snippets.

View kiyoon's full-sized avatar

Kiyoon Kim kiyoon

View GitHub Profile
@kiyoon
kiyoon / run_frcnn.sh
Last active November 30, 2019 20:28
Chooses 20 samples from the input directory and run Faster R-CNN
#!/bin/bash
if [ $# -lt 2 ]
then
echo "usage: $0 [input_dir] [output_dir]"
echo "chooses 20 video files randomly from the input directory and run Faster R-CNN"
exit 1
fi
input_dir="$1"