SYMBOL INDEX (39 symbols across 2 files) FILE: detect_and_align.py function detect_faces (line 8) | def detect_faces(img, mtcnn): function prewhiten (line 37) | def prewhiten(x): function imresample (line 45) | def imresample(img, sz): function generateBoundingBox (line 50) | def generateBoundingBox(imap, reg, scale, t): function nms (line 77) | def nms(boxes, threshold, method): function rerec (line 110) | def rerec(bboxA): function pad (line 121) | def pad(total_boxes, w, h): function bbreg (line 156) | def bbreg(boundingbox, reg): function layer (line 171) | def layer(op): class Network (line 194) | class Network(object): method __init__ (line 195) | def __init__(self, inputs, trainable=True): method setup (line 207) | def setup(self): method load (line 211) | def load(self, data_path, session, ignore_missing=False): method feed (line 229) | def feed(self, *args): method get_output (line 244) | def get_output(self): method get_unique_name (line 248) | def get_unique_name(self, prefix): method make_var (line 255) | def make_var(self, name, shape): method validate_padding (line 259) | def validate_padding(self, padding): method conv (line 264) | def conv(self, inp, k_h, k_w, c_o, s_h, s_w, name, relu=True, padding=... method prelu (line 291) | def prelu(self, inp, name): method max_pool (line 299) | def max_pool(self, inp, k_h, k_w, s_h, s_w, name, padding="SAME"): method fc (line 304) | def fc(self, inp, num_out, name, relu=True): method softmax (line 322) | def softmax(self, target, axis, name=None): class PNet (line 330) | class PNet(Network): method setup (line 331) | def setup(self): class RNet (line 348) | class RNet(Network): method setup (line 349) | def setup(self): class ONet (line 369) | class ONet(Network): method setup (line 370) | def setup(self): function create_mtcnn (line 395) | def create_mtcnn(sess, model_path): function detect_face (line 426) | def detect_face(img, pnet, rnet, onet): FILE: main.py class IdData (line 13) | class IdData: method __init__ (line 16) | def __init__( method add_id (line 44) | def add_id(self, embedding, new_id, face_patch): method detect_id_faces (line 57) | def detect_id_faces(self, image_paths): method print_distance_table (line 78) | def print_distance_table(self, id_image_paths): method find_matching_ids (line 90) | def find_matching_ids(self, embs): function load_model (line 109) | def load_model(model): function main (line 121) | def main(args):