Skip to content

Commit

Permalink
add train list
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhongdao committed Oct 10, 2019
1 parent bcabd3b commit 58725e1
Show file tree
Hide file tree
Showing 16 changed files with 126,506 additions and 28 deletions.
3 changes: 2 additions & 1 deletion .gitignore
@@ -1,6 +1,7 @@
results/
weights/
data/
data/mot17
data/mot19
tmp/
external/
=======
Expand Down
7 changes: 4 additions & 3 deletions cfg/ccmcpe.json
Expand Up @@ -14,9 +14,10 @@
"cuhksysu":"./data/cuhksysu.val",
"prw":"./data/prw.val"
},

"test":
{
"mot19.train":"./data/mot19.train"
}
"caltech+citypersons":"./data/caltech.val",
"citypersons":"./data/citypersons.val"
},
"names": "./data/mot.names"
}
22 changes: 0 additions & 22 deletions cfg/ccmcpe.json.legacy

This file was deleted.

26,738 changes: 26,738 additions & 0 deletions data/caltech.train

Large diffs are not rendered by default.

29,912 changes: 29,912 additions & 0 deletions data/caltech.val

Large diffs are not rendered by default.

2,500 changes: 2,500 additions & 0 deletions data/citypersons.train

Large diffs are not rendered by default.

441 changes: 441 additions & 0 deletions data/citypersons.val

Large diffs are not rendered by default.

11,206 changes: 11,206 additions & 0 deletions data/cuhksysu.train

Large diffs are not rendered by default.

2,000 changes: 2,000 additions & 0 deletions data/cuhksysu.val

Large diffs are not rendered by default.

2,056 changes: 2,056 additions & 0 deletions data/eth.train

Large diffs are not rendered by default.

5,316 changes: 5,316 additions & 0 deletions data/mot17.train

Large diffs are not rendered by default.

8,931 changes: 8,931 additions & 0 deletions data/mot19.train

Large diffs are not rendered by default.

5,701 changes: 5,701 additions & 0 deletions data/prw.train

Large diffs are not rendered by default.

2,000 changes: 2,000 additions & 0 deletions data/prw.val

Large diffs are not rendered by default.

29,697 changes: 29,697 additions & 0 deletions data/spid.train

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions extract_ped_per_frame.py
Expand Up @@ -77,8 +77,8 @@ def extract_ped_per_frame(
parser.add_argument('--nms-thres', type=float, default=0.3, help='iou threshold for non-maximum suppression')
parser.add_argument('--img-size', type=int, default=(1088, 608), help='size of each image dimension')
parser.add_argument('--print-interval', type=int, default=10, help='size of each image dimension')
parser.add_argument('--input-root', type=str, default='/home/wangzd/datasets/youtube/data/0002/frame', help='path to input frames')
parser.add_argument('--output-root', type=str, default='/home/wangzd/datasets/youtube/data/0002/ped_per_frame', help='path to output frames')
parser.add_argument('--input-root', type=str, default='/home/wangzd/datasets/youtube/data/0004/frame', help='path to input frames')
parser.add_argument('--output-root', type=str, default='/home/wangzd/datasets/youtube/data/0004/ped_per_frame', help='path to output frames')
opt = parser.parse_args()
print(opt, end='\n\n')

Expand Down

0 comments on commit 58725e1

Please sign in to comment.