| Server IP : 217.154.3.148 / Your IP : 216.73.216.90 Web Server : nginx/1.30.3 System : Linux blissful-wright.217-154-3-148.plesk.page 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : gracious-boyd_hfhh1h8vo9n ( 10000) PHP Version : 8.3.31 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/gracious-boyd.217-154-3-148.plesk.page/nextjs/scripts/ |
Upload File : |
import { readFileSync } from 'node:fs';
import { inferTileSegmentation } from '../lib/segmentation/tile-unet';
(async () => {
const buf = readFileSync('samples/ComfyUI_00055_.png');
const res = await inferTileSegmentation(buf);
console.log('size', res.width, res.height);
console.log('classes', res.classes.map((c) => c.name));
console.log('coverage keys', Object.keys(res.coverage));
})();