MatchInfo.cpp
上传用户:yli86818
上传日期:2014-07-15
资源大小:273k
文件大小:1k
源码类别:

图形图像处理

开发平台:

Visual C++

  1. // MatchInfo.cpp: implementation of the CMatchInfo class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "TestSIFT.h"
  6. #include "MatchInfo.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CMatchInfo::CMatchInfo() :
  16. m_distance(0),m_index0(-1),m_index1(-1)
  17. {
  18. }
  19. CMatchInfo::~CMatchInfo()
  20. {
  21. }