Capture window - run yolov5 - show results (Windows only)
Project description
Capture window - run yolov5 - show results
pip install yolov5windowdetect
Update 2022/10/25
Run multiple detection models
winca = (
Yolov5WindowDetect(
pt_file=r"C:\Users\Gamer\anaconda3\envs\dfdir\yolov5\runs\train\playerbutton7\weights\best.pt",
repo_or_dir="./yolov5",
model="custom",
source="local",
)
.add_models(
pt_file=r"C:\Users\Gamer\anaconda3\envs\dfdir\yolov5\runs\train\playerbutton6\weights\best.pt",
repo_or_dir="./yolov5",
model="custom",
source="local",
)
.get_hwnd_window(window_title_regex=r"[Bb]lue[sS]tacks.*")
.take_screenshot_and_run_yolov(
confidence_thresh=0.3,
show_results=True,
quit_key="q",
sleep_time=0.04,
rununtilstopped=True,
)
)
from yolov5windowdetect import Yolov5WindowDetect
winca = (
Yolov5WindowDetect(
pt_file=r"C:\Users\.....\best.pt",
repo_or_dir="./yolov5",
model="custom",
source="local",
)
.get_hwnd_window(window_title_regex=r"[Bb]lue[Ss]tacks.*")
.take_screenshot_and_run_yolov(
confidence_thresh=0.3,
show_results=True,
quit_key="q",
sleep_time=0.04,
rununtilstopped=True,
)
)
# window capture -> don't show results, only results as df
winca.get_hwnd_window(
window_title_regex=r"[Bb]lue[Ss]tacks.*"
).take_screenshot_and_run_yolov(
confidence_thresh=0.3, show_results=False, rununtilstopped=False,
).get_results_as_df()
# adb capture
winca.get_adb_window(
adb_path=r"C:\ProgramData\adb\adb.exe", adb_serial="localhost:5555",
).take_screenshot_and_run_yolov(
confidence_thresh=0.3, show_results=False, rununtilstopped=False,
).get_results_as_df()
Example
<a href="https://www.youtube.com/watch?v=-jXqL39Tf5w">
<img src="https://img.youtube.com/vi/-jXqL39Tf5w/0.jpg" style="width:100%;">
</a>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file yolov5windowdetect-0.11.tar.gz
.
File metadata
- Download URL: yolov5windowdetect-0.11.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 405de5ee61d778ea8158ccc64f52a79312a15dfd12cd1ce013ab4c713fe63604 |
|
MD5 | a5e9e362e2dc1167280471190879edf2 |
|
BLAKE2b-256 | e6e0b563da3770acf026b88b3b9d51e2427f158cf090419b449abe620f9b85c8 |
File details
Details for the file yolov5windowdetect-0.11-py3-none-any.whl
.
File metadata
- Download URL: yolov5windowdetect-0.11-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce2c0dffda4d4142bc93ae5f493ca3f367d67dbb66e67bb4d053e47ebeff1067 |
|
MD5 | 4b9174ac4277efc27225029dd6802a4e |
|
BLAKE2b-256 | 9ad54e477c80ddc9632a494695d3da2877fca73b55eeb0f399bd72447a27d25d |