Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h2>Tensorflow tfjs-models / body-pix experiment - model image output</h2>

<div class="controls">
  <div class="yellow label">Background filter</div>
  <div class="yellow">
    <select class="controlItem" id="backgroundFilter">
      <option value="">None</option>
      <option value="grayscale">Grayscale</option>
      <option value="sepia">Sepia</option>
      <option value="invert">Invert</option>
      <option value="red">Red</option>
      <option value="background-blur">Blur</option>
      <option value="pixelate">Pixelate</option>
    </select>
  </div>
  <div class="yellow label">Blur outline</div>
  <div class="yellow">
    <select class="controlItem" id="outlineFilter">
      <option value="0">False</option>
      <option value="1">True</option>
    </select>
  </div>
</div>

<canvas id="mycanvas" width="600" height="400" data-scrawl-canvas></canvas>

<p>Learn more about <a href="https://scrawl-v8.rikweb.org.uk/">Scrawl-canvas v8</a> on the library's homepage</p>

<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/[email protected]"></script>
              
            
!

CSS

              
                body {
  font-family: sans-serif;
  text-align: center;
}
canvas {
  margin: 0 auto;
}
.controls {
  display: grid;

  grid-column-gap: 2px;

  grid-template-rows: auto;
  grid-row-gap: 2px;

  font-size:  12px;
  grid-template-columns: 1fr 2fr 1fr 2fr;
}
.controls div {
  box-sizing: border-box;
  justify-self: stretch;
  align-self: center;
  text-align: center;
  padding: 6px 0;
}
.label {
  font-weight: bold;
}
.yellow {
  background-color: palegoldenrod;
}
.controls select {
  border: 0;
}
.controls input {
  width: 70%;
}

              
            
!

JS

              
                import * as scrawl from "https://unpkg.com/[email protected]";

// Grab a handle to the canvas element in the DOM
const canvas = scrawl.library.canvas.mycanvas;

// Create some filters which we can use for the demo background
scrawl.makeFilter({
    name: "grayscale",
    method: "grayscale"
  })
  .clone({
    name: "sepia",
    method: "sepia"
  })
  .clone({
    name: "invert",
    method: "invert"
  })
  .clone({
    name: "red",
    method: "red"
  });

scrawl.makeFilter({
  name: "pixelate",
  method: "pixelate",
  tileWidth: 20,
  tileHeight: 20,
});

scrawl.makeFilter({
  name: "background-blur",
  method: "gaussianBlur",
  radius: 20
});

scrawl.makeFilter({
  name: "body-blur",
  method: "gaussianBlur",
  radius: 10
});

// TensorFlow functionality - we'll handle everything in a raw asset object, which a Scrawl-canvas Picture entity can then use as its source
let myAsset = scrawl.makeRawAsset({
  name: "tensorflow-model-interpreter",

   // We're only interested in the pixel allocations generated by the tensorflow model for this demo
  userAttributes: [
    {
      key: "data",
      defaultValue: [],
      setter: function (item) {
        if (item && item.width && item.height && item.data) {
          this.canvasWidth = item.width;
          this.canvasHeight = item.height;
          this.data = item.data;
          this.dirtyData = true;
        }
      }
    },
    // We'll use these additional attributes in the update function, below
    {
      key: "canvasWidth",
      defaultValue: 0,
      setter: () => {}
    },
    {
      key: "canvasHeight",
      defaultValue: 0,
      setter: () => {}
    }
  ],

  // Every time the TensorFlow model sends back new data, we can process it here in our RawAsset object
  updateSource: function (assetWrapper) {
    
    // The RawAsset object supplies its own canvas element and context engine, alongside the attributes we defined earlier
    const { element, engine, canvasWidth, canvasHeight, data } = assetWrapper;

    if (canvasWidth && canvasHeight && data) {
      
      // Create a new image asrtray and image data object for each data update
      const segLength = canvasWidth * canvasHeight,
        imageDataLen = segLength * 4,
        imageArray = new Uint8ClampedArray(imageDataLen);

      for (let i = 0, o = 0; i < segLength; i++) {
        o = i * 4 + 3;
        if (data[i]) imageArray[o] = 255;
      }

      const iData = new ImageData(imageArray, canvasWidth, canvasHeight);

      // Clear the canvas, resizing it if required
      element.width = canvasWidth;
      element.height = canvasHeight;

      engine.putImageData(iData, 0, 0);
    }
  }
});

// The forever loop function, which captures the TensorFlow model's output and passes it on to our raw asset for processing
const perform = function (net) {
  
  net.segmentPerson(video.source)
  .then((data) => {
    myAsset.set({ data });
    perform(net);
  })
  .catch((e) => console.log('Perform error', e.message));
};


// Import and use livestream ... convenience handles for the media stream asset and the Scrawl-canvas entitys
let video, myBackground, myOutline;


// Capture the media stream
scrawl.importMediaStream({
    name: "device-camera",
    audio: false
})
.then((mycamera) => {
  
  video = mycamera;

  // This fixes the issue in Firefox where the media stream will crash TensorFlow if the stream's video element's dimensions have not been set
  video.source.width = "1280";
  video.source.height = "720";

  // Take the media stream and display it in our canvas element
  myBackground = scrawl.makePicture({
    name: "background",
    asset: mycamera.name,
    order: 2,

    width: "100%",
    height: "100%",

    copyWidth: "80%",
    copyHeight: "80%",
    copyStartX: "10%",
    copyStartY: "10%",
    
    filters: ['pixelate'],
    globalCompositeOperation: "destination-over"
  });

  myBackground.clone({
    name: "body",
    order: 1,
    filters: [],
    globalCompositeOperation: "source-in"
  });

  // We need confirmation that the media stream is working before we start the model running
  video.source.addEventListener('loadeddata', (event) => {

    // Start the TensorFlow model
    bodyPix.load()
    .then((net) => {
    
      // Display the visual generated by our raw asset
      myOutline = scrawl.makePicture({
        name: "outline",
        asset: "tensorflow-model-interpreter",
        order: 0,

        width: "100%",
        height: "100%",

        copyWidth: "80%",
        copyHeight: "80%",
        copyStartX: "10%",
        copyStartY: "10%",

        // We blur here to make the outline merge into the background
         filters: ["body-blur"]
      });

      // Invoke the forever loop
      perform(net);
    })
    .catch((e) => console.log('BodyPix error', e.message));
  });
})
.catch((e) => console.log('Media stream error', e.message));


// Create the Scrawl-canvas Display cycle animation
scrawl.makeRender({
  name: "demo-animation",
  target: canvas
});


// User interaction - Event listeners
scrawl.addNativeListener(
  
  ["input", "change"],
  
  (e) => {
    e.preventDefault();
    e.returnValue = false;

    if (e && e.target) {
      const id = e.target.id,
        val = e.target.value;

      if ("backgroundFilter" === id) {
        
        myBackground.clearFilters();
        if (val) myBackground.addFilters(val);
        
      } else {
        
        if ("1" === val) myOutline.addFilters("body-blur");
        else myOutline.clearFilters();
      }
    }
  },
  ".controlItem"
);

// Set DOM form initial input values
document.querySelector("#backgroundFilter").value = "pixelate";
document.querySelector("#outlineFilter").value = "1";

              
            
!
999px

Console