Hello everybody,
Currently setting up DeepAr in my project and I’m having issues with the background segmentation example. I’m using the example provided here → GitHub - ridvanaltun/react-native-deepar: Snapchat-like filters, AR lenses, and real-time facial animations..
More specifically:
import {TextureSourceTypes} from 'react-native-deepar';
import RNFetchBlob from 'rn-fetch-blob';
RNFetchBlob.config({})
.fetch('GET', 'https://images.unsplash.com/photo-1674699244554-935d4a31b3ae?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=800&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY3NjI5NzgzOQ&ixlib=rb-4.0.3&q=80&w=450')
.then((res) => {
deepARRef?.current?.changeParameterTexture({
gameObject: 'Background',
component: 'MeshRenderer',
parameter: 's_texColor',
type: TextureSourceTypes.BASE64,
value: res.base64(),
});
});
(I have only changed the URL)
Requesting any help on the matter.
(NOTE: I followed the example for the 8bitheart effect and it worked perfectly, only have an issue with background segmentation over the web.)