-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathmat.h
51 lines (47 loc) · 2.26 KB
/
mat.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef CV_RS_MAT_H
#define CV_RS_MAT_H
#include "common.h"
#include <opencv2/core.hpp>
#include <stddef.h>
#include <stdint.h>
extern "C" {
void* cv_mat_from_file_storage(const char* path, const char* section);
void* cv_mat_new();
void* cv_mat_new_with_size(int rows, int cols, int type);
void* cv_mat_zeros(int rows, int cols, int type);
void* cv_mat_from_buffer(int rows, int cols, int type, const uint8_t* buf);
void* cv_mat_eye(int rows, int cols, int type);
bool cv_mat_valid(cv::Mat* mat);
void* cv_mat_roi(cv::Mat* mat, Rect crect);
void cv_mat_flip(cv::Mat* image, int code);
int cv_mat_rows(const cv::Mat* const mat);
int cv_mat_cols(const cv::Mat* const mat);
int cv_mat_depth(const cv::Mat* const mat);
int cv_mat_channels(const cv::Mat* const mat);
int cv_mat_type(const cv::Mat* const mat);
const uint8_t* cv_mat_data(const cv::Mat* const mat);
size_t cv_mat_total(const cv::Mat* const mat);
size_t cv_mat_elem_size(const cv::Mat* const mat);
size_t cv_mat_elem_size1(const cv::Mat* const mat);
size_t cv_mat_step1(const cv::Mat* const mat, int i);
void cv_mat_drop(cv::Mat* mat);
void cv_mat_in_range(cv::Mat* mat, Scalar lowerb, Scalar upperb, cv::Mat* dst);
void cv_mat_min_max_loc(
const cv::Mat* const mat, double* min, double* max, Point2i* minLoc, Point2i* maxLoc, const cv::Mat* const cmask);
void cv_mat_mix_channels(cv::Mat* mat, size_t nsrcs, cv::Mat* dst, size_t ndsts, const int* from_to, size_t npairs);
void cv_mat_normalize(cv::Mat* csrc, cv::Mat* cdst, double alpha, double beta, int norm_type);
void cv_mat_bitwise_and(const cv::Mat* const src1, const cv::Mat* const src2, cv::Mat* dst);
void cv_mat_bitwise_not(const cv::Mat* const src, cv::Mat* const dst);
void cv_mat_bitwise_or(const cv::Mat* const src1, const cv::Mat* const src2, cv::Mat* dst);
void cv_mat_bitwise_xor(const cv::Mat* const src1, const cv::Mat* const src2, cv::Mat* dst);
int cv_mat_count_non_zero(const cv::Mat* const src);
void cv_mat_copy_make_border(const cv::Mat* const src1,
cv::Mat* const dst,
int top,
int bottom,
int left,
int right,
int borderType,
Scalar value);
}
#endif // CV_RS_MAT_H