- 博客(11)
- 收藏
- 关注
原创 vs2019 使用Pthreads--并行计算
参考:https://blog.csdn.net/lhw_666/article/details/108430647https://blog.csdn.net/weixin_40614261/article/details/89552222下载地址:ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-9-1-release.zip有以下文件:Pre-built.2Pthreads.2QueueUserAPCEx配置要点记录:
2020-11-28 22:00:07 1328
原创 vs2019 使用OpenMP--并行计算
要点记录1.调试→xxxx属性,找到 “配置管理器”,选x64;2. 调试→xxxx属性→C/C++→所有选项→OpenMP支持改为是;3. 注意项目添加C/C++文件后出现"C/C++ ";测试程序,判断素数#include <omp.h>#include <iostream>#include <time.h>#include <math.h>#include <stdlib.h>using namespace std;
2020-11-28 21:42:05 2920
原创 vs2019 使用MPI--并行计算
并行计算–vs2019 使用MPI参考:https://www.jianshu.com/p/119265e21cdfMPI下载地址地址:http://www.mpich.org/downloads/页面最下方找windows版,点击"http",下载msmpisdk.msi和MSMpiSetup.exe,双击安装(默认路径)。配置要点记录:在“调试”->“xxxxx属性”中设置参数;“配置管理器”,选x64;C/C+±>“预处理器”>“编辑”,添加: MPICH_SK
2020-11-28 21:28:22 1279
原创 Can't load AMD 64-bit .dll on a IA 32-bit platform
问题描述:最近ecplise启动tomact老是报错Can’t load AMD 64-bit .dll on a IA 32-bit platform。但是还能用,就没在意。直到我的项目需要加载另一个dll 文件,也一直报错Can’t load AMD 64-bit .dll on a IA 32-bit platform。解决:我看了tomact是64位,java是64位,没毛病啊。...
2020-03-07 15:48:10 596
原创 maven-pom报错PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException
问题描述:Failure to transfer org.apache.maven:maven-archiver:pom:2.5 fromhttps://maven.aliyun.com/repository/public was cached in the local repository, resolutionwill not be reattempted until the updat...
2020-03-05 19:19:51 913
原创 Eclipse的maven项目报错Could not calculate build plan:Plugin org.apache.maven.plugins
参考:https://blog.csdn.net/weixin_38659265/article/details/88874111建议优先试试上面大佬的操作我的报错描述我的仓库路径:D:\workspace\Maven_repo在eclipse的maven项目报错,我的pom.xml的:<packaging>war</packaging>被标红,报错描述:o...
2020-02-29 20:54:49 316
原创 maven 配置国内镜像
用maven时候会下一些资源,但慢的吓人,甚至卡死,于是配置一些国内镜像。关于仓库从maven的conf下(我的路径是:D:\software\apache-maven-3.6.3\conf)复制settings.xml到仓库路径同级目录,如下:关于仓库路径:我仓库路径是改了的(D:\workspace\Maven_repo),如果没改那应该在(C:\Users\12434.m2),类比自...
2020-02-29 20:25:50 967
原创 opencv图片灰度和大小调整
做opencv分类器遇到的问题,老是记不住…public static void main(String[] args) { System.loadLibrary(Core.NATIVE_LIBRARY_NAME); String file = "D:\\temp\\image_sign_wood"; img_be_gey(file); } public static v...
2020-02-29 13:09:50 648
原创 java 文件重命名
百度上下的图片想重命名一下,命名为1,2,3,4…程序运行前记得保存下源文件,以防万一。 public static void main(String[] args) { // 想命名的原文件的路径 String file = "D:\\temp\\image_temp_wood"; folderMethod1(file); } public static void f...
2020-02-29 13:04:27 145
原创 java-opencv-训练自己的物体分类器
参考:https://blog.csdn.net/qq_32502511/article/details/79010509https://blog.csdn.net/lileiyang12/article/details/10155813https://blog.csdn.net/YK_LaNce/article/details/100576560第一步:准备文件。-新建目录:negda...
2020-02-29 12:51:25 1425
原创 c++中返回数组函数
c++中返回数组函数演示代码:int * fun1(){ int arr[10]; for(int i=0; i<10; i++) { arr[i]=i; } return arr;}int * fun2(){ int *arr=new int[10]; for(int i=0; i<10; i++)...
2019-04-19 10:15:06 291
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人