CImage imSrc,imDest; imSrc.Load(……);//读入原始图片 imDest.Create(……)//创建新大小的图片 imSrc.StretchBlt(imDest.GetDC(),……); imDest.ReleaseDC();// imDest就是你制定尺寸的图片对象
Read more作者: Nelson
MFC 如何用CImage 改变图片尺寸?
mfc-vc++_cstring 转换为 const char *
mfc-vc++_cstring 转换为 const char * CString strFilePath; USES_CONVERSION; const char* char_file_name = T2A(strFilePath);
Read more
mfc-vc++_cstring 转换为 const char * CString strFilePath; USES_CONVERSION; const char* char_file_name = T2A(strFilePath);
Read moremfc-vc++-在picture控件中显示图片[jpg,gif,png]
mfc-vc++-在picture控件中显示图片[jpg,gif,png] 主要代码(用): void Cmfc_image_showDlg::OnBnClickedButton1() { // TODO: 在此添加控件通知处理程序代码 CImage image; //使用图片类 image.Load( _T(“test.png”) ); //装载路径下图片信息到图片类 RECT rect = { 0 }; rect.bottom = image.GetWidth(); rect.right = image.GetHeight(); CDC* pDC =GetDlgItem(
Read more
mfc-vc++-在picture控件中显示图片[jpg,gif,png] 主要代码(用): void Cmfc_image_showDlg::OnBnClickedButton1() { // TODO: 在此添加控件通知处理程序代码 CImage image; //使用图片类 image.Load( _T(“test.png”) ); //装载路径下图片信息到图片类 RECT rect = { 0 }; rect.bottom = image.GetWidth(); rect.right = image.GetHeight(); CDC* pDC =GetDlgItem(
Read moreopencv-膨胀算法cvDilate
先上定义: Dilate 使用任意结构元素膨胀图像 void cvDilate( const CvArr* src, CvArr* dst, IplConvKernel* element=NULL, int iterations=1 ); src 输入图像. dst 输出图像. element 用于膨胀的结构元素。若为 NULL, 则使用 3×3 长方形的结构元素 iterations 膨胀的次数 函数 cvDilate 对输入图像使用指定的结构元进行膨胀,该结构决定每个具有最小值象素点的邻域形状: dst=dilate(src,element): dst(x,y)=max((x’,y’) i
Read more
先上定义: Dilate 使用任意结构元素膨胀图像 void cvDilate( const CvArr* src, CvArr* dst, IplConvKernel* element=NULL, int iterations=1 ); src 输入图像. dst 输出图像. element 用于膨胀的结构元素。若为 NULL, 则使用 3×3 长方形的结构元素 iterations 膨胀的次数 函数 cvDilate 对输入图像使用指定的结构元进行膨胀,该结构决定每个具有最小值象素点的邻域形状: dst=dilate(src,element): dst(x,y)=max((x’,y’) i
Read morealiyun推荐的linux远程登录和ftp工具-xshell和xftp
准备好连接linux服务器的工具,推荐用xshell和xftp。 xshell 是一个强大的安全终端模拟软件,它支持SSH1, SSH2, 以及Microsoft Windows 平台的TELNET 协议。 下载地址:http://www.newhua.com/soft/36383.htm Xftp 是一个基于 MS windows 平台的功能强大的SFTP、FTP 文件传输软件。 下载地址:http://www.newhua.com/soft/143.htm
Read more
准备好连接linux服务器的工具,推荐用xshell和xftp。 xshell 是一个强大的安全终端模拟软件,它支持SSH1, SSH2, 以及Microsoft Windows 平台的TELNET 协议。 下载地址:http://www.newhua.com/soft/36383.htm Xftp 是一个基于 MS windows 平台的功能强大的SFTP、FTP 文件传输软件。 下载地址:http://www.newhua.com/soft/143.htm
Read more如何在vs2010中加载opencv2.4.4库-VC++
1.单击 项目 ,-〉你的工程名+属性-〉配置属性-〉VC++目录 在右侧显示的 常规中包含目录中 添加:你的opencv安装目录 \opencv2.4.4\opencv\build\include,你的opencv安装目录 \opencv2.4.4\opencv\build\include\opencv,你的opencv安装目录 \opencv2.4.4\opencv\build\include\opencv2,这三项 在库目录中添加 : 你的opencv安装目录opencv2.4.4\opencv\build\x86\vc10\lib 2在链接器-〉输入,右侧 附加依赖项 添加如下: op
Read more
1.单击 项目 ,-〉你的工程名+属性-〉配置属性-〉VC++目录 在右侧显示的 常规中包含目录中 添加:你的opencv安装目录 \opencv2.4.4\opencv\build\include,你的opencv安装目录 \opencv2.4.4\opencv\build\include\opencv,你的opencv安装目录 \opencv2.4.4\opencv\build\include\opencv2,这三项 在库目录中添加 : 你的opencv安装目录opencv2.4.4\opencv\build\x86\vc10\lib 2在链接器-〉输入,右侧 附加依赖项 添加如下: op
Read moreopencv – cvHoughCircles找圆例子
先来看opencv函数 cvHoughCircles 的说明: 函数:CvSeq *cvHoughCircles(CvArr *image,void *circle_storage,int method,double dp,double min_dist,double param1,double param2,int min_radius,int max_radius) 下边是参数说明: image:输入8bit(灰度)图像,其内容可被函数所改变 circle_storage:检测到的圆存储仓,可以是内存存储仓 (此种情况下,一个线段序列在存储仓中被创建,并且由函数返回)或者是包含圆参数的特殊
Read more
先来看opencv函数 cvHoughCircles 的说明: 函数:CvSeq *cvHoughCircles(CvArr *image,void *circle_storage,int method,double dp,double min_dist,double param1,double param2,int min_radius,int max_radius) 下边是参数说明: image:输入8bit(灰度)图像,其内容可被函数所改变 circle_storage:检测到的圆存储仓,可以是内存存储仓 (此种情况下,一个线段序列在存储仓中被创建,并且由函数返回)或者是包含圆参数的特殊
Read moreExpress 2010 for Visual Basic product key-vb 2010 express 激活码
Express 2010 for Visual Basic product key-vb 2010 express 激活码 2KQT8-HV27P-GTTV9-2WBVV-M7X96 我注册时发来的,不知道能不能大家共享 by the way ,my microsoft account is feelings***@msn.cn,pass=qi***
Read more
Express 2010 for Visual Basic product key-vb 2010 express 激活码 2KQT8-HV27P-GTTV9-2WBVV-M7X96 我注册时发来的,不知道能不能大家共享 by the way ,my microsoft account is feelings***@msn.cn,pass=qi***
Read moreopencv 之二值化图片
opencv 之二值化图片 #include “cv.h”‘ #include “cxcore.h” #include “highgui.h” #include using namespace std; /* way 1 int main () { IplImage* img = cvLoadImage(“asdf.jpg”,-1); IplImage* biimg = cvCreateImage(cvGetSize(img),img->depth,img->nChannels); CvScalar s; int sum=0; for (int i=0;iheight;i++) {
Read more
opencv 之二值化图片 #include “cv.h”‘ #include “cxcore.h” #include “highgui.h” #include using namespace std; /* way 1 int main () { IplImage* img = cvLoadImage(“asdf.jpg”,-1); IplImage* biimg = cvCreateImage(cvGetSize(img),img->depth,img->nChannels); CvScalar s; int sum=0; for (int i=0;iheight;i++) {
Read moreopencv之边缘检测
opencv之边缘检测 // 边缘检测-canddy.cpp : 定义控制台应用程序的入口点。 // #include “stdafx.h” /************************************************** * C++ Canny:Canny边缘检测 **************************************************/ /**************************************************************
Read more
opencv之边缘检测 // 边缘检测-canddy.cpp : 定义控制台应用程序的入口点。 // #include “stdafx.h” /************************************************** * C++ Canny:Canny边缘检测 **************************************************/ /**************************************************************
Read more