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 🙏

© 2026 – Pkg Stats / Ryan Hefner

psudo

v0.14.0

Published

WASM palette optimization for multi-channel microscopy (Web Worker by default)

Readme

psudo

WASM palette optimization for multi-channel microscopy imaging (C3 color-name distances, perceptual separation, optional spatial overlap).

Paper: psudo: Exploring Multi-Channel Biomedical Image Data with Spatially and Perceptually Optimized Pseudocoloring

Installation

npm install psudo

Requires a bundler that supports WebAssembly (Vite recommended).

Vite

npm install vite-plugin-wasm vite-plugin-top-level-await
// vite.config.js
import wasm from "vite-plugin-wasm";
import topLevelAwait from "vite-plugin-top-level-await";

export default {
  plugins: [wasm(), topLevelAwait()],
  worker: {
    plugins: () => [wasm(), topLevelAwait()],
  },
};

Import (Web Worker by default)

All exports are async. optimize() uses a pool of module workers (up to 4) so NM multistarts—and the 6ch rescue pass—run in parallel off the main thread. Other calls use one worker from the pool.

import * as psudo from "psudo";

// optional: preload WASM before the user clicks Optimize
await psudo.warmup();

const optimized = await psudo.optimize(/* ... */);

TypeScript types: index.d.ts. For synchronous WASM on the main thread (tests, debugging):

import * as psudo from "psudo/sync";
const optimized = psudo.optimize(/* ... */);

Named imports:

import { optimize, calculate_palette_loss, channel_gmm, ln, warmup } from "psudo";

optimize — palette colors (main API)

Returns a Float32Array of linear sRGB in 0–1, length 3 × nChannels (channel-major: [r,g,b, r,g,b, …]).

import * as psudo from "psudo";

const nChannels = 4;
const nRows = 1024;

// Per-channel RGB 0–255 (flat)
const colors = new Uint16Array([
  255, 0, 0,    // ch0 red
  0, 255, 0,    // ch1 green
  0, 0, 255,    // ch2 blue
  255, 255, 0,  // ch3 yellow
]);

// 1 = locked (held fixed), 0 = free to optimize
const locked = new Uint16Array([0, 0, 1, 0]);

// Intensities: column-major, shape nRows × nChannels
// index = channel * nRows + row
const intensities = new Uint16Array(nRows * nChannels);
for (let ch = 0; ch < nChannels; ch++) {
  for (let row = 0; row < nRows; row++) {
    intensities[ch * nRows + row] = 8000 + ((row * 13 + ch * 997) % 50000);
  }
}

// Per channel: [min, max] contrast (uint16)
const contrastLimits = new Uint16Array(nChannels * 2);
for (let i = 0; i < nChannels; i++) {
  contrastLimits[i * 2] = 0;
  contrastLimits[i * 2 + 1] = 65535;
}

// OKLab L bounds × 100 (e.g. 0.50–0.92)
const luminance = new Uint16Array([50, 92]);

const excluded = ["grey", "white", "lightgrey", "darkgrey", "offwhite"];
const colorNames = ["red", "", "blue", ""]; // optional C3 hint per channel; "" = none

const optimized = await psudo.optimize(
  colors,
  locked,
  intensities,
  contrastLimits,
  luminance,
  excluded,
  colorNames,
  undefined, // max_iters (default 3000, scaled by channel count)
  undefined, // confusion_baseline_samples
  false,     // include_spatial_channel_overlap (false = fast color-only path)
  undefined  // num_restarts
);

// Display RGB 0–255
for (let ch = 0; ch < nChannels; ch++) {
  const i = ch * 3;
  const rgb = [
    Math.round(optimized[i] * 255),
    Math.round(optimized[i + 1] * 255),
    Math.round(optimized[i + 2] * 255),
  ];
  console.log(`channel ${ch}:`, rgb);
}

React (client-only)

Call optimize inside useEffect or an event handler so WASM runs in the browser, not during SSR:

import { useState, useCallback } from "react";
import * as psudo from "psudo";

export function usePaletteOptimizer() {
  const [busy, setBusy] = useState(false);

  const runOptimize = useCallback((colors, locked, intensities, contrast, lum, excluded, names) => {
    setBusy(true);
    try {
      return await psudo.optimize(
        colors,
        locked,
        intensities,
        contrast,
        lum,
        excluded,
        names,
        undefined,
        undefined,
        false
      );
    } finally {
      setBusy(false);
    }
  }, []);

  return { runOptimize, busy };
}

Other exports

| Function | Description | |----------|-------------| | optimize | Simulated-annealing palette optimization → Float32Array linear RGB | | calculate_palette_loss | Loss breakdown object for a palette + intensities | | channel_gmm | Per-channel GMM contrast limits from raw Uint16Array data; optional subsample (default 40000), tol (1e-6), max_iter (1000) | | ln | Log transform of intensity data | | optimize_in_lens | Lens-local confusion metric (scalar) |

calculate_palette_loss

import { calculate_palette_loss } from "psudo";

const loss = await calculate_palette_loss(
  intensities,
  colors,
  contrastLimits,
  luminance,
  excluded,
  colorNames,
  false // include_spatial_channel_overlap
);

console.log(loss.perceptual_distance, loss.name_distance, loss.min_display_rgb_distance);

Optional parameters (optimize)

| Argument | Default (WASM) | Notes | |----------|----------------|-------| | max_iters | 3000 (× channels/3) | Higher = slower, often better | | confusion_baseline_samples | 32 | MC samples when spatial overlap is on | | include_spatial_channel_overlap | false | true uses image intensities in objective (slower) | | num_restarts | 12 (× channels/3, max 32 WASM) | Nelder–Mead multistarts; best total wins |

On native builds, multistarts run in parallel via rayon. In the browser, optimize() parallelizes the same multistarts across workers (setParallelMultistart(false) falls back to one sequential WASM run per call).

Building from source

# From the psudo repo root
pnpm run wasm-build
# Artifacts: lib/pkg/ (index.js, psudo.worker.js, psudo.js, psudo_bg.wasm, …)

Publish to npm from lib/pkg after wasm-pack build (see repo root README).

Publication

Developed by Simon Warchol, Jakob Troidl, Jeremy Muhlich, Robert Krueger, John Hoffer, Tica Lin, Johanna Beyer, Elena Glassman, Peter Sorger, and Hanspeter Pfister.

Affiliations

  • Harvard John A. Paulson School of Engineering and Applied Sciences
  • Harvard Medical School
  • New York University Tandon School of Engineering