Database
aa798.txt
Associated article: Image Segmentation for Image Recognition
Tags: Database
Published source code accompanying the column by Lee Kamentsky in which he presents an algorithm that separates images into clearly-defined regions. Also see AA798.ZIP.
Algorithm Alley
by Lee Kamentsky
Listing One
void CMonochromeBitmap::BuildBlobList()
{
CLineVectorIterator clviNew,clviEnd;
AllocateLineBlock(clviNew,clviEnd);
m_pBlob.reserve(eBlobsPerBlock);
// Create two vectors of pointers to lines to hold the new line list
// and the old line list. We initialize ...


