• 大小: 3.1MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-30
  • 语言: C/C++
  • 标签: canny  边缘检测  

资源简介

在VC6.0下编译通过的 采用mfc可视化的的界面 效果不错

资源截图

代码片段和文件信息

// cdib.cpp

#include “stdafx.h“
#include “math.h“
#include “process.h“

#include “cdib.h“
#include “GlobalApi.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

// 声明串行化过程
IMPLEMENT_SERIAL(CDib Cobject 0);


/*************************************************************************
 *
 * \函数名称:
 *   CDib()
 *
 * \输入参数:
 * 无
 *
 * \返回值:
 *   无
 *
 * \说明:
 *   构造函数
 *
 ************************************************************************
 */
CDib::CDib()
{
m_hFile      = NULL;
m_hBitmap    = NULL;
m_hPalette   = NULL;
m_nBmihAlloc = m_nImageAlloc = noAlloc;
Empty();
}


/*************************************************************************
 *
 * \函数名称:
 *   CDib()
 *
 * \输入参数:
 * CSize size - 位图尺寸
 * int nBitCount - 象素位数
 *
 * \返回值:
 *   无
 *
 * \说明:
 *   构造函数
 *   根据给定的位图尺寸和象素位数构造CDib对象,并对信息头和调色板分配内存
 *   但并没有给位图数据分配内存
 *
 ************************************************************************
 */
CDib::CDib(CSize size int nBitCount)
{
m_hFile      = NULL;
m_hBitmap    = NULL;
m_hPalette   = NULL;
m_nBmihAlloc = m_nImageAlloc = noAlloc;
Empty();

// 根据象素位数计算调色板尺寸
ComputePaletteSize(nBitCount);

// 分配DIB信息头和调色板的内存
m_lpBMIH = (LPBITMAPINFOHEADER) new 
char[sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * m_nColorTableEntries];

// 设置信息头内存分配状态
m_nBmihAlloc = crtAlloc;

// 设置信息头中的信息
m_lpBMIH->biSize = sizeof(BITMAPINFOHEADER);
m_lpBMIH->biWidth = size.cx;
m_lpBMIH->biHeight = size.cy;
m_lpBMIH->biPlanes = 1;
m_lpBMIH->biBitCount = nBitCount;
m_lpBMIH->biCompression = BI_RGB;
m_lpBMIH->biSizeImage = 0;
m_lpBMIH->biXPelsPerMeter = 0;
m_lpBMIH->biYPelsPerMeter = 0;
m_lpBMIH->biClrUsed = m_nColorTableEntries;
m_lpBMIH->biClrImportant= m_nColorTableEntries;

// 计算图象数据内存的大小,并设置此DIB的调色板的指针
ComputeMetrics();

// 将此DIB的调色板初始化为0
memset(m_lpvColorTable 0 sizeof(RGBQUAD) * m_nColorTableEntries);

// 暂时不分配图象数据内存
m_lpImage = NULL; 
}


/*************************************************************************
 *
 * \函数名称:
 *   ~CDib()
 *
 * \输入参数:
 * 无
 *
 * \返回值:
 *   无
 *
 * \说明:
 *   析构函数,并释放所有分配的DIB内存
 *
 ************************************************************************
 */
CDib::~CDib()
{
Empty();
}


/*************************************************************************
 *
 * \函数名称:
 *   GetDimensions()
 *
 * \输入参数:
 *   无
 *
 * \返回值:
 *   CSize - DIB的宽度和高度
 *
 * \说明:
 *   返回以象素表示的DIB的宽度和高度
 *
 ************************************************************************
 */
CSize CDib::GetDimensions()
{
if(m_lpBMIH == NULL) return CSize(0 0);
return CSize((int) m_lpBMIH->biWidth (int) m_lpBMIH->biHeight);
}


/*************************************************************************
 *
 * \函数名称:
 *   AttachMapFile()
 *
 * \输入参数:
 *   const char* strPathname - 映射文件的路径名
 *   BOOL bShare -

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      38635  1995-09-27 21:29  canny边缘检测\源代码\cdib.cpp

     文件       3645  1995-08-03 13:28  canny边缘检测\源代码\cdib.h

     文件       1542  1995-08-03 13:28  canny边缘检测\源代码\ChildFrm.cpp

     文件       1397  1995-08-03 13:28  canny边缘检测\源代码\ChildFrm.h

     文件      65095  1995-09-27 16:03  canny边缘检测\源代码\ColorTable.h

     文件      65754  2010-04-26 10:29  canny边缘检测\源代码\Debug\cdib.obj

     文件     265449  2010-04-26 10:29  canny边缘检测\源代码\Debug\cdib.sbr

     文件      16477  2010-04-26 10:29  canny边缘检测\源代码\Debug\ChildFrm.obj

     文件       6980  2010-04-26 10:29  canny边缘检测\源代码\Debug\ChildFrm.sbr

     文件      23624  2010-04-26 10:29  canny边缘检测\源代码\Debug\DIBPrcs.obj

     文件       6851  2010-04-26 10:29  canny边缘检测\源代码\Debug\DIBPrcs.sbr

     文件     172129  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessing.exe

     文件     463836  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessing.ilk

     文件      28523  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessing.obj

     文件    6878572  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessing.pch

     文件     451584  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessing.pdb

     文件      13592  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessing.res

     文件      14369  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessing.sbr

     文件      37468  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessingDoc.obj

     文件     263368  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessingDoc.sbr

     文件      33301  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessingView.obj

     文件     265720  2010-04-26 10:29  canny边缘检测\源代码\Debug\ImageProcessingView.sbr

     文件      19242  2010-04-26 10:29  canny边缘检测\源代码\Debug\MainFrm.obj

     文件       7424  2010-04-26 10:29  canny边缘检测\源代码\Debug\MainFrm.sbr

     文件      42101  2010-04-26 10:29  canny边缘检测\源代码\Debug\SegApi.obj

     文件     265018  2010-04-26 10:29  canny边缘检测\源代码\Debug\SegApi.sbr

     文件     105905  2010-04-26 10:29  canny边缘检测\源代码\Debug\StdAfx.obj

     文件    1376633  2010-04-26 10:29  canny边缘检测\源代码\Debug\StdAfx.sbr

     文件     279552  2010-05-28 10:45  canny边缘检测\源代码\Debug\vc60.idb

     文件     454656  2010-04-26 10:29  canny边缘检测\源代码\Debug\vc60.pdb

............此处省略36个文件信息

评论

共有 条评论