removed unneeded stuff

This commit is contained in:
Paul 2013-08-22 23:48:45 +04:00
parent 5daf9c0f4d
commit 824ffceeb2
2 changed files with 0 additions and 4 deletions

View File

@ -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){

View File

@ -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);