We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aedf84c commit 56bd5f1Copy full SHA for 56bd5f1
1 file changed
cpp/FOCV_Function.cpp
@@ -84,8 +84,8 @@ jsi::Object FOCV_Function::invoke(jsi::Runtime &runtime, const jsi::Value *argum
84
85
Mat src1 = *src1;
86
Mat src2 = *src2;
87
- String info1 = src1.rows + " " + src1.cols + " " + src1::type();
88
- String info2 = src2.rows + " " + src2.cols + " " + src2::type();
+ String info1 = std::to_string(src1->rows) + " " + std::to_string(src1->cols) + " " + std::to_string(src1->type());
+ String info2 = std::to_string(src2->rows) + " " + std::to_string(src2->cols) + " " + std::to_string(src2->type());
89
String out = info1 + " " + info2;
90
91
value.setProperty(runtime, "value", out);
0 commit comments