opencv 0.46.2

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

extern "C" {
	Result_void cv_alphamat_infoFlow_const__InputArrayR_const__InputArrayR_const__OutputArrayR(const cv::_InputArray* image, const cv::_InputArray* tmap, const cv::_OutputArray* result) {
		try {
			cv::alphamat::infoFlow(*image, *tmap, *result);
			return Ok();
		} OCVRS_CATCH(OCVRS_TYPE(Result_void))
	}
	
}