SwatiModi

Results 7 comments of SwatiModi

Hi Kunal, there were some issues because of the outdated MediaPipe version, I have updated it, you should be able to build the app successfully now.

Hi @NaeemKhan333, you can refer to the model architecture [here](https://drive.google.com/file/d/1loFXenwYLW7Rzcjc7Pm57ldyALIArBom/view), I had used MobileNetV1 as encoder backbone and a custom decoder. Also few things that you could try while building...

Hey, currently the resolution is 224x224 you can change it as follows 1. resize the input image to 224x224(model's input-size), predict and get the 224x224 background mask 2. resize both(input...

Yaa, you can actually do this by creating a new input stream which will decide the background image. Current I have hard-coded the background image [here](https://github.com/SwatiModi/virtual-background-app/blob/b5cd3463ee3455814d09efd0db7fc12c043f793e/mediapipe/calculators/image/background_masking_calculator.cc#L59) Let's consider you have...

Hi @biggieboat, I tried to reproduce the error, but I was not able to that. Although it seems to be that the error is because of file permission for the...

Hey you can setup MediaPipe on windows and the rest should be the same checkout - https://google.github.io/mediapipe/getting_started/install.html#installing-on-windows

The Android skeleton code is written in MediaPipe itself and is present in this repo