remove temporary code to fix faces (move coords from locn to top, right, etc.)

This commit is contained in:
2022-12-23 16:04:46 +11:00
parent 6774bb101f
commit 46c0f3a06f
2 changed files with 0 additions and 30 deletions

View File

@@ -15,7 +15,6 @@ import json
################################################################################
# Class describing Face in the database and DB via sqlalchemy
# - face contains the binary version of numpy array so we dont need to recalc it
# - locn is the pixel coords of the face (top, right, bottom, left)
# - refimg_lnk and facefile_lnk are viewOnly / just for convenience in viewer
# - refimg is a real link to the refimg used for this face (its is only used in
# viewer, and is either set when there is a matched face, or None if no match
@@ -24,7 +23,6 @@ class Face(PA,db.Model):
__tablename__ = "face"
id = db.Column(db.Integer, db.Sequence('face_id_seq'), primary_key=True )
face = db.Column( db.LargeBinary )
locn = db.Column( db.String )
face_top = db.Column( db.Integer )
face_right = db.Column( db.Integer )
face_bottom = db.Column( db.Integer )