资源简介
这是一个用VC++写的一些边缘检测和轮廓提取的代码,读取的是八位的灰度图像,有需要的可以参考
代码片段和文件信息
// ChildFrm.cpp : implementation of the CChildframe class
//
#include “stdafx.h“
#include “EdgeContour.h“
#include “ChildFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChildframe
IMPLEMENT_DYNCREATE(CChildframe CMDIChildWnd)
BEGIN_MESSAGE_MAP(CChildframe CMDIChildWnd)
//{{AFX_MSG_MAP(CChildframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChildframe construction/destruction
CChildframe::CChildframe()
{
// TODO: add member initialization code here
}
CChildframe::~CChildframe()
{
}
BOOL CChildframe::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CChildframe diagnostics
#ifdef _DEBUG
void CChildframe::AssertValid() const
{
CMDIChildWnd::AssertValid();
}
void CChildframe::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CChildframe message handlers
void CChildframe::Activateframe(int nCmdShow)
{
// TODO: Add your specialized code here and/or call the base class
nCmdShow = SW_SHOWMAXIMIZED;
CMDIChildWnd::Activateframe(nCmdShow);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1738 2006-05-29 17:09 EdgeContour\ChildFrm.cpp
文件 1456 2006-05-29 17:09 EdgeContour\ChildFrm.h
文件 17390 2011-10-23 01:34 EdgeContour\Debug\ChildFrm.obj
文件 0 2011-10-23 01:34 EdgeContour\Debug\ChildFrm.sbr
文件 118987 2011-10-23 02:10 EdgeContour\Debug\DibImage.obj
文件 0 2011-10-23 02:10 EdgeContour\Debug\DibImage.sbr
文件 3728384 2011-10-23 02:10 EdgeContour\Debug\EdgeContour.bsc
文件 188520 2011-10-23 02:10 EdgeContour\Debug\EdgeContour.exe
文件 457436 2011-10-23 02:10 EdgeContour\Debug\EdgeContour.ilk
----------- --------- ---------- ----- ----
4513911 9
- 上一篇:伪码测距算法研究与仿真
- 下一篇:毕业论文与设计仓库管理系统
相关资源
- 使用Visual Studio+OpenCV进行的Susan算子边
- 二型模糊彩色图像的边缘检测方法研
- 手势检测基于OpenCV
- 实现人体步态检测和基于步态的人体
- zw_边缘检测特征提取.zip
- 图像边缘检测,提取及轮廓跟踪源码
- 国内首篇利用freetype的跨平台truetype字
- 建筑物轮廓提取
- FPGA实现sobel边缘检测
- VERILOG-边缘检测
- 亚像素边缘检测
- 相位一致性轮廓提取
- 平面离散点集外轮廓提取
- 很好用的SAR图像机场跑道边缘检测方
- 边缘检测算法比较以及统计细胞数目
- 基于FPGA的图像处理方法
- 亚像素级别的边缘检测和获取290028
- Robert边缘检测
- 13篇关于图形边缘检测的英文文献
- 图像处理 大作业,,图像边缘检测
- stm32实现二值化、中值滤波、轮廓提取
- 边缘检测的verilog代码
- 亚像素级别的边缘检测和获取
- 数字图像中边缘检测算法研究
- vs2010+opencv 图像处理,边缘检测,可设
- BSD500数据集
- CVPR2019论文BDCN的Pytorch代码
- 第十节 图像处理之边缘检测
- 图像的边缘检测本科论文
- 《图像分割--canny算子》超详细PPT,适
评论
共有 条评论