| 123456789101112131415161718192021222324252627 | 
							- // @flow
 - 
 - import * as bodyPix from '@tensorflow-models/body-pix';
 - import JitsiStreamBlurEffect from './JitsiStreamBlurEffect';
 - 
 - /**
 -  * Creates a new instance of JitsiStreamBlurEffect. This loads the bodyPix model that is used to
 -  * extract person segmentation.
 -  *
 -  * @returns {Promise<JitsiStreamBlurEffect>}
 -  */
 - export async function createBlurEffect() {
 -     if (!MediaStreamTrack.prototype.getSettings && !MediaStreamTrack.prototype.getConstraints) {
 -         throw new Error('JitsiStreamBlurEffect not supported!');
 -     }
 - 
 -     // An output stride of 16 and a multiplier of 0.5 are used for improved
 -     // performance on a larger range of CPUs.
 -     const bpModel = await bodyPix.load({
 -         architecture: 'MobileNetV1',
 -         outputStride: 16,
 -         multiplier: 0.50,
 -         quantBytes: 2
 -     });
 - 
 -     return new JitsiStreamBlurEffect(bpModel);
 - }
 
 
  |