Closed ekam123 closed 2 years ago
Hi, I was wondering if there's been any progress for this issue or a timeline for it?
I have the same problem
I have the same problem as well. I filed an issue on glog about this here: https://github.com/google/glog/issues/741#issuecomment-967556006
There is a repository that can be used to repro the issue here: https://github.com/swittk/react-native-mediapipe-facemesh
It's unclear to me if this is a bug in glog, or a bug in how mediapipe is using glog.
My current hacky fix is to modify lines of the glog source to comment out the abort()
call.
Hi @ekam123 , Please refer this https://google.github.io/mediapipe/getting_started/android_archive_library.html
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you.
Closing as stale. Please reopen if you'd like to work on this further.
Hello,
I created an iOS framework following https://github.com/google/mediapipe/issues/1319#issue-748316438 and when I added it to a new iOS app, it worked perfectly. But when I added the framework to a newly created react native app it crashed everytime with a SIGABRT. The react native app is just a single screen that contains a button on the react side and on clicking, contains a bridging function that loads a ViewController that does iris tacking on the native side.
This is the line that leads to the crash from IrisTracking.mm (full code below):
[newGraph addFrameOutputStream:kOutputStream outputPacketType:MPPPacketTypePixelBuffer];
I tried looking inside MPPGraph.mm. CallFrameDelegate never gets called, so it's something about MakePacket or maybe the problem is inherent to React Native since it's single threaded? Any idea what can be causing this?
Build File:
IrisTracker.h
IrisTracker.mm