mirror of
https://github.com/peterbraden/node-opencv.git
synced 2025-12-08 19:45:55 +00:00
removed unneeded stuff
This commit is contained in:
parent
5daf9c0f4d
commit
824ffceeb2
@ -134,9 +134,6 @@ Matrix::Matrix(cv::Mat m, cv::Rect roi): ObjectWrap() {
|
||||
mat = cv::Mat(m, roi);
|
||||
}
|
||||
|
||||
Matrix::Matrix(cv::Mat m): ObjectWrap() {
|
||||
mat = cv::Mat(m);
|
||||
}
|
||||
|
||||
Handle<Value>
|
||||
Matrix::Empty(const Arguments& args){
|
||||
|
||||
@ -9,7 +9,6 @@ class Matrix: public node::ObjectWrap {
|
||||
static Handle<Value> New(const Arguments &args);
|
||||
Matrix();
|
||||
Matrix(cv::Mat other, cv::Rect roi);
|
||||
Matrix(cv::Mat other);
|
||||
Matrix(int rows, int cols);
|
||||
Matrix(int rows, int cols, int typ);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user