Published
Edited
Dec 1, 2021
1 fork
8 stars
Also listed in…
Image
Color
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
x = d3.scaleLinear().range([0, width])
Insert cell
y = d3.scaleLinear().range([height, 0])
Insert cell
data = {
const h = ((image.naturalHeight / image.naturalWidth) * w) | 0,
context = DOM.context2d(w, h, 1);

context.drawImage(image, 0, 0, w, h);

const colors = [],
data = context.getImageData(0, 0, w, h).data;

for (let i = 0; i < data.length; i += 4) {
const c = d3.rgb(data[i] + .001, data[i + 1], data[i + 2]),
hsl = d3.hsl(c),
color = [
Math.sin((hsl.h / 180) * Math.PI),
Math.cos((hsl.h / 180) * Math.PI),
hsl.s,
hsl.l,
c.r,
c.g,
c.b
];
color.c = c;
colors.push(color);
}

return colors;
}
Insert cell
coordinates = Generators.observe(
worker(
fit,
{ data, show_dynamic, w },
`
const window = {};
importScripts("https://unpkg.com/umap-js@1.3.1/lib/umap-js.js");
const UMAP = window.UMAP;
`
)
)
Insert cell
Insert cell
Insert cell
Insert cell
fit = function* fit({ data, show_dynamic, w }) {
yield Array.from(data, (_, i) => [i % w, (-i / w) | 0]);

const umap = new UMAP({
nComponents: 2,
minDist: 0.1,
nNeighbors: 50
}),
nEpochs = umap.initializeFit(data);

yield umap.getEmbedding();
for (let i = 0; i < nEpochs; i++) {
umap.step();
if (show_dynamic && i % 10 === 0) yield umap.getEmbedding();
}
yield umap.getEmbedding();
}
Insert cell
image = d3.image(
"https://cors-anywhere.herokuapp.com/" +
"https://www.centrepompidou.fr/media/picture/2e/e5/2ee5e3cc433b632c7a818e6f1c00e07e/thumb_medium.jpg",
{ crossOrigin: "anonymous" }
)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more