
资源
文章平均质量分 67
ziyuan
csdnhuizhu
这个作者很懒,什么都没留下…
展开
-
visual studio 2019 动态库的建立和使用
stepone: 建立动态库1.新建项目,例如首先先选择一下windowconsle2.3.4.新建Utils.h, 内容如下:注意没有_declspec(dllexport)的话就生成不了lib文件#pragma once#ifndef __UTILS_H__#define __UTILS_H__#include<string>#include<strstream>class Utils {public: _declspec(dllexport)原创 2021-01-09 21:40:03 · 1936 阅读 · 0 评论 -
visual studio 2019静态库的创建以及使用
开发的程序并不总是直接地生成可执行的软件,我们可能只是开发某个大型系统的一个组件,或者是开发某个软件的内核sdk提供给上层的应用程序调用partone:1.创建一个项目,例如一个控制台应用改为了控制台应用,以上的两点需要自己手动修改2.头文件#pragma once#ifndef __UTILS_H__#define __UTILS_H__#include<string>#include<strstream>class Utils {public:原创 2021-01-08 22:49:24 · 1375 阅读 · 1 评论 -
visual studio 2019 图像监视:在Visual Studio调试器中查看内存中图像
Image Watch is a plug-in for Microsoft Visual Studio that lets you to visualize in-memory images (cv::Mat or IplImage_ objects, for example) while debugging an application. This can be helpful for tracking down bugs, or for simply understanding what a give原创 2021-01-08 16:04:31 · 3351 阅读 · 0 评论 -
visual studio 2019 reuse property sheets
下面用一个例子来说明如何重复使用一些项目的配置例如opencv官网对于property sheets的描述:At this point, it is a wise decision to back them up into some special directory, to always have them at hand in the future, whenever you create an OpenCV project. the file extensioin is props.1.之前做过一原创 2021-01-08 11:03:19 · 245 阅读 · 0 评论 -
visual studio 2019 opencv配置
前提是installatioin in windowsstepone:打开opencv官网—tutorials--------Introduction to Opencv-----How to build application with opencv inside the “Microsoft visual Studio”设置的方法总共有两种1.globally (so all your projects will get this information)2.locally(so onl原创 2021-01-07 22:02:39 · 233 阅读 · 0 评论 -
windows opencv配置
stepone:打开opencv的官网,—>找到tutorail—>Introduction to OpenCV(build and install OpenCV on your computer)—>Windows官网提供了三种方法来install in window 分别是:1.Installation by Using the Pre-built Libararies2.Installation by Using git-bash(version>= 2.14.1原创 2021-01-06 22:11:09 · 297 阅读 · 0 评论 -
visual studio 2019打包exe文件
stepone:下载方式二:Microsoft Visual Studio Installer Projects我是按照第一种方式做的,方式二(没有亲自试过)其他博客说的是,点击这个链接网址,直接下载,直接安装,(安装是关闭visual studio),安装完成后,重新打开visual studio即可。...原创 2021-01-06 15:05:15 · 10999 阅读 · 3 评论 -
visual studio 2019如何给应用程序增加图标
增加图标之前stepone:选中其中的项目,右击资源文件—>添加—>资源steptwo导入—>选中ico格式的图片文件stepthree:选中项目—右击—重新生成结果:头文件中 多了resource.h文件打开debug 文件夹可以看到:...原创 2021-01-06 14:28:01 · 12265 阅读 · 0 评论 -
visual studio 无法打开源文件
problem解决方案原创 2021-01-04 22:02:03 · 2406 阅读 · 0 评论 -
visual studio 2019安装
step one: 从官网中下载steptwo: 查看安装visual studio 2019 的安装要求stepthree: 点击下载的exe小程序小插曲:sdk与api的区别安装位置注意事项在 Visual Studio 中选择安装位置【在“共享组件、工具和 SDK”部分中,请注意它使用在“下载缓存”部分中选择的同一驱动器】【某些工具和 SDK 对于安装位置有不同规则。 即使选择另一位置,这些工具和 SDK 也会安装在系统驱动器上。】...原创 2021-01-04 19:52:18 · 2162 阅读 · 1 评论 -
查询TensorFlow常规错误网址
https://github.com/tensorflow/tensorflow/issues/原创 2020-03-12 15:03:22 · 130 阅读 · 0 评论 -
查询拓展名目录
可以登录这一个网址查询:https://www.solvusoft.com/zh-cn/file-extensions/原创 2020-02-27 18:25:52 · 153 阅读 · 0 评论