First implementation
This commit is contained in:
20
vendor/gocv.io/x/gocv/version.go
generated
vendored
Normal file
20
vendor/gocv.io/x/gocv/version.go
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
package gocv
|
||||
|
||||
/*
|
||||
#include <stdlib.h>
|
||||
#include "version.h"
|
||||
*/
|
||||
import "C"
|
||||
|
||||
// GoCVVersion of this package, for display purposes.
|
||||
const GoCVVersion = "0.21.0"
|
||||
|
||||
// Version returns the current golang package version
|
||||
func Version() string {
|
||||
return GoCVVersion
|
||||
}
|
||||
|
||||
// OpenCVVersion returns the current OpenCV lib version
|
||||
func OpenCVVersion() string {
|
||||
return C.GoString(C.openCVVersion())
|
||||
}
|
||||
Reference in New Issue
Block a user