Skip to content

Commit e8aa574

Browse files
committed
chore: 0.8.7
1 parent da1dbff commit e8aa574

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

cpp/FOCV_Function.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,13 @@ jsi::Object FOCV_Function::invoke(jsi::Runtime &runtime, const jsi::Value *argum
8282
auto gamma = args.asNumber(5);
8383
auto dst = args.asMatPtr(6);
8484

85+
string info = *src1.rows + " " + *src1.cols + " " + *src1.type();
86+
string info2 = *src2.rows + " " + *src2.cols + " " + *src2.type();
87+
string out = info1 + " " + info2;
88+
89+
value.setProperty(runtime, "value", out);
90+
return -1;
91+
8592
if (count > 7)
8693
{
8794
auto dtype = args.asNumber(7);

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.6",
3+
"version": "0.8.7",
44
"description": "OpenCV port to React Native",
55
"source": "./src/index.tsx",
66
"main": "./lib/commonjs/index.js",

0 commit comments

Comments
 (0)