### Next: 91 BUG-60: entries per page in flat view will get how_many from each top-level dir in PATH - causes viewer to get lost in eids for last_eid BUG-85: once we rebuild data from scratch, need to reset just clean out pa_user_state's BUG-87: using Person->show matches->then view an image shows bug in viewer with msising data in json -- that same image via a filename search works... -- seems some faces have an empty locn, but do have a w and h... (ORM - tmp_locn vs locn???) # select id, locn, w, h from face where locn is null; (count shows 500+ at the moment) interestingly, there is a face for todd in this file: 693, is there more than 1???? HMMM, or when I delete Richard Tan?? (but 500???) still, the face with no locn also is not connected to any file, SO, why is it a part of the view / select data (is it in the set where we do an AI: search for all AI searches, because its more than todd that fails AI) OKAY, there is something wrong in the DB on several levels, searched on AI:craig, I get 34211 as a hit, BUT, viewing that file, there is no face at all - feels unlikely, checking DB: I deleted all faces with no locn, maybe it is a one-off with all the crap I did with the ORM / tmp_locn.... Will see if it comes back, this stays as a bug for now BUG-89: refimg face_locn also got transformed -- some sequence of adding/removing refimg from mich, caused Cams to fail??? pa=# select id, fname, orig_w, orig_h, face_locn from refimg where id=1; id | fname | orig_w | orig_h | face_locn ----+----------+--------+--------+---------------------- 1 | cam.jpg | 978 | 1348 | {514,869,1313,70} BUG-90: I added photo of mich as kid (ice-cream in paris) and then somehow it matches that photo to Cam's face, not the same img -- is this a bug in my code, or some weird quirk of face_recognition library??? - either lib. is weird; OR - I should get a lower score for mich in that image, and somehow my order/face matching is not doing the right thing BUG-91: uploading reference images from a phone, does soemthing to the format (they are uploaded as some sort of TIFF inside jpeg?: "JPEG image data, Exif standard: [TIFF image data, little-endian, direntries=12, height=3024, manufacturer=samsung, model=SM-G980F, orientation=upper-right, xresolution=210, yresolution=218, resolutionunit=2, software=G980FXXUEFVDB, datetime=2022:07:03 14:04:43, width=4032], baseline, precision 8, 4032x3024, components 3" and then face_recognition.load_image cant find a face in it -- but, if I uplaod via a browser, its a more normal jpeg that I can find a face in... ODD)