Sébastien Jalliffier Verne
Sébastien Jalliffier Verne
You can also try adding `"-s ASSERTIONS=1",` to the linking options to get some memory debugging info: https://github.com/volcomix/virtual-background/blob/main/tflite/BUILD#L28-L32
It would help if you manage to get any error from the JavaScript console, but I suspect that the issue is due to a version of Safari which doesn't support...
The error which appears when asking to kill the existing process seems to be related to `find-process` module because: ```bash $ npx find-process 32431 Found 1 process [python] pid: 32431...
@adamduren I don't have access to the related codebase anymore but AFAIR I ignored the event in this case.
Hi, I haven't found yet how to import the tflite through ES imports. So for now I ended up putting them into the public directory and including it directly as...
I think that should be possible by passing an HTMLVideoElement up to this function: https://github.com/Volcomix/virtual-background/blob/8727dec60c5b94ce9c21701c1aa98fa62ae353b7/src/pipelines/webgl2/backgroundImageStage.ts#L149
Hi @cookou, the latest version of the tflite build has been built from the master branch of tensorflow, so I think it's supposed to be tflite from tensorflow 2. Does...
I think in the fragment shader, changing [this line](https://github.com/Volcomix/virtual-background/blob/main/src/pipelines/webgl2/backgroundImageStage.ts#L77) to something like this should be a good starting point: ```glsl outColor = vec4(frameColor, personMask); ``` Then there is something to...
Sounds interesting indeed. For now I don't fully understand the best way to provide Segment Anything with the class "person" or "body" that we'd like to segment. Needs a bit...
I'm currently trying to fix the build. I managed to pass the Python error but now there are other errors popping related XNNPACK. You can find some updates in the...