SYMBOL INDEX (50 symbols across 12 files) FILE: anonymizer/anonymization/anonymizer.py function load_np_image (line 9) | def load_np_image(image_path): function save_np_image (line 15) | def save_np_image(image, image_path): function save_detections (line 20) | def save_detections(detections, detections_path): class Anonymizer (line 35) | class Anonymizer: method __init__ (line 36) | def __init__(self, detectors, obfuscator): method anonymize_image (line 40) | def anonymize_image(self, image, detection_thresholds): method anonymize_images (line 49) | def anonymize_images(self, input_path, output_path, detection_threshol... FILE: anonymizer/bin/anonymize.py function parse_args (line 25) | def parse_args(): function main (line 79) | def main(input_path, image_output_path, weights_path, image_extensions, ... FILE: anonymizer/detection/detector.py class Detector (line 7) | class Detector: method __init__ (line 8) | def __init__(self, kind, weights_path): method _convert_boxes (line 22) | def _convert_boxes(self, num_boxes, scores, boxes, image_height, image... method detect (line 38) | def detect(self, image, detection_threshold): FILE: anonymizer/detection/weights.py function get_weights_path (line 14) | def get_weights_path(base_path, kind, version='1.0.0'): function _download_single_model_weights (line 21) | def _download_single_model_weights(download_directory, kind, version): function download_weights (line 31) | def download_weights(download_directory, version='1.0.0'): FILE: anonymizer/obfuscation/helpers.py function kernel_initializer (line 5) | def kernel_initializer(kernels): function bilinear_filter (line 40) | def bilinear_filter(filter_size=(4, 4)): function get_default_session_config (line 69) | def get_default_session_config(memory_fraction=0.9): FILE: anonymizer/obfuscation/obfuscator.py class Obfuscator (line 10) | class Obfuscator: method __init__ (line 12) | def __init__(self, kernel_size=21, sigma=2, channels=3, box_kernel_siz... method _gaussian_kernel (line 51) | def _gaussian_kernel(self, kernel_size=30, sigma=5): method _build_graph (line 67) | def _build_graph(self): method _get_all_masks (line 108) | def _get_all_masks(self, bboxes, images): method _get_box_mask (line 124) | def _get_box_mask(self, box_array, image_size): method _obfuscate_numpy (line 141) | def _obfuscate_numpy(self, images, bboxes): method obfuscate (line 160) | def obfuscate(self, image, boxes): FILE: anonymizer/utils/box.py class Box (line 1) | class Box: method __init__ (line 2) | def __init__(self, x_min, y_min, x_max, y_max, score, kind): method __repr__ (line 10) | def __repr__(self): method __eq__ (line 13) | def __eq__(self, other): FILE: test/anonymization/anonymizer_test.py function load_np_image (line 8) | def load_np_image(image_path): class MockObfuscator (line 14) | class MockObfuscator: method obfuscate (line 15) | def obfuscate(self, image, boxes): class MockDetector (line 22) | class MockDetector: method __init__ (line 23) | def __init__(self, detected_boxes): method detect (line 26) | def detect(self, image, detection_threshold): class TestAnonymizer (line 30) | class TestAnonymizer: method test_it_anonymizes_a_single_image (line 32) | def test_it_anonymizes_a_single_image(): method test_it_anonymizes_multiple_images (line 50) | def test_it_anonymizes_multiple_images(tmp_path): FILE: test/detection/detector_test.py function box_covers_box (line 9) | def box_covers_box(covering_box: Box, covered_box: Box): function load_np_image (line 14) | def load_np_image(image_path): class TestDetector (line 20) | class TestDetector: method test_it_detects_obvious_faces (line 22) | def test_it_detects_obvious_faces(tmp_path): FILE: test/detection/weights_test.py class TestDownloadWeights (line 4) | class TestDownloadWeights: method test_it_downloads_weights (line 6) | def test_it_downloads_weights(tmp_path): FILE: test/obfuscation/obfuscator_test.py class TestObfuscator (line 7) | class TestObfuscator: method test_it_obfuscates_regions (line 9) | def test_it_obfuscates_regions(): FILE: test/utils/box_test.py class TestBox (line 4) | class TestBox: method test_it_has_coordinates_a_score_and_a_kind (line 6) | def test_it_has_coordinates_a_score_and_a_kind():