opencv 0.73.0

Rust bindings for OpenCV
Documentation
1
2
3
4
5
6
7
8
9
10
11
#include "dnn.hpp"

template struct Result<void*>;

extern "C" {
	void cv_dnn_LayerParams_LayerParams(Result<void*>* ocvrs_return) {
		try {
			return Ok<void*>(new cv::dnn::LayerParams(), ocvrs_return);
		} OCVRS_CATCH(Result<void*>, ocvrs_return)
	}
}