Skip to content

Commit 5f51a42

Browse files
committed
chore: 0.8.14
1 parent d9ee29f commit 5f51a42

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

cpp/FOCV_Function.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ jsi::Object FOCV_Function::invoke(jsi::Runtime &runtime, const jsi::Value *argum
8686
out += std::to_string(src2->cols) + "x" + std::to_string(src2->rows) + " type: " + std::to_string(src2->type());
8787
value.setProperty(runtime, "value", out);
8888

89-
if (count > 7)
90-
{
91-
auto dtype = args.asNumber(7);
92-
93-
cv::addWeighted(*src1, alpha, *src2, beta, gamma, *dst, dtype);
94-
break;
95-
}
96-
cv::addWeighted(*src1, alpha, *src2, beta, gamma, *dst);
89+
// if (count > 7)
90+
// {
91+
// auto dtype = args.asNumber(7);
92+
93+
// cv::addWeighted(*src1, alpha, *src2, beta, gamma, *dst, dtype);
94+
// break;
95+
// }
96+
// cv::addWeighted(*src1, alpha, *src2, beta, gamma, *dst);
9797
}
9898
break;
9999
case hashString("batchDistance", 13):

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@redchili/react-native-fast-opencv",
3-
"version": "0.8.13",
3+
"version": "0.8.14",
44
"description": "OpenCV port to React Native",
55
"source": "./src/index.tsx",
66
"main": "./lib/commonjs/index.js",

0 commit comments

Comments
 (0)