Step detection: Difference between revisions
From University of Washington - Ubicomp Research Page
Jump to navigationJump to search
Ryan Libby (talk | contribs) No edit summary |
Ryan Libby (talk | contribs) (→Source) |
||
Line 9: | Line 9: | ||
== Source == | == Source == | ||
=== CVS checkout / export === | === CVS checkout / export === | ||
To check out the latest code: | |||
<bash>cvs -d user@bicycle.cs.washington.edu:/projects/ubicomp/uwar/CVS checkout msp_peak_detection</bash> | |||
==== CVS tags ==== | |||
We're tryign to keep our branch of msp reasonably in-sync with Intel's. That means we periodically merge in updates from the sourceforge repository maintained by Intel. | |||
<ul> | |||
<li>msp_peak_detection | |||
<li>msp_2008_02_05 | |||
<li>pre-merge-1 | |||
<li>merge-1 | |||
<li>merge-2 | |||
</ul> | |||
=== Building === | === Building === | ||
<bash>cd msp_peak_detection/src | |||
./configure # unless you're cross-compiling | |||
make | |||
cd inference | |||
make</bash> | |||
(See also cross-compile.) | (See also cross-compile.) | ||
== Old Matlab code == | == Old Matlab code == |
Revision as of 01:43, 15 April 2008
Running
Algorithm
Mills
Source
CVS checkout / export
To check out the latest code: <bash>cvs -d user@bicycle.cs.washington.edu:/projects/ubicomp/uwar/CVS checkout msp_peak_detection</bash>
CVS tags
We're tryign to keep our branch of msp reasonably in-sync with Intel's. That means we periodically merge in updates from the sourceforge repository maintained by Intel.
- msp_peak_detection
- msp_2008_02_05
- pre-merge-1
- merge-1
- merge-2
Building
<bash>cd msp_peak_detection/src ./configure # unless you're cross-compiling make cd inference make</bash> (See also cross-compile.)