mirror of
https://github.com/bububa/openvision.git
synced 2025-09-26 17:51:13 +08:00
21 lines
639 B
Go
21 lines
639 B
Go
package face
|
|
|
|
import (
|
|
"github.com/bububa/openvision/go/common"
|
|
)
|
|
|
|
const (
|
|
// DefaultBorderColor default drawer border color
|
|
DefaultBorderColor = common.Green
|
|
// DefaultKeypointColor default drawer keypoint color
|
|
DefaultKeypointColor = common.Pink
|
|
// DefaultBorderStrokeWidth default drawer border stroke width
|
|
DefaultBorderStrokeWidth = 3
|
|
// DefaultKeypointRadius default drawer keypoint radius
|
|
DefaultKeypointRadius = 2
|
|
// DefaultKeypointStrokeWidth default drawer keypoint stroke width
|
|
DefaultKeypointStrokeWidth = 2
|
|
// DefaultInvalidBorderColor default drawer invalid border color
|
|
DefaultInvalidBorderColor = common.Red
|
|
)
|