| LOW | tests/test_download.py | 4 | def test_get_static_download_size() -> None: |
| LOW | tests/test_download.py | 16 | def test_resolve_download_url_by_provider() -> None: |
| LOW | tests/test_face_analyser.py | 44 | def test_get_one_face_with_retinaface() -> None: |
| LOW | tests/test_face_analyser.py | 65 | def test_get_one_face_with_scrfd() -> None: |
| LOW | tests/test_face_analyser.py | 86 | def test_get_one_face_with_yoloface() -> None: |
| LOW | tests/test_face_analyser.py | 107 | def test_get_one_face_with_yunet() -> None: |
| LOW | tests/test_state_manager.py | 31 | def test_get_item_and_set_item() -> None: |
| LOW | tests/test_cli_frame_enhancer.py | 28 | def test_enhance_frame_to_image() -> None: |
| LOW | tests/test_cli_frame_enhancer.py | 35 | def test_enhance_frame_to_video() -> None: |
| LOW | tests/test_common_helper.py | 8 | def test_create_float_metavar() -> None: |
| LOW | tests/test_execution.py | 4 | def test_has_execution_provider() -> None: |
| LOW | tests/test_execution.py | 9 | def test_get_available_execution_providers() -> None: |
| LOW | tests/test_execution.py | 13 | def test_create_inference_providers() -> None: |
| LOW | tests/test_cli_expression_restorer.py | 27 | def test_restore_expression_to_image() -> None: |
| LOW | tests/test_cli_expression_restorer.py | 34 | def test_restore_expression_to_video() -> None: |
| LOW | tests/helper.py | 24 | def get_test_examples_directory() -> str: |
| LOW | tests/helper.py | 36 | def get_test_outputs_directory() -> str: |
| LOW | tests/helper.py | 40 | def prepare_test_output_directory() -> bool: |
| LOW | tests/test_vision.py | 51 | def test_detect_image_resolution() -> None: |
| LOW | tests/test_vision.py | 59 | def test_restrict_image_resolution() -> None: |
| LOW | tests/test_vision.py | 70 | def test_count_video_frame_total() -> None: |
| LOW | tests/test_vision.py | 77 | def test_predict_video_frame_total() -> None: |
| LOW | tests/test_vision.py | 98 | def test_detect_video_duration() -> None: |
| LOW | tests/test_vision.py | 104 | def test_count_trim_frame_total() -> None: |
| LOW | tests/test_vision.py | 126 | def test_detect_video_resolution() -> None: |
| LOW | tests/test_vision.py | 134 | def test_restrict_video_resolution() -> None: |
| LOW | tests/test_vision.py | 146 | def test_normalize_resolution() -> None: |
| LOW | tests/test_vision.py | 162 | def test_calc_histogram_difference() -> None: |
| LOW | tests/test_job_helper.py | 6 | def test_get_step_output_path() -> None: |
| LOW | tests/test_temp_helper.py | 27 | def test_get_temp_directory_path() -> None: |
| LOW | tests/test_temp_helper.py | 32 | def test_get_temp_frames_pattern() -> None: |
| LOW | tests/test_cli_face_enhancer.py | 28 | def test_enhance_face_to_image() -> None: |
| LOW | tests/test_cli_face_enhancer.py | 35 | def test_enhance_face_to_video() -> None: |
| LOW | tests/test_cli_background_remover.py | 28 | def test_remove_background_to_image() -> None: |
| LOW | tests/test_cli_background_remover.py | 35 | def test_remove_background_to_video() -> None: |
| LOW | tests/test_ffmpeg.py | 50 | def get_available_encoder_set() -> EncoderSet: |
| LOW | tests/test_ffmpeg.py | 60 | def test_get_available_encoder_set() -> None: |
| LOW | tests/test_ffmpeg_builder.py | 51 | def test_set_audio_sample_size() -> None: |
| LOW | tests/test_cli_batch_runner.py | 37 | def test_batch_run_sources_to_targets() -> None: |
| LOW | tests/test_cli_frame_colorizer.py | 29 | def test_colorize_frame_to_image() -> None: |
| LOW | tests/test_cli_frame_colorizer.py | 36 | def test_colorize_frame_to_video() -> None: |
| LOW | facefusion/execution.py | 21 | def get_available_execution_providers() -> List[ExecutionProvider]: |
| LOW | facefusion/execution.py | 33 | def create_inference_providers(execution_device_id : int, execution_providers : List[ExecutionProvider]) -> List[Inferen |
| LOW | facefusion/execution.py | 115 | def resolve_cudnn_conv_algo_search() -> str: |
| LOW | facefusion/execution.py | 126 | def resolve_openvino_device_type(execution_device_id : int) -> str: |
| LOW | facefusion/execution.py | 138 | def detect_static_execution_devices() -> List[ExecutionDevice]: |
| LOW | facefusion/content_analyser.py | 122 | def resolve_execution_providers() -> List[ExecutionProvider]: |
| LOW | facefusion/vision.py | 65 | def restrict_image_resolution(image_path : str, resolution : Resolution) -> Resolution: |
| LOW | facefusion/vision.py | 107 | def predict_video_frame_total(video_path : str, fps : Fps, trim_frame_start : int, trim_frame_end : int) -> int: |
| LOW | facefusion/vision.py | 181 | def restrict_video_resolution(video_path : str, resolution : Resolution) -> Resolution: |
| LOW | facefusion/vision.py | 274 | def conditional_match_frame_color(source_vision_frame : VisionFrame, target_vision_frame : VisionFrame) -> VisionFrame: |
| LOW | facefusion/vision.py | 298 | def calculate_histogram_difference(source_vision_frame : VisionFrame, target_vision_frame : VisionFrame) -> float: |
| LOW | facefusion/vision.py | 362 | def conditional_merge_vision_mask(vision_frame : VisionFrame, vision_mask : Mask) -> VisionFrame: |
| LOW | facefusion/download.py | 74 | def conditional_download_hashes(hash_set : DownloadSet) -> bool: |
| LOW | facefusion/download.py | 101 | def conditional_download_sources(source_set : DownloadSet) -> bool: |
| LOW | facefusion/download.py | 168 | def resolve_download_url_by_provider(download_provider : DownloadProvider, base_name : str, file_name : str) -> Optional |
| LOW | facefusion/face_landmarker.py | 191 | def conditional_optimize_contrast(crop_vision_frame : VisionFrame) -> VisionFrame: |
| LOW | facefusion/ffmpeg.py | 82 | def get_available_encoder_set() -> EncoderSet: |
| LOW | facefusion/face_helper.py | 83 | def warp_face_by_bounding_box(temp_vision_frame : VisionFrame, bounding_box : BoundingBox, crop_size : Size) -> Tuple[Vi |
| LOW | facefusion/face_helper.py | 142 | def create_rotation_matrix_and_size(angle : Angle, size : Size) -> Tuple[Matrix, Size]: |
| 108 more matches not shown… |