-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathopencv_cv_types_h.go
49 lines (40 loc) · 1.29 KB
/
opencv_cv_types_h.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright 2014 <chaishushan{AT}gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package opencv
/*
#cgo CFLAGS: -I./opencv110/cv/include
#include <cv.h>
*/
import "C"
type CvMoments C.CvMoments
type CvHuMoments C.CvHuMoments
type CvConnectedComp C.CvConnectedComp
type CvContourScanner C.CvContourScanner
type CvChainPtReader C.CvChainPtReader
type CvContourTree C.CvContourTree
type CvConvexityDefect C.CvConvexityDefect
type CvSubdiv2DEdge C.CvSubdiv2DEdge
type CvQuadEdge2D C.CvQuadEdge2D
type CvSubdiv2DPoint C.CvSubdiv2DPoint
type CvSubdiv2D C.CvSubdiv2D
type CvSubdiv2DPointLocation C.CvSubdiv2DPointLocation
type CvNextEdgeType C.CvNextEdgeType
const (
CV_DIST_USER = C.CV_DIST_USER
CV_DIST_L1 = C.CV_DIST_L1
CV_DIST_L2 = C.CV_DIST_L2
CV_DIST_C = C.CV_DIST_C
CV_DIST_L12 = C.CV_DIST_L12
CV_DIST_FAIR = C.CV_DIST_FAIR
CV_DIST_WELSCH = C.CV_DIST_WELSCH
CV_DIST_HUBER = C.CV_DIST_HUBER
)
type CvFilter C.CvFilter
const CV_GAUSSIAN_5x5 = C.CV_GAUSSIAN_5x5
type CvConDensation C.CvConDensation
type CvKalman C.CvKalman
type CvHaarFeature C.CvHaarFeature
type CvHaarStageClassifier C.CvHaarStageClassifier
type CvHaarClassifierCascade C.CvHaarClassifierCascade
type CvAvgComp C.CvAvgComp