You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to cause many other functions to fail aswell. I am not sure how to fix this. jlopencv_core_Mat_mutable_data is defined like this and CxxMat is the Julia type for C++ Mat
I try to add a copy with x in this function (filename "mat_conversion.jl") and it successfully run, but I'm not sure if that will make the code less efficient. function cpp_to_julia(var::CxxWrap.StdVector{T}) where {T <: CxxMat} ret = Array{Mat, 1}() for x in var y=copy(x) push!(ret, cpp_to_julia(y)) end return ret end
Also noted in https://discourse.julialang.org/t/julia-opencv-binding-no-method-matching-jlopencv-core-mat-mutable-data-in-split-function/58284 (with the same
split
function).The text was updated successfully, but these errors were encountered: