Image annotation with Python. Supports polygon, rectangle, circle, line, point, and AI-assisted annotation.
This report presents the forensic synthetic code analysis of wkentaro/labelme, a Python project with 16,041 GitHub stars. SynthScan v2.0 examined 49,195 lines of code across 206 source files, recording 868 pattern matches distributed across 11 syntactic categories. The overall adjusted score of 22.5 places this repository in the Moderate AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 868 distinct pattern matches across 11 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/unit/__main___test.py | 20 | def test_removed_flag_errors_as_unknown( | CODE |
| LOW | tests/unit/__main___test.py | 38 | def test_deprecated_alias_warns_pointing_to_canonical( | CODE |
| LOW | tests/unit/__main___test.py | 58 | def test_canonical_flag_does_not_warn( | CODE |
| LOW⚡ | tests/unit/__main___test.py | 78 | def test_parse_list_arg_splits_comma_separated_value( | CODE |
| LOW⚡ | tests/unit/__main___test.py | 84 | def test_parse_list_arg_reads_and_strips_file_lines(tmp_path: Path) -> None: | CODE |
| LOW⚡ | tests/unit/__main___test.py | 91 | def test_route_qt_logging_drops_noise_and_forwards_the_rest() -> None: | CODE |
| LOW⚡ | tests/unit/read_image_file_test.py | 23 | def test_tiff_without_alpha_encoded_as_jpeg(tmp_path: Path) -> None: | CODE |
| LOW⚡ | tests/unit/read_image_file_test.py | 29 | def test_tiff_with_alpha_encoded_as_png(tmp_path: Path) -> None: | CODE |
| LOW⚡ | tests/unit/read_image_file_test.py | 35 | def test_jpeg_returns_raw_bytes(tmp_path: Path) -> None: | CODE |
| LOW⚡ | tests/unit/read_image_file_test.py | 41 | def test_png_returns_raw_bytes(tmp_path: Path) -> None: | CODE |
| LOW | tests/unit/read_image_file_test.py | 70 | def test_constant_value_tiff_returns_black(tmp_path: Path) -> None: | CODE |
| LOW | tests/unit/read_image_file_test.py | 81 | def test_two_band_tiff_falls_back_to_first_band(tmp_path: Path) -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 64 | def test_oriented_rectangle_center_raises_for_wrong_shape_type() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 74 | def test_oriented_rectangle_center_raises_for_wrong_point_count() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 84 | def test_rotate_non_oriented_rectangle_raises() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 211 | def test_insert_point_records_label() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 219 | def test_can_remove_point_polygon_requires_more_than_three() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 228 | def test_can_remove_point_linestrip_requires_more_than_two() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 240 | def test_can_remove_point_false_for_non_polyline() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 248 | def test_remove_point_keeps_points_and_labels_in_sync() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 258 | def test_remove_point_is_noop_at_polygon_minimum() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 366 | def test_nearest_edge_index_returns_none_when_far() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 376 | def test_nearest_edge_index_returns_none_for_empty_shape() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 386 | def test_nearest_vertex_index_returns_nearest_within_epsilon() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 430 | def test_get_rotation_handle_returns_edge_midpoints( | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 440 | def test_get_rotation_handle_raises_for_non_oriented_rectangle() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 450 | def test_nearest_rotation_point_index_returns_handle_within_epsilon() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 462 | def test_nearest_rotation_point_index_returns_none_when_far() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 472 | def test_nearest_rotation_point_index_returns_none_for_non_oriented_rectangle() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 482 | def test_nearest_rotation_point_index_returns_none_for_empty_shape() -> None: | CODE |
| LOW⚡ | tests/unit/_shape_test.py | 492 | def test_oriented_rectangle_arrow_points_axis_aligned() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 22 | def _make_axis_aligned_oriented_rectangle() -> Shape: | CODE |
| LOW | tests/unit/_shape_test.py | 26 | def test_rotate_oriented_rectangle_around_origin() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 40 | def test_oriented_rectangle_center_of_axis_aligned() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 48 | def test_oriented_rectangle_center_of_rotated_rectangle() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 99 | def test_rotate_uses_source_points_snapshot_not_current_points() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 121 | def test_rotate_reports_source_points_length_in_error() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 134 | def test_nearest_vertex_index_returns_none_for_mask() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 153 | def test_nearest_vertex_index_returns_none_for_point() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 200 | def test_insert_point_keeps_points_and_labels_in_sync() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 270 | def test_remove_point_is_noop_for_non_polyline() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 282 | def test_remove_point_noop_logs_substituted_values() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 302 | def test_move_vertex_replaces_only_target_point() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 314 | def test_translate_shifts_all_points_by_offset() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 336 | def test_nearest_edge_index_matches_edge_under_point( | CODE |
| LOW | tests/unit/_shape_test.py | 348 | def test_nearest_edge_index_handles_zero_length_segment() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 399 | def test_nearest_vertex_index_returns_none_when_far() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 409 | def test_nearest_vertex_index_returns_none_for_empty_shape() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 504 | def test_oriented_rectangle_arrow_points_rotates_tip_along_direction() -> None: | CODE |
| LOW | tests/unit/_shape_test.py | 517 | def test_oriented_rectangle_arrow_points_for_non_cardinal_direction() -> None: | CODE |
| LOW | tests/unit/_shape_clipboard_test.py | 18 | def test_paste_without_store_returns_empty() -> None: | CODE |
| LOW | tests/unit/_shape_clipboard_test.py | 22 | def test_paste_returns_independent_copies_each_call() -> None: | CODE |
| LOW | tests/unit/_shape_clipboard_test.py | 36 | def test_store_snapshots_shapes_at_store_time() -> None: | CODE |
| LOW | tests/unit/_shape_clipboard_test.py | 48 | def test_store_preserves_all_shapes_in_order() -> None: | CODE |
| LOW | tests/unit/_shape_clipboard_test.py | 80 | def test_availability_changed_emits_only_on_emptiness_transitions( | CODE |
| LOW⚡ | tests/unit/_locale_test.py | 6 | def test_available_translation_locales_includes_bundled_locale() -> None: | CODE |
| LOW⚡ | tests/unit/_locale_test.py | 10 | def test_available_translation_locales_excludes_source_locale() -> None: | CODE |
| LOW⚡ | tests/unit/_locale_test.py | 14 | def test_is_valid_language_accepts_none_source_and_bundled() -> None: | CODE |
| LOW⚡ | tests/unit/_locale_test.py | 20 | def test_is_valid_language_rejects_unknown_code() -> None: | CODE |
| LOW | tests/unit/_label_file_test.py | 23 | def test_read_label_file_load_windows_path(data_path: Path, tmp_path: Path) -> None: | CODE |
| 536 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 67 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 69 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 94 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 96 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 129 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 131 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 149 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 151 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 209 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 211 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 335 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/utils/qt_test.py | 337 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 94 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 96 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 148 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 150 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 224 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 226 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 257 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 259 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 298 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 300 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 326 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 328 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 368 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 370 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 403 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/label_dialog_characterize_test.py | 405 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 101 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 103 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 136 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 138 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 155 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 157 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 185 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 187 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 223 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 225 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 251 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 253 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 281 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 283 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 334 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | …it/widgets/canvas_interaction_characterization_test.py | 336 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | …it/widgets/canvas_interaction_characterization_test.py | 403 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | …it/widgets/canvas_interaction_characterization_test.py | 415 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 37 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 39 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 49 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 51 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 66 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 68 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 99 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 101 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 207 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 209 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 267 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 269 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 291 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | tests/unit/widgets/_canvas_interaction_test.py | 293 | # --------------------------------------------------------------------------- | COMMENT |
| 6 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/conftest.py | 1 | CODE | |
| LOW | tests/unit/__main___test.py | 1 | CODE | |
| LOW | tests/unit/__main___test.py | 6 | CODE | |
| LOW | tests/unit/read_image_file_test.py | 1 | CODE | |
| LOW | tests/unit/_shape_test.py | 1 | CODE | |
| LOW | tests/unit/_shape_clipboard_test.py | 1 | CODE | |
| LOW | tests/unit/_locale_test.py | 1 | CODE | |
| LOW | tests/unit/_label_file_test.py | 1 | CODE | |
| LOW | tests/unit/_config_test.py | 1 | CODE | |
| LOW | tests/unit/utils/qt_test.py | 1 | CODE | |
| LOW | tests/unit/utils/shape_test.py | 1 | CODE | |
| LOW | tests/unit/utils/util.py | 1 | CODE | |
| LOW | tests/unit/utils/image_test.py | 1 | CODE | |
| LOW | tests/unit/_automation/_ai_assist_test.py | 1 | CODE | |
| LOW | tests/unit/_automation/conftest.py | 1 | CODE | |
| LOW | tests/unit/_automation/_shape_builders_test.py | 1 | CODE | |
| LOW | tests/unit/_automation/_text_detection_test.py | 1 | CODE | |
| LOW | tests/unit/_automation/_suppression_test.py | 1 | CODE | |
| LOW | tests/unit/_automation/_geometry_test.py | 1 | CODE | |
| LOW | tests/unit/_config/_writer_test.py | 1 | CODE | |
| LOW | tests/unit/_config/_schema_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/label_dialog_characterize_test.py | 1 | CODE | |
| LOW | …it/widgets/canvas_interaction_characterization_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/label_list_widget_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/tool_bar_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/canvas_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/zoom_widget_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/label_dialog_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/label_dialog_screen_fit_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/_shape_render_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/_canvas_interaction_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/settings_dialog_test.py | 1 | CODE | |
| LOW | tests/unit/widgets/zoom_widget_extra_test.py | 8 | CODE | |
| LOW | tests/e2e/smoke_test.py | 1 | CODE | |
| LOW | tests/e2e/file_loading_test.py | 1 | CODE | |
| LOW | tests/e2e/conftest.py | 1 | CODE | |
| LOW | tests/e2e/save_format_contract_test.py | 1 | CODE | |
| LOW | tests/e2e/navigation_test.py | 1 | CODE | |
| LOW | tests/e2e/delete_confirmation_test.py | 1 | CODE | |
| LOW | tests/e2e/annotation_test.py | 1 | CODE | |
| LOW | tests/e2e/file_operations_test.py | 1 | CODE | |
| LOW | tests/e2e/settings_test.py | 1 | CODE | |
| LOW | tests/e2e/last_label_and_restore_test.py | 1 | CODE | |
| LOW | tests/e2e/auto_save_test.py | 1 | CODE | |
| LOW | tests/e2e/oriented_rectangle_test.py | 1 | CODE | |
| LOW | tests/e2e/visibility_test.py | 1 | CODE | |
| LOW | tests/e2e/file_dialog_actions_test.py | 1 | CODE | |
| LOW | tests/e2e/drag_and_drop_test.py | 1 | CODE | |
| LOW | tests/e2e/shape_editing_test.py | 1 | CODE | |
| LOW | tests/e2e/zoom_test.py | 1 | CODE | |
| LOW | tests/e2e/label_dialog_flags_test.py | 1 | CODE | |
| LOW | tests/e2e/label_dialog_validation_test.py | 1 | CODE | |
| LOW | tests/e2e/canvas_paint_snapshot_test.py | 1 | CODE | |
| LOW | tests/e2e/status_bar_messages_test.py | 1 | CODE | |
| LOW | tests/e2e/window_geometry_persistence_test.py | 1 | CODE | |
| LOW | tests/e2e/canvas_interaction_test.py | 1 | CODE | |
| LOW | tests/e2e/brightness_contrast_test.py | 1 | CODE | |
| LOW | tests/e2e/label_list_canvas_selection_test.py | 1 | CODE | |
| LOW | tests/e2e/unsaved_changes_dialog_test.py | 1 | CODE | |
| LOW | tests/e2e/config_test.py | 1 | CODE | |
| 83 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH⚡ | tests/unit/utils/qt_test.py | 281 | keys = [s.toString() for s in action.shortcuts()] | CODE |
| HIGH⚡ | tests/unit/utils/qt_test.py | 290 | keys = [s.toString() for s in action.shortcuts()] | CODE |
| HIGH | labelme/_app.py | 2221 | logger.warning("image is null, cannot paint canvas") | STRING |
| HIGH | labelme/_widgets/_shape_render.py | 192 | if paths.orientation_arrow.length() > 0: | CODE |
| HIGH | labelme/_widgets/_shape_render.py | 198 | if paths.negative_vertices.length() > 0: | CODE |
| HIGH | labelme/_widgets/_shape_render.py | 214 | if path.length() == 0: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/unit/utils/qt_test.py | 154 | def _set_window_text(app: QtWidgets.QApplication, color: QtGui.QColor) -> None: | CODE |
| LOW | tests/e2e/settings_test.py | 20 | def _set_flag_checked(win: MainWindow, name: str) -> None: | CODE |
| LOW | labelme/_app.py | 929 | def _setup_toolbars(self) -> None: | STRING |
| LOW | labelme/_app.py | 1321 | def update_action_states(self, value: bool = True) -> None: | STRING |
| LOW | labelme/_app.py | 1942 | def set_scroll_value(self, orientation: Qt.Orientation, value: float) -> None: | STRING |
| LOW | labelme/_app.py | 1947 | def _set_zoom(self, value: float, pos: QtCore.QPointF | None = None) -> None: | STRING |
| LOW | labelme/_app.py | 1978 | def _set_zoom_to_original(self) -> None: | STRING |
| LOW | labelme/_app.py | 1992 | def set_fit_window_mode(self, value: bool = True) -> None: | STRING |
| LOW | labelme/_app.py | 1996 | def set_fit_width_mode(self, value: bool = True) -> None: | STRING |
| LOW | labelme/_app.py | 2253 | def set_save_image_with_data(self, enabled: bool) -> None: | STRING |
| LOW | labelme/_app.py | 2807 | def _update_status_stats(self, mouse_pos: QtCore.QPointF) -> None: | STRING |
| LOW | labelme/__main__.py | 54 | def _setup_loguru(logger_level: str) -> None: | CODE |
| LOW | labelme/_widgets/label_dialog.py | 28 | def set_list_widget(self, list_widget: QtWidgets.QListWidget) -> None: | CODE |
| LOW | labelme/_widgets/label_dialog.py | 218 | def _update_flags(self, text: str) -> None: | CODE |
| LOW | labelme/_widgets/label_dialog.py | 237 | def set_predefined_labels(self, labels: list[str]) -> None: | CODE |
| LOW | labelme/_widgets/label_dialog.py | 308 | def _set_flag_checkboxes(self, flags: Iterable[tuple[str, bool]]) -> None: | CODE |
| LOW | labelme/_widgets/_ai_assisted_annotation_widget.py | 119 | def set_disabled_models(self, disabled_models: tuple[str, ...]) -> None: | CODE |
| LOW | labelme/_widgets/settings_dialog.py | 259 | def _set_editor_value(self, editor: QtWidgets.QWidget, value: object) -> None: | CODE |
| LOW | labelme/_widgets/label_list_widget.py | 127 | def set_shape(self, shape: Shape | None) -> None: | CODE |
| LOW⚡ | labelme/_widgets/canvas.py | 273 | def set_fill_drawing(self, value: bool) -> None: | CODE |
| LOW⚡ | labelme/_widgets/canvas.py | 276 | def set_show_labels(self, value: bool) -> None: | CODE |
| LOW⚡ | labelme/_widgets/canvas.py | 279 | def set_allow_out_of_bounds_points(self, value: bool) -> None: | CODE |
| LOW⚡ | labelme/_widgets/canvas.py | 287 | def set_point_size(self, point_size: int) -> None: | CODE |
| LOW | labelme/_widgets/canvas.py | 303 | def set_draft_palette(self, palette: Palette) -> None: | CODE |
| LOW | labelme/_widgets/canvas.py | 403 | def set_ai_model_name(self, model_name: str) -> None: | CODE |
| LOW | labelme/_widgets/canvas.py | 406 | def set_ai_output_format(self, output_format: _automation.AiOutputFormat) -> None: | CODE |
| LOW | labelme/_widgets/canvas.py | 467 | def set_editing(self, value: bool = True) -> None: | CODE |
| LOW | labelme/_widgets/canvas.py | 521 | def _update_status(self, extra_messages: list[str] | None = None) -> None: | CODE |
| LOW | labelme/_widgets/canvas.py | 1421 | def _setup_world_transform(self, painter: QtGui.QPainter) -> None: | CODE |
| LOW | labelme/_widgets/canvas.py | 1824 | def set_shape_visible(self, shape: Shape, value: bool) -> None: | CODE |
| LOW | labelme/_config/_writer.py | 77 | def set_override(config_file: Path, key_path: Sequence[str], value: object) -> None: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | labelme/_app.py | 2814 | CODE | |
| LOW | labelme/_app.py | 1508 | CODE | |
| LOW | labelme/_app.py | 2501 | CODE | |
| LOW | labelme/_utils/shape.py | 27 | CODE | |
| LOW | labelme/_utils/image.py | 63 | CODE | |
| LOW | labelme/_widgets/_shape_render.py | 296 | CODE | |
| LOW | labelme/_widgets/_shape_render.py | 417 | CODE | |
| LOW | labelme/_widgets/settings_dialog.py | 188 | CODE | |
| LOW | labelme/_widgets/canvas.py | 686 | CODE | |
| LOW | labelme/_widgets/canvas.py | 967 | CODE | |
| LOW | labelme/_widgets/canvas.py | 1689 | CODE | |
| LOW | labelme/_widgets/canvas.py | 1714 | CODE | |
| LOW | examples/utils.py | 74 | CODE | |
| LOW | examples/instance_segmentation/labelme2coco.py | 56 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | labelme/_app.py | 1269 | self._canvas_widgets.canvas.context_menus.without_selection.clear() | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | labelme/_app.py | 1358 | except Exception as e: | STRING |
| LOW | labelme/__main__.py | 341 | except Exception as e: | CODE |
| LOW | labelme/_widgets/download.py | 64 | except Exception as e: | CODE |
| LOW | labelme/_widgets/canvas.py | 1562 | except Exception as e: | CODE |
| LOW | labelme/_widgets/canvas.py | 1599 | except Exception as e: | CODE |
| LOW | labelme/_config/__init__.py | 128 | except Exception: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | labelme/_widgets/canvas.py | 1180 | # a splitter or a test harness). | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/unit/widgets/label_dialog_characterize_test.py | 43 | CODE | |
| LOW | labelme/_utils/qt.py | 114 | CODE | |
| LOW | labelme/_widgets/label_dialog.py | 43 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …it/widgets/canvas_interaction_characterization_test.py | 401 | COMMENT |