Video Analysis底层库拆分,sdk的go封装
zhangmeng
2019-04-29 e3a2151968276a71a617d88965281e279ad68236
1
2
3
4
5
6
7
8
9
10
11
12
13
package gosdk
 
import "image"
 
// Rect convert CRECT to image Rect
func Rect(rect CRECT) image.Rectangle {
    return image.Rect(int(rect.Left), int(rect.Top), int(rect.Right), int(rect.Bottom))
}
 
// Pt get CPOINT to image Pt
func Pt(pt CPOINT) image.Point {
    return image.Pt(int(pt.X), int(pt.Y))
}