-
优化皇后问题的代码
优化皇后问题的代码-optimize the code Queen
- 2022-01-22 14:00:32下载
- 积分:1
-
Exceptional C++ shows by example how to go about solid software engineering. Alo...
Exceptional C++ shows by example how to go about solid software engineering. Along with a lot of other material, this book includes expanded versions of the first 30 issues of the popular Internet C++ feature Guru of the Week (or, in its short form, GotW), a series of self-contained C++ engineering problems and solutions that illustrate specific design and coding techniques.
- 2022-12-15 03:15:03下载
- 积分:1
-
使用结点分析法求解直流电阻电路,并将结果保存在txt格式的文档中...
使用结点分析法求解直流电阻电路,并将结果保存在txt格式的文档中-The use of node analysis method to solve the DC resistance circuit, and the results saved in txt format document
- 2022-07-27 14:21:49下载
- 积分:1
-
把CString格式转化为Char
void CRSLAIDoc::CString2Char(CString TempCString,char ch[])
{
int i;
char *tmpch;
int wLen=WideCharToMultiByte(CP_OEMCP,0,TempCString,-1,NULL,0,NULL,NULL);
tmpch=new char[wLen+1];
WideCharToMultiByte(CP_OEMCP,0,TempCString,-1,tmpch,wLen,NULL,NULL);
for(i=0;tmpch[i]!="
- 2023-04-25 23:50:03下载
- 积分:1
-
c 语言图像处理代码
基于C语言的图像处理算法,包括读取BMP图像、保存BMP图像、灰度线性变换、直方图均衡化、图像反转、对数变换、中值滤波、最大最小滤波、拉普拉斯变换、梯度处理等
- 2022-07-17 08:24:48下载
- 积分:1
-
压缩感知MATLAB代码
从压缩感知入手,阐述了基于压缩感知的三维物体成像方法和数学模型。用不同的测量矩阵和稀疏矩阵对不同特性的目标进行测量和重构,对不同的测量矩阵和稀疏矩阵进行分析,目标的特性不同,最佳的测量矩阵和稀疏矩阵也不尽相同,本文通过实验仿真对实验结果进行了分析,并且得出了测量次数与重构精度之间的关系,深度区间与测量次数之间的关系。
- 2023-01-22 06:00:03下载
- 积分:1
-
OpenCV非线性滤波示例程序
我们用轨迹条来控制滤波器,来动态得到不同滤波效果1.已将dll打包到Release文件夹下,运行Release文件夹中的exe可以直接看到运行结果.2.源代码运行需要进行OpenCV+VS开发环境的配置。我是使用编写环境:Visual Studio 2010写作当前代码时配套使用的OpenCV版本: 2.4.8
- 2022-09-24 08:00:02下载
- 积分:1
-
将正整数M拆分成N个不同正整数之和,并打印出所有可能的组合...
将正整数M拆分成N个不同正整数之和,并打印出所有可能的组合
- 2022-08-13 02:32:29下载
- 积分:1
-
阈值变换
资源描述程序说明: //该函数用来对图像进行阈值变换。对于灰度值小于阈值的象素直接设置 灰度值为0;灰度值大于阈值的象素直接设置为255。-procedures
:// This function used to image transform threshold. For gray value less than
the threshold value of the pixel intensity value directly set to 0; Gray value
greater than the threshold value of the pixel is set to direct 255.
- 2022-04-02 08:03:02下载
- 积分:1
-
蜂群算法
人工蜂群算法是模仿蜜蜂行为提出的一种优化方法,是集群智能思想的一个具体应用,它的主要特点是不需要了解问题的特殊信息,只需要对问题进行优劣的比较,通过各人工蜂个体的局部寻优行为,最终在群体中使全局最优值突现出来,有着较快的收敛速度。
- 2022-08-20 08:38:07下载
- 积分:1