This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| # src -> [[x,y],[x,y],...,[x,y]] List型 | |
| # dst -> [[x,y],[x,y],...,[x,y]] List型 | |
| # srcとdstは同じ数である必要があり、計算の都合上で最低3点が必要 | |
| def CalcModel(src, dst): | |
| if (len(src) != len(dst)) or (len(src) < 3) or (len(src) < 3): | |
| return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script> | |
| <title>hlsjs</title> | |
| </head> | |
| <body> | |
| <video id="video_smaple" controls> | |
| <script> |
OlderNewer