Closed arijith96 closed 3 years ago
Hi @sgowroji
Any update on this? I saw that you had changed the label to awaiting response
If you are looking for face mesh or hands refer those classes where we store the results of the image.
If you wanted for other solutions you can try this approach https://github.com/google/mediapipe/issues/2144 .
Hi @sgowroji
If I followed what was mentioned in #2144 correctly, the CameraX API would just provide us with the camera image. I was looking for something similar to the recently released Android Solutions, but not for face mesh and hands, rather for Object Detection, Box Tracking, KNIFT. Do correct me if I am wrong here. Quite new to Mediapipe and Android
You should wait for some days to get the other gradle android solutions . You can try the #2144 approach by building AAR specific to your solution, Here you need to implement the logic in JAVA.
Thank you for your reply! I will try to proceed as suggested.
In response to your comment, by when could we expect the other gradle android solutions to be released? Would all the android solutions be supported with gradle? Looking forward to trying them out! :D
@arijith96, We will let you know ETA soon. Thank you for the reply.
@sgowroji Please, is there anything new about this?
System information (Please provide as much relevant information as possible)
Describe the expected behaviour: I wanted to know how I could go about saving the output of any of MediaPipe's graphs in the form of a Bitmap or just as an image file. We could just rewrite the same bitmap whenever the output frame is updated, but I am unclear how to go about this since the output of the graph is directly written onto the
SurfaceView
with the callprocessor.getVideoSurfaceOutput().setSurface(holder.getSurface())
Would I need another calculator like the GpuBufferToImageFrame before I send it to the
output_stream
?Any help to guide me in the right direction would be highly appriciated! Amazing work with MediaPipe! :) Learning alot!