Skip to content

Commit

Permalink
add readme for recognition
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffsanC committed Nov 23, 2017
1 parent 8bc4fb6 commit 1f1c3b6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions recognition/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Activity Recognition Using Kernel Cross-Correlator (KCC)

This part requires the following WARD 1.0 dataset:

https://people.eecs.berkeley.edu/~yang/software/WAR/index.html

However, you may also measure the similarity of any signals.
For example, you may use it as:

lambda = 0.1
sigma = 0.2
x = randn(10)
y = randn(10)
z = randn(10)

correlator = kcc_train(x, lambda, sigma);

similarity_xy = kcc(y, correlator);
similarity_xz = kcc(z, correlator);


0 comments on commit 1f1c3b6

Please sign in to comment.