Skip to content

Instantly share code, notes, and snippets.

View MichaelPHolstein's full-sized avatar

Michael Holstein MichaelPHolstein

View GitHub Profile
@MichaelPHolstein
MichaelPHolstein / script.js
Last active April 18, 2023 17:29
JavaScript file of background removal using Tensorflow and bodyPix
IMAGE_SRC = './img/8.jpg'
const loadImage = () => {
const img = new Image()
img.src = IMAGE_SRC
const canvas = document.querySelector('canvas')
const ctx = canvas.getContext('2d')
img.addEventListener('load', () => {
@MichaelPHolstein
MichaelPHolstein / index.html
Created March 11, 2021 16:40
HTML file of background removal using TensorFlow.js and BodyPix
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.2"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/body-pix@2.0"></script>
</head>
<body>
<canvas></canvas>
<script src="./script.js"></script>