- 博客(18)
- 资源 (1)
- 收藏
- 关注

原创 vc6的文件添加,文件打开出问题
今天用新装系统后的vc,发现“File Open”“Add Files”这些和文件相关的按钮都无效,非常郁闷。本来用vs2008挺方便的,无奈组里的人都用vc6,导致退化为vc6。但是也不至于自己连个vc6都装不好了吧。最后发现居然是和visio软件冲突的问题,真是狂汗,都是微软自家的东东,还争来争去,服了!
2008-11-09 15:05:00
478
原创 开始使用技术博客
看到很多很好的博客,写技术博客是很好的习惯,决定从今天起开始实施。就从学习DeepLearning开始吧。周围的同学已经开始学习了, 但是Better late than never。所以从这里开始吧
2013-11-25 16:38:29
524
原创 c调用exe
<br /> <br /> <br />#include "stdafx.h"<br />#define WIN32_LEAN_AND_MEAN<br />#include <windows.h><br />#include <shellapi.h><br />#include <shlwapi.h><br />#include <wininet.h><br />#include <strsafe.h><br /> <br />int _tmain(int argc, _TCHAR* argv[])<br
2011-03-17 16:51:00
502
原创 c调用exe
<br /> <br /> <br />#include "stdafx.h"<br />#define WIN32_LEAN_AND_MEAN<br />#include <windows.h><br />#include <shellapi.h><br />#include <shlwapi.h><br />#include <wininet.h><br />#include <strsafe.h><br /> <br />int _tmain(int argc, _TCHAR* argv[])<br
2011-03-17 16:51:00
489
原创 解决unresolved external symbol 在你的代码里面加上这一句: #define _AFX_ENABLE_INLINES
<br /># re: 解决unresolved external symbol "public: int __thiscall CWnd::KillTimer(unsigned int)" (?KillTimer@CWnd@@QAEHI@Z)问题 2007-05-12 22:35 an_bachelor<br />兄弟 少了一个下划线 害我找了半天 <br />应该#define _AFX_ENABLE_INLINES 回复 更多评论 # re: 解决unresolved external sym
2011-03-17 16:51:00
836
转载 定义超大数组时,stack OverFlow的解决方法
出处:http://hi.bccn.net/space-202661-do-blog-id-9614.html ][VC]定义超大数组时,stack OverFlow的解决方法已有 15978 次阅读 2008-03-13 11:26 stack overflow,堆栈溢出(下文中,stack=栈=堆栈)这次在写一个程序的时候,定义了一个比较大的int数组,发现
2010-02-01 18:17:00
2736
原创 读写二进制文件,验证正确性
// txtTobin.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){ FILE * fp; int j = 0; int nWrite, nRead; //------------------读取二进制文件数据到pProb数组中 float pProb[300*40
2009-08-26 16:26:00
791
转载 AI 国际会议剖析
转贴自南京大学的小百合BBS,作者是南大的周志华教授。另外我根据Estimated impact of publication venues in Computer Science (higher is better) - May 2003 (CiteSeer)对这个表中大部分的会议做了Impact factor分析,希望能避免用SCI,EI对会议质量进行评估的误区.说明: 纯属个
2009-03-12 15:33:00
1709
原创 常见错误
1.同样的代码在别人那里能用,在你这儿不能用,往往是因为设置问题,或者库包含问题。2.如果设置没问题(一定要确认哦),那就只能挨个儿跟踪程序里涉及的变量,看原来的程序中是不是有其他地方的初始化。3.指针一定要在用之前初始化。不然 if(NULL != pointer) {delete pointer; pointer = NULL;} 就要出错啦。
2009-02-27 11:11:00
354
转载 VC6.0与Visio冲突问题解决方案
VC6.0和Visio都是开发者常用的工具,但是他们却存在冲突。当两个软件同时安装在一台机器上时,如果在VC6.0中的“FileView”右键点“add files to folder”或者在Project菜单点Add to project --Files都会报devshl.dll出错。 解决方案:微软支持网站提供了解决方案 1、在下面的网站下载FileTool.
2009-02-26 19:51:00
566
原创 “fstream.h”: No such file or directory
将#include "fstream.h"改为:#include using namespace std;
2009-01-10 16:40:00
3975
原创 'foreground_regions' 问题
报错如下: C:/Program Files/OpenCV/cvaux/src/cvbgfg_acmmm2003.cpp(411) : error C2039: foreground_regions : is not a member of CvFGDStatModel ../../cvaux/include/cvaux.h(1240) : see declaration of CvFG
2008-11-30 12:29:00
717
转载 把vc中的类封装成dll的简单方法
dll动态链接库,这里介绍一种简单的方法。 1、制作dll 利用VC6新建工程时选择win32 dynamic-Link Library,然后添加头文件和cpp文件。假设类名为exp,添加头文件exp.h,头文件中声明类的定义,添加exp.cpp,其中是成员函数的具体定义。与一般写类的定义不同,在exp.h中需要写成 class __declspec(dllexport) ex
2008-11-08 22:23:00
549
原创 从VC6 VS2008遇到的问题总结
1、缺少libc.lib解决这个问题的方法是去掉链接到libc.lib,具体地点:项目-〉属性-〉配置属性-〉链接器-〉忽略特定库。这个我是在命令行中加入:/nodefaultlib:libc2、unresolved external symbol __iob这个__iob找不到的问题费了我大部分的时间。跟踪到stdio.h文件,发现那里有个关于iob的宏,终于搞定。加入一句话到.
2008-10-11 22:00:00
745
转载 Kullback–Leibler divergence
Kullback–Leibler divergencehttp://en.wikipedia.org/wiki/Kullback-Leibler_divergenceFrom Wikipedia, the free encyclopedia (Redirected from Kullback-Leibler divergence)Jump to: navigation, se
2008-09-25 15:48:00
3441
转载 Mutual Information
今天挺paper reading的时候,听到了最大化互信息,还不清楚互信息是个什么东东,google了一下,从http://en.wikipedia.org/wiki/Mutual_information摘过来了: Definition of mutual informationFormally, the mutual information of two d
2008-09-25 14:12:00
6928
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人