21 lines
466 B
Go
21 lines
466 B
Go
package main
|
||
|
||
import (
|
||
"log"
|
||
|
||
"silverpose/v2/internal/ui"
|
||
)
|
||
|
||
func main() {
|
||
window, err := ui.NewWindow(ui.Settings{
|
||
SourceEnvironment: "SILVER_POSE_RTSP_URL",
|
||
ModelSHA256: "fac42d41a2ae3108dc42b3a2097f299e27d7f4055cb6b26a319fad0b0a3f286e",
|
||
RuntimeSummary: "Go + ONNX Runtime + FFmpeg(技术 Spike)",
|
||
EventSummary: "确认窗 1.8 秒;仅确认摔倒使用红色",
|
||
}, ui.Commands{})
|
||
if err != nil {
|
||
log.Fatal(err)
|
||
}
|
||
window.Run()
|
||
}
|