摘要:
1、首先要找到“.ico”的图标素材,存放在要更改图标的硬盘根目录,可命名为a.ico。图片素材大家可以去一些素材网找找,一般可以找到很多。 2、在该硬盘分区空白处鼠标右键新建一个空白文档(C盘不能建立,须在其他桌面编辑好后复制到C盘根目录),将下面的东西复制进去。 [autorun] icon=a 阅读全文
摘要:
临时加速: pip install dlib -i https://pypi.tuna.tsinghua.edu.cn/simple/ 永久加速: 在user文件夹里新建pip文件夹,再建pip.ini 例如c://Users/37602/pip/pip.ini 其中pip.ini文件内容为: [g 阅读全文
摘要:
1.首先要卸载掉用KMS激活的程序。 2.卸载完成之后,以管理员身份打开命令提示符。 3.依次输入以下命令 slmgr /upk slmgr /ckms slmgr /rearm 输入完成后会显示需要重启,重启就可以了。(是重启,不是关机后开机) 4.重启完成后,打开服务(win+R输入servic 阅读全文
摘要:
#include<iostream> #include<stdio.h> #include<math.h> #include<malloc.h> using namespace std; #define MAXQSIZE 100 int k=0; char nodes[100]; //二叉树的二叉链 阅读全文
摘要:
#include<iostream> #include<string.h> #include<stdlib.h> #include<iomanip> #include<fstream> using namespace std; string head_1, head_2, head_3,head_4 阅读全文
摘要:
#include"stdafx.h" #include<stdlib.h> #define LEN sizeof(struct student) struct student { int num; struct student *next; }; int n; struct student *lin 阅读全文
摘要:
#include <stdio.h> #include <string.h> #include <stdlib.h> #include<cstring> #include<iostream> using namespace std; #define OK 1 #define ERROR 0 #def 阅读全文
摘要:
#include <stdio.h> #include <math.h> #include <windows.h> #include <tchar.h> float f(float x, float y, float z) { float a = x * x + 9.0f / 4.0f * y * 阅读全文
摘要:
#include<windows.h> #include<stdio.h> #include<string.h> int main() { char modeCommand[1024]; sprintf(modeCommand,"mode con cols=%d lines=%d",20,10); 阅读全文
摘要:
此插件是一个HTML 模版插件,可以摆脱为 HTML 新文件重新编写头部和正文标签的苦恼。 只需在空文件中输入 html,并按 tab 键,即可生成干净的文档结构。也可以输入!,然后按tab键或者enter键来生成初始干净的文档结构。 阅读全文
摘要:
win+R,打开命令行 输入services.msc 找到NADIA Display Container LS,将其由自动改为禁用,解决问题。 PS:网上有些改注册表的方法,确实可以治标,但是大家都应该知道注册表对于系统来说意味着什么,能不碰就别碰。 阅读全文
摘要:
1. 打开"文件->首选项->设置 2. 打开settings.json文件 3. 在setting.json 中添加"editor.mouseWheelZoom": true 阅读全文
摘要:
之前发的博客和网上流传的代码严格来说都只算得上是人脸检测,不能区别人脸,今天来说说真的人脸识别 篇幅所限,就举两张人脸的例子了,本程序需要安装face_recognition 下面是全部源代码: import face_recognition from PIL import Image, Image 阅读全文
摘要:
其实是没错的,不过有的python编译器对这个不太支持,把import cv2 改为import cv2.cv2 as cv2就行了。 阅读全文
摘要:
首先,在 https://sourceforge.net/projects/mingw/files/latest/download 下载安装MinGW,如下图所示: 点Installation->Basic Setup,安装里面所有选项。 然后点Installation->Apply all cha 阅读全文
摘要:
新手常常会遇到这种问题 解决方法如下: 比如我在C:\Users\123\Desktop有一个mmm.py文件,内容为: def abc(): print('hello,world') 当我写程序想引用mmm.py时,可在当前py文件中写如下程序: import sys sys.path.appen 阅读全文
摘要:
方法一:face_recognition import cv2 import face_recognition img_path = "C:/Users/CJK/Desktop/1.jpg"#图片目录 im_fr = face_recognition.load_image_file(img_path 阅读全文
摘要:
字典推导: x = ['A', 'B', 'C', 'D'] y = ['Alice', 'Bob', 'Cecil', 'David'] print({i:j for i,j in zip(x,y)}) >>>{'A': 'Alice', 'B': 'Bob', 'C': 'Cecil', 'D' 阅读全文
摘要:
这需要pyinstaller,在cmd执行pip install pyinstaller命令 安装完成后,执行 pyinstaller -F 目录 可执行文件于是就在同个目录下的dist目录顺利生成了。 阅读全文
摘要:
**通过**```pythonpyinstaller -F demo.py```**即可把demo.py打包成可独立运行的demo.exe** **pyinstaller在cmd使用格式:***pyinstaller -X demo.py*其中,-X为下列各后缀中的一种,demo是目录+文件名-F: 阅读全文