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
Might want to take a look at properly handing over the cv::mat from the java to native thread in the app. That segfault is probably caused by calling processFrame in the UI thread and passing the cv::mat to a native thread. Wrapping that function call in
Might want to take a look at properly handing over the cv::mat from the java to native thread in the app. That segfault is probably caused by calling
processFrame
in the UI thread and passing the cv::mat to a native thread. Wrapping that function call inwill solve the crash, but constrain everything to be run on the UI thread killing performance.
The text was updated successfully, but these errors were encountered: