diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kmean.py | 6 | ||||
-rw-r--r-- | lib/rerank.py | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lib/kmean.py b/lib/kmean.py index 64ab166..01224e0 100644 --- a/lib/kmean.py +++ b/lib/kmean.py @@ -1,3 +1,9 @@ +#!/usr/bin/env python +# Author: Vasil Zlatanov, Nunzio Pucci +# EE4 Pattern Recognition coursework +# +# usage: kmean.py + from logging import debug import numpy as np from sklearn.cluster import KMeans diff --git a/lib/rerank.py b/lib/rerank.py index 6fb5b7b..fc9f020 100644 --- a/lib/rerank.py +++ b/lib/rerank.py @@ -1,3 +1,5 @@ +#https://github.com/zhunzhong07/person-re-ranking/tree/master/CUHK03-NP + from scipy.spatial.distance import cdist import numpy as np from logging import debug |