You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -419,12 +421,13 @@ async function Stream_Search_Run() {
419
421
//END: loop for drawing the boxes of the face rectangles on the canvas, selected box has a different stroke style
420
422
421
423
//START: in a separate loop, search and fill keywords for a randomly selected face in the faces array rect_face_array (next version should use tree based indexes on clusters)
422
-
letdb_search_delay=2500;//amount of time the DB has to find data related to a face, in ms
424
+
letdb_search_delay=3000;//amount of time the DB has to find data related to a face, in ms
423
425
letmax_records=awaitNumber_of_Tagging_Records();
424
-
letrecord_sample_num=Math.min(5000,Math.floor(1*max_records));//allow up to 4K records to be searched in each sweep since more may incur too much delay
426
+
letrecord_sample_num=Math.min(max_sample_num,Math.floor(1*max_records));//allow up to 4K records to be searched in each sweep since more may incur too much delay
425
427
letface_keywords=[];//holds the keywords for the selected image in focus
426
428
letface_including_images=[];//holds the images where a face match was found (could be 1 face in many present)
427
429
letface_including_memes=[];//holds the memes connected to a face match was found (could be 1 face in many present)
430
+
//const file_type_lookup = new Map(); //holds the file types to ignore videos
428
431
asyncfunctionface_db_search(){
429
432
//will improve in next version !!!! XXX use tree based methods!!!
430
433
face_keywords=[];//reset the keywords
@@ -442,8 +445,22 @@ async function Stream_Search_Run() {
0 commit comments