opencv 0.46.2

Rust bindings for OpenCV
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#include "ocvrs_common.hpp"
#include <opencv2/features2d.hpp>

template struct Result<void*>;

extern "C" {
	Result<void*> cv_ORB_create() {
		try {
			return Ok<void*>(new cv::Ptr<cv::ORB>(cv::ORB::create()));
		} OCVRS_CATCH(Result<void*>)
	}
}