123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef _TESTGMM_H
- #define _TESTGMM_H
- #include <cppunit/extensions/HelperMacros.h>
- #include "vislearning/math/cluster/GMM.h"
- class TestGMM : public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE( TestGMM );
-
- CPPUNIT_TEST(testGMMClustering);
-
- CPPUNIT_TEST(testGMMPersistent);
-
- CPPUNIT_TEST_SUITE_END();
-
- private:
-
- public:
- void setUp();
- void tearDown();
-
-
- void testGMMClustering();
-
- void testGMMPersistent();
- };
- #endif
|