0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ぷよぷよsteam版の画面を取得する

Last updated at Posted at 2024-10-15

スクリーンショット 2024-10-09 22.05.09.png

steam版のぷよぷよeスポーツは有料です。

画像の取り扱いについては以下のサイトを参照してください。

©︎SEGA

library

keyboard, pyautogui, pygetwindow の3つをpipインストールする。

import keyboard as kb
import pyautogui as ag
import pygetwindow as gw
from PIL import Image

pyGetWindow.getActiveWindowでアクティブウインドウを取得して、pyautogui.screenshotで画面情報を取得します。

while True:
    if kb.is_pressed('q'):  # 'q'キーが押された場合
        window = gw.getActiveWindow()
        x,y=window.topleft
        w,h=window.size
        im1 = ag.screenshot(region=(x,y,w,h))
        break

im1

output_4_0.png

print(w,h)
978 587

save

im1.save("test.jpg")

open

im1= Image.open("test.jpg")
im1

output_9_0.png


puyopuyo.gif
 ぷよぷよプログラミングAI学習システムは、中高生の自己調整学習に向けて開発されました。
 どうやって、Chromebookで、10分で、素敵な人工知能を作れるのでしょうか?
 秘密は、3つ。
 1 jupyter liteで、webクライアントがpythonコードを実行
 2 超軽量な機械学習フレームワークdezeroを採用
 3 ぷよぷよのstageとactionがコンパクト

Github&X

ぷよぷよプログラミングAI学習用まとめ

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?