mirror of
https://github.com/qwertyforce/scenery.git
synced 2025-05-31 11:42:35 +00:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import db_ops from '../helpers/db_ops'
|
|
|
|
async function delete_sift_feature_by_id() {
|
|
// const color_hist_image_ids=[]
|
|
const similarities_image_ids=[-1]
|
|
for (const id of similarities_image_ids){
|
|
await db_ops.image_search.delete_sift_feature_by_id(id)
|
|
}
|
|
process.exit()
|
|
}
|
|
delete_sift_feature_by_id() |