npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

alan-view

v0.1.5

Published

Alan's view for a given image

Downloads

45

Readme

(WIP) Alan's View

a.k.a AI's View or Terminator's View, is pure canvas library to overlay measurement data on top of analysed images.

An online demo is available. Also check examples/ and examples/fixtures.json for an example of input data.

Terminator's view

Using

Having some properties/features extracted from a given image:

props =
  src: 'http://foo.com/bar.png'
  cover:
    colors: ...
    saliency: ...
    histogram: ...

We can setup AlanView to draw those features into a given canvas:

view = new AlanView
  canvas: document.getElementById 'some-canvas'
  maxWidth: 500
  maxHeight: 300

view.draw props

Should give something like:

Result

It is also possible to hide layers:

view = new AlanView
  canvas: document.getElementById 'some-canvas'
  maxWidth: 500
  maxHeight: 300
  noCircle: true
  noSceneFading: true
  noColors: true

view.draw props

Those are the options available:

  • noSaliency: hides the salient region bounding box
    • noPolygon: hides the polygon around the salient region
    • noCircle: hides the circle around the salient region
  • noFaces: hides faces bounding boxes
    • noFaceConfidence: hide confidence levels for faces
  • noScene: hides scene bounding box
    • noSceneFading: hides the fading bounding box around scene
  • noLines: hides rows/columns bounding boxes
  • noColors: hides the color palette
  • noTextregions: hides textual regions
  • noBackground: do not clean the background (good for overlays)

Information displayed

Carl

Alan

  • Color palettes: 5 circles at top-left
  • Salient region: white bounding box
  • Salient polygon: white shape with no opacity
  • Salient circle: white circle
  • Scene region: green bounding box
  • Lines (columns/rows): red bounding boxes around scene region
  • Faces: blue bounding boxes around each face
  • Text regions: blue bounding boxes around textual regions