www.pudn.com > 用形态学方法提取骨架线.rar > Shape.cpp
// Shape.cpp: implementation of the CShape class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "log.h"
#include "Shape.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CShape::CShape()
{
}
CShape::~CShape()
{
}
void CShape::SFS(BYTE *pBuffer, int nWidth, int nHeight, int N)
{
}
POINT CShape::GetPQ(POINT prevPQ, int x, int y)
{
POINT pt;
return pt;
}