animedetect
Version:
Detects anime/manga characters in Node.js
10 lines (7 loc) • 329 B
text/typescript
import {animedetect, sharpen, cv} from "./anime"
(async() => {
const result = await animedetect("https://s1.zerochan.net/Klee.600.3643630.jpg", {writeDir: "./images"})
console.log(result)
//const result = await sharpen("https://s1.zerochan.net/Klee.600.3643630.jpg")
//result.write("./sharp.png")
})()