File size: 884 Bytes
ef22617
 
955ce73
ef22617
 
 
 
955ce73
 
ef22617
 
 
 
 
 
 
 
 
 
 
955ce73
ef22617
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { v4 as uuidv4 } from "uuid"

import { downloadFileToTmp } from "../../utils/download/downloadFileToTmp.mts"
import { segmentImage } from "./segmentImage.mts"

// TODO we should use an inference endpoint instead

// WARNING: this function is currently unused
// if you do attempt to use it, please check the hardcoded 1024x1024 thing line 21, and refactor it to your needs
export async function segmentImageFromURL(
  inputUrl: string,
  actionnables: string[]
) {
  if (!actionnables?.length) {
    throw new Error("cannot segment image without actionnables!")
  }
  console.log(`segmenting image from URL: "${inputUrl}"`)
  const tmpFileName = `${uuidv4()}`
  const tmpFilePath = await downloadFileToTmp(inputUrl, tmpFileName)

  const results = await segmentImage(tmpFilePath, actionnables, 1024, 1024)

  console.log("image has been segmented!", results)
  return results
}