摘要:
1、加载本地图片到numpy格式 import matplotlib.pyplot as plt img = plt.imread("one_img.jpg") digit = img.reshape(1, -1) 2、保存numpy格式到本地 one_digit = X_train[1] one_ 阅读全文
摘要:
来源:https://zhuanlan.zhihu.com/p/339377526:WSL网络连接、WSL子系统存储 :https://docs.microsoft.com/en-us/windows/wsl/install 1、系统要求 WSL2仅支持Windows10新版本下运行,低于 1836 阅读全文
摘要:
1、如何打开settings.json、task.json、launch.json CTRL+SHIFT+P输入搜索,打开正确的配置文件,json文件都不会是空的; 1、右击cpp文件Code Runner报错 2、控制窗口弹出显示设置: 阅读全文
摘要:
1、纯函数导入 定义CPP: BOOL EXPORT FUN(LPCTSTR lpszSrc, LPCTSTR lpszDst)导入CPP: 声明:BOOL __declspec(dllimport) FUN(LPCTSTR lpszSrc, LPCTSTR lpszDst); 二、C#导入C++的 阅读全文
摘要:
SetFileAttributes("文件完整路径", FILE_ATTRIBUTE_NORMAL); 阅读全文
摘要:
vs2015代码在本机,然后安装程序在远程连接的机器上 说明:测试:本地代码vs2015release版本,生成必要调试信息,能够进行调试;安装程序只有dll,没有别的信息! 来源:https://www.cnblogs.com/jesselzj/p/5568164.html(说明有的不准确) 填写 阅读全文
摘要:
1、 ANSI->UTF8转载地址:https://www.jianshu.com/p/1d54f59f8785 1 #include <iostream> 2 #include <string> 3 #include <fstream> 4 5 using std::string; 6 using 阅读全文
摘要:
vs密钥 2015 enterprise:HM6NR-QXX7C-DFW2Y-8B82K-WTYJV;https://www.cnblogs.com/lab-zj/p/12462941.html 2017 professional: KBJFW-NXHK6-W4WJM-CRMQB-G3CDH; ht 阅读全文
摘要:
1、unicode字符集下输出CString: wcout.imbue(locale("chs")); wcout << str.GetString() << endl; 2、unicode字符集下CString 与string的转换(提醒:存在个wstring) \\CString->string 阅读全文