2019-12-29 17:39:08 +00:00
|
|
|
package gocv
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "version.h"
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
// GoCVVersion of this package, for display purposes.
|
2021-09-02 10:03:56 +00:00
|
|
|
const GoCVVersion = "0.28.0"
|
2019-12-29 17:39:08 +00:00
|
|
|
|
|
|
|
// 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())
|
|
|
|
}
|