mirror of
https://github.com/hybridgroup/gocv
synced 2026-04-22 23:47:09 +08:00
bd83700f33
from the exception caught. Signed-off-by: deadprogram <ron@hybridgroup.com>
18 lines
249 B
C
18 lines
249 B
C
#ifndef _OPENCV3_SVD_H_
|
|
#define _OPENCV3_SVD_H_
|
|
|
|
#ifdef __cplusplus
|
|
#include <opencv2/opencv.hpp>
|
|
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "core.h"
|
|
|
|
OpenCVResult SVD_Compute(Mat src, Mat w, Mat u, Mat vt);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //_OPENCV3_SVD_H
|