opencv 0.73.0

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" {
	void cv_ORB_create(Result<void*>* ocvrs_return) {
		try {
			return Ok<void*>(new cv::Ptr<cv::ORB>(cv::ORB::create()), ocvrs_return);
		} OCVRS_CATCH(Result<void*>, ocvrs_return)
	}
}