From 0d2db59e45c57d7ec65afe9e2cdceb4cc2e00f2b Mon Sep 17 00:00:00 2001 From: "Morgan 'ARR\\!' Allen" Date: Wed, 12 Mar 2014 19:08:26 -0700 Subject: [PATCH] fix tabbing --- src/Matrix.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Matrix.cc b/src/Matrix.cc index 5fb6c43..90a2db4 100755 --- a/src/Matrix.cc +++ b/src/Matrix.cc @@ -1349,13 +1349,13 @@ Matrix::AdaptiveThreshold(const v8::Arguments& args) { double blockSize = args[3]->NumberValue(); double C = args[4]->NumberValue(); - Local img_to_return = Matrix::constructor->GetFunction()->NewInstance(); - Matrix *img = ObjectWrap::Unwrap(img_to_return); - self->mat.copyTo(img->mat); + Local img_to_return = Matrix::constructor->GetFunction()->NewInstance(); + Matrix *img = ObjectWrap::Unwrap(img_to_return); + self->mat.copyTo(img->mat); cv::adaptiveThreshold(self->mat, img->mat, maxVal, adaptiveMethod, thresholdType, blockSize, C); - return scope.Close(img_to_return); + return scope.Close(img_to_return); } Handle