robocar-camera/cmd/rc-camera/rc-camera.go

88 lines
2.7 KiB
Go
Raw Normal View History

2019-12-18 23:08:07 +00:00
package main
import (
"flag"
"fmt"
2019-12-18 23:08:07 +00:00
"github.com/cyrilix/robocar-base/cli"
2021-10-12 16:54:37 +00:00
"github.com/cyrilix/robocar-camera/pkg/camera"
2021-10-12 16:26:57 +00:00
"go.uber.org/zap"
2019-12-18 23:08:07 +00:00
"gocv.io/x/gocv"
"log"
"os"
)
const DefaultClientId = "robocar-camera"
func main() {
var mqttBroker, username, password, clientId, topicBase, topicRoi string
var pubFrequency, horizon int
2019-12-18 23:08:07 +00:00
var device, videoWidth, videoHeight int
2021-10-12 16:26:57 +00:00
var debug bool
2019-12-18 23:08:07 +00:00
mqttQos := cli.InitIntFlag("MQTT_QOS", 0)
_, mqttRetain := os.LookupEnv("MQTT_RETAIN")
cli.InitMqttFlags(DefaultClientId, &mqttBroker, &username, &password, &clientId, &mqttQos, &mqttRetain)
err := cli.SetIntDefaultValueFromEnv(&horizon, "HORIZON", 0)
if err != nil {
log.Printf("unable to parse horizon value arg: %v", err)
}
2019-12-18 23:08:07 +00:00
flag.StringVar(&topicBase, "mqtt-topic", os.Getenv("MQTT_TOPIC"), "Mqtt topic to publish camera frames, use MQTT_TOPIC if args not set")
flag.StringVar(&topicRoi, "mqtt-topic-roi", os.Getenv("MQTT_TOPIC_ROI"), "Mqtt topic to publish camera frames cropped to horizon value, mqtt-topic value with '-roi' suffix if args not set")
2019-12-18 23:08:07 +00:00
flag.IntVar(&pubFrequency, "mqtt-pub-frequency", 25., "Number of messages to publish per second")
flag.IntVar(&device, "video-device", 0, "Video device number")
flag.IntVar(&videoWidth, "video-width", 160, "Video pixels width")
flag.IntVar(&videoHeight, "video-height", 128, "Video pixels height")
flag.IntVar(&horizon, "horizon", horizon, "Limit region of interest to horizon in pixels from top, use HORIZON if args not set")
2021-10-12 16:26:57 +00:00
flag.BoolVar(&debug, "debug", false, "Display raw value to debug")
2019-12-18 23:08:07 +00:00
flag.Parse()
if len(os.Args) <= 1 {
flag.PrintDefaults()
os.Exit(1)
}
2021-10-12 16:26:57 +00:00
config := zap.NewDevelopmentConfig()
if debug {
config.Level = zap.NewAtomicLevelAt(zap.DebugLevel)
} else {
config.Level = zap.NewAtomicLevelAt(zap.InfoLevel)
}
lgr, err := config.Build()
if err != nil {
log.Fatalf("unable to init logger: %v", err)
}
defer func() {
if err := lgr.Sync(); err != nil {
log.Printf("unable to Sync logger: %v\n", err)
}
}()
zap.ReplaceGlobals(lgr)
client, err := cli.Connect(mqttBroker, username, password, clientId)
if err != nil {
2021-10-12 16:26:57 +00:00
zap.S().Fatalf("unable to connect to mqtt broker: %v", err)
}
defer client.Disconnect(10)
2019-12-18 23:08:07 +00:00
videoProperties := make(map[gocv.VideoCaptureProperties]float64)
videoProperties[gocv.VideoCaptureFrameWidth] = float64(videoWidth)
videoProperties[gocv.VideoCaptureFrameHeight] = float64(videoHeight)
if topicRoi == "" {
topicRoi = fmt.Sprintf( "%s-roi", topicBase)
}
c := camera.New(client, topicBase, topicRoi, pubFrequency, videoProperties, horizon)
2019-12-18 23:08:07 +00:00
defer c.Stop()
cli.HandleExit(c)
err = c.Start()
2019-12-18 23:08:07 +00:00
if err != nil {
2021-10-12 16:26:57 +00:00
zap.S().Fatalf("unable to start service: %v", err)
2019-12-18 23:08:07 +00:00
}
}