Updated example to use new ekm.load(lisf) function.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403617
This commit is contained in:
Davis King 2010-05-15 16:15:16 +00:00
parent 3cbbd6b385
commit abc868779c
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ int main()
// Now reload the empirical_kernel_map but this time using only our 20 basis samples
// selected using the linearly_independent_subset_finder.
cout << "\n\nBuilding an empirical_kernel_map with " << lisf.dictionary_size() << " basis samples." << endl;
ekm.load(kern, lisf.get_dictionary());
ekm.load(lisf);
cout << "Test the empirical_kernel_map when loaded with samples from the lisf object." << endl;
test_empirical_kernel_map(samples, labels, ekm);