LocateTestExport.cpp 773 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #include "StdAfx.h"
  2. #include "LocateTestExport.h"
  3. #include "SmartEvaluationLogicDLL.h"
  4. #include "LocateTester.h"
  5. CLocateTestExport::CLocateTestExport(void)
  6. {
  7. tester = new CLocateTester();
  8. }
  9. CLocateTestExport::~CLocateTestExport(void)
  10. {
  11. delete tester;
  12. }
  13. bool CLocateTestExport::getTestResult( std::string &error_msg )
  14. {
  15. return tester->getTestResult(error_msg);
  16. }
  17. bool CLocateTestExport::test( const schema::SCHEMA& schema,const std::vector<std::string>& img_paths )
  18. {
  19. return tester->test(schema,img_paths);
  20. }
  21. bool CLocateTestExport::isResultOk()
  22. {
  23. return tester->isResultOk();
  24. }
  25. bool CLocateTestExport::isSameSchema( const schema::SCHEMA& schema )
  26. {
  27. return tester->isSameLocateSchema(schema);
  28. }
  29. bool CLocateTestExport::isReady()
  30. {
  31. return tester->isReady();
  32. }