
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
OpenPoseを使って、かめはめ波を撃ってみた - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
OpenPoseを使って、かめはめ波を撃ってみた - Qiita
humans = e.inference(image, resize_to_default=(w > 0 and h > 0), upsample_size=args.resize_out_ra... humans = e.inference(image, resize_to_default=(w > 0 and h > 0), upsample_size=args.resize_out_ratio) height,width = image.shape[0],image.shape[1] for human in humans: body_part = human.body_parts[2] x = int(body_part.x * width + 0.5) y = int(body_part.y * height + 0.5) debug_info = 'x:' + str(x) + ' y:' + str(y) import argparse import logging import time from pprint import pprint import cv2 impor