1
0
Fork 0
Face identification and recognition scalable server with multiple face directories. https://github.com/ehp/faceserver
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.
 
 
 
 

11 lines
380 B

CREATE TABLE persons (
id character varying(255) NOT NULL,
directory character varying(255) NOT NULL,
vector double precision[] NOT NULL,
filename character varying(255) NOT NULL,
filenameuid character varying(255) NOT NULL,
box integer[] NOT NULL,
score double precision NOT NULL
);
CREATE INDEX persons_directory ON persons USING btree (directory);