StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
974 B
31 lines
974 B
4 years ago
|
"use strict"
|
||
|
|
||
|
var surfaceNets = require("../surfacenets.js")
|
||
|
var ndarray = require("ndarray")
|
||
|
var fill = require("ndarray-fill")
|
||
|
|
||
|
var array = ndarray(new Float32Array(33*33), [33,33])
|
||
|
fill(array, function(i,j) {
|
||
|
return Math.pow(i-16,2) + Math.pow(j-16,2)
|
||
|
})
|
||
|
|
||
|
var complex = surfaceNets(array, 15*15)
|
||
|
|
||
|
complex.positions.forEach(function(pt) {
|
||
|
pt[0] += 1
|
||
|
pt[1] += 1
|
||
|
})
|
||
|
|
||
|
var svgFile = ['<svg xmlns="http://www.w3.org/2000/svg" width="340" height="340">']
|
||
|
complex.cells.forEach(function(cell) {
|
||
|
var p0 = complex.positions[cell[0]]
|
||
|
var p1 = complex.positions[cell[1]]
|
||
|
svgFile.push('<line x1="', 10*p0[0], '" y1="', 10*p0[1], '" x2="', 10*p1[0], '" y2="', 10*p1[1], '" stroke="red" stroke-width="1" />')
|
||
|
})
|
||
|
complex.positions.forEach(function(p) {
|
||
|
svgFile.push('<circle cx="', 10*p[0], '" cy="', 10*p[1], '" r="1" stroke="black" stroke-width="0.1" fill="black" />')
|
||
|
})
|
||
|
svgFile.push('</svg>')
|
||
|
|
||
|
var fs = require("fs")
|
||
|
fs.writeFileSync("example/2d.svg", svgFile.join(""))
|