All Projects → BestBurning → Mhxy

BestBurning / Mhxy

Licence: agpl-3.0
tensorflow实践:梦幻西游人物弹窗识别

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Mhxy

Pdf Table
Java utility for parsing PDF tabular data using Apache PDFBox and OpenCV
Stars: ✭ 50 (-16.67%)
Mutual labels:  opencv
Handgesture
基于Qt框架的手势识别程序,其中主要是用到了Opencv中的训练算法!属于本科水平的小项目,没有太完善!后期有空再弄吧!😄
Stars: ✭ 56 (-6.67%)
Mutual labels:  opencv
Opencv Mtcnn
An implementation of MTCNN Face detector using OpenCV's DNN module
Stars: ✭ 59 (-1.67%)
Mutual labels:  opencv
Facifier
An emotion and gender detector based on facial features, built with Python and OpenCV
Stars: ✭ 52 (-13.33%)
Mutual labels:  opencv
Ds and ml projects
Data Science & Machine Learning projects and tutorials in python from beginner to advanced level.
Stars: ✭ 56 (-6.67%)
Mutual labels:  opencv
Rpindvi
Raspberry PI NDVI Code
Stars: ✭ 57 (-5%)
Mutual labels:  opencv
Facer
Simple (🤞) face averaging (🙂) in Python (🐍)
Stars: ✭ 49 (-18.33%)
Mutual labels:  opencv
Colorfilters
Image thresholding in multiple colorspaces.
Stars: ✭ 60 (+0%)
Mutual labels:  opencv
Beautifulgirls
爬虫+脸部识别+DCGAN脸部自动生成
Stars: ✭ 56 (-6.67%)
Mutual labels:  opencv
Dokai
Collection of Docker images for ML/DL and video processing projects
Stars: ✭ 58 (-3.33%)
Mutual labels:  opencv
Idmatch
Match faces on id cards with OCR capabilities.
Stars: ✭ 52 (-13.33%)
Mutual labels:  opencv
Easypr Python
EasyPR-python
Stars: ✭ 55 (-8.33%)
Mutual labels:  opencv
Color Transfer Between Images
This is the open-source implement the paper "Color Transfer between Images" by Erik Reinhard, Michael Ashikhmin, Bruce Gooch and Peter Shirley.
Stars: ✭ 56 (-6.67%)
Mutual labels:  opencv
Opencv Face Filters
Snapchat-like Face Filters in OpenCV
Stars: ✭ 51 (-15%)
Mutual labels:  opencv
Catt
Detecting the temperature from an infrared image
Stars: ✭ 60 (+0%)
Mutual labels:  opencv
Nodecv
Node.js binding to OpenCV
Stars: ✭ 49 (-18.33%)
Mutual labels:  opencv
Learningopencv
Source code for Learning OpenCV 《学习OpenCV》源码及 Mac 运行工程
Stars: ✭ 57 (-5%)
Mutual labels:  opencv
Vehicle Detection And Tracking
Udacity Self-Driving Car Engineer Nanodegree. Project: Vehicle Detection and Tracking
Stars: ✭ 60 (+0%)
Mutual labels:  opencv
Head Pose Estimator.caffe
Head Pose Estimator on Caffe
Stars: ✭ 60 (+0%)
Mutual labels:  opencv
Overhead Camera People Counter
People counting algorithm using an overhead video camera
Stars: ✭ 58 (-3.33%)
Mutual labels:  opencv

mhxy

tensorflow实践:梦幻西游人物弹窗识别

环境描述

Windows

C:\Users\SF>ver
Microsoft Windows [版本 10.0.18363.720]

Python

C:\Users\SF>python --version
Python 3.7.6

Tensorflow

C:\Users\SF>python
Python 3.7.6 (tags/v3.7.6:43364a7ae0, Dec 19 2019, 00:42:30) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
2020-03-19 23:42:50.170828: I tensorflow/stream_executor/platform/default/dso_loader.cc:44] Successfully opened dynamic library cudart64_101.dll
>>> tf.__version__
'2.1.0'

CUDA

C:\Users\SF>nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2019 NVIDIA Corporation
Built on Wed_Oct_23_19:32:27_Pacific_Daylight_Time_2019
Cuda compilation tools, release 10.2, V10.2.89

cuDNN

C:\tools\cuda\include\cudnn.h

...
#define CUDNN_MAJOR 7

#define CUDNN_MINOR 6
#define CUDNN_PATCHLEVEL 5
#define CUDNN_VERSION (CUDNN_MAJOR * 1000 + CUDNN_MINOR * 100 + CUDNN_PATCHLEVEL)
...

梦幻西游

启动方式   多标签版
分辨率     800x600
界面风格   暖风

运行

由于鼠标点击使用了kmclassdll,所以需要开启 测试模式 & 禁用强制驱动签名重启

管理员身份打开CMD

bcdedit /set nointegritychecks on

bcdedit /set testsigning on

shutdown  -r -t 0

重启后,管理员身份打开CMD

  • 自动点击弹窗
python main.py --click 0
  • 持续学习
python main.py --learn 0

如果使用学习功能的话,请下载训练库 更多代码解读可以参考这里

成果展示

可以看到一次预测点击的耗时是在4s左右,欢迎Star

目录说明

文件说明

声明

本人无任何商业目的,仅用于学习和娱乐,源代码采用了AGPL3.0开源协议

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].