Skip to content

Commit 2568f3c

Browse files
Merge pull request #721 from EmilRais/patch-1
Fix SplitChannelsAsync
2 parents c92e642 + 0c11c21 commit 2568f3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cc/core/Mat.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ NAN_MODULE_INIT(Mat::Init) {
8080
Nan::SetPrototypeMethod(ctor, "copyMakeBorder", CopyMakeBorder);
8181
Nan::SetPrototypeMethod(ctor, "copyMakeBorderAsync", CopyMakeBorderAsync);
8282
Nan::SetPrototypeMethod(ctor, "splitChannels", Split);
83-
Nan::SetPrototypeMethod(ctor, "splitChannelsAsync", Split);
83+
Nan::SetPrototypeMethod(ctor, "splitChannelsAsync", SplitAsync);
8484

8585
#if CV_VERSION_GREATER_EQUAL(3, 2, 0)
8686
Nan::SetPrototypeMethod(ctor, "rotate", Rotate);

0 commit comments

Comments
 (0)