Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
122 of your 149 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 26.23s · analysis 9.03s · 30.6 MB · GitHub API rate-limit (preflight)

scikit-image/scikit-image

https://github.com/scikit-image/scikit-image · scanned 2026-06-05 22:21 UTC (4 days, 8 hours ago) · 10 languages

611 raw signals (139 security + 472 graph) 11/13 scanners ran 92nd percentile · Python · large (100-500K LoC) System graph score 93 (lower by 4)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 8 hours ago · v2 · 253 actionable findings from 2 signal sources. 122 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 85.0 0.15 12.75
security_score 100.0 0.25 25.00
testing_score 97.0 0.20 19.40
documentation_score 88.0 0.15 13.20
practices_score 77.0 0.15 11.55
code_quality 70.0 0.10 7.00
Overall 1.00 88.9
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade A- (89/100). Dimensions: security 100, maintainability 85. 139 findings (32 security). 128,601 lines analyzed.

Showing 139 of 253 actionable findings. 375 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Security checks quality Quality conf 1.00 ✓ Repobility 4 occurrences [MINED107] Missing import: `array` used but not imported: The file uses `array.something(...)` but never imports `array`. This raises NameError at runtime the first time the line executes.
Add `import array` at the top of the file.
4 files, 4 locations
src/_skimage2/_shared/utils.py:948
src/skimage/draw/_random_shapes.py:236
src/skimage/util/apply_parallel.py:160
tools/precompute/mc_meta/createluts.py:103
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 3 occurrences Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
2 files, 3 locations
.github/workflows/benchmarks.yaml:65, 67 (2 hits)
.github/workflows/nightly-wheel-build.yaml:62
CI/CD securityworkflow secretsGitHub Actions
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
src/skimage/_vendored/numpy_lookfor.py:126
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self.image` used but never assigned in __init__: Method `setup` of class `FeatureSuite` reads `self.image`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self.image = <default>` in __init__, or add a class-level default.
4 files, 25 locations
benchmarks/benchmark_feature.py:13, 14, 15, 16, 20, 25, 30, 33 (10 hits)
benchmarks/benchmark_rank.py:13, 14, 17, 25, 26, 29 (8 hits)
benchmarks/benchmark_graph.py:21, 27, 30, 33 (6 hits)
benchmarks/benchmark_morphology.py:26
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 45 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v5`: `uses: actions/checkout@v5` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
9 files, 45 locations
.github/workflows/_build_linux_for_python_x.yaml:30, 35, 55, 72 (7 hits)
.github/workflows/build-docs.yaml:19, 23, 62 (6 hits)
.github/workflows/test-windows.yaml:47, 52, 71 (6 hits)
.github/workflows/_test_linux_for_python_x.yaml:47, 52, 58 (5 hits)
.github/workflows/benchmarks.yaml:31, 35, 62, 112 (5 hits)
.github/workflows/typing.yml:28, 34, 77 (5 hits)
.github/workflows/test-docs.yaml:20, 25 (4 hits)
.github/workflows/test-macos.yaml:49, 54, 71 (4 hits)
CI/CD securitySupply chainGitHub Actions
high System graph security security conf 1.00 Insecure pattern 'eval_used' in tools/precompute/mc_meta/createluts.py:100
Found a known-risky pattern (eval_used). Review and replace if possible.
tools/precompute/mc_meta/createluts.py:100 Eval used
medium Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED109] Mutable default argument in `_append_msgs` (list): `def _append_msgs(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def _append_msgs(x=None): x = x or []`
3 files, 3 locations
doc/tools/migration_utils.py:18
src/skimage/filters/edges.py:126
tools/precompute/_precompute_nsphere_decompositions.py:25
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `precompute_decompositions` (dict): `def precompute_decompositions(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def precompute_decompositions(x=None): x = x or []`
tools/precompute/_precompute_nsphere_decompositions.py:25
medium Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences [MINED124] requirements.txt: `wheel` has no version pin: Unpinned pip requirement means every fresh install may resolve a different version. Newer releases can introduce malicious code (typosquats, account compromises). Reproducible installs need exact pins.
Replace `wheel` with `wheel==<version>` and manage upgrades through PRs / Dependabot.
lines 6, 7, 11
.binder/requirements.txt:6, 7, 11 (3 hits)
medium Security checks quality Quality conf 1.00 [SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0).
Use `crypto.randomBytes(32).toString('hex')` (Node) or `crypto.getRandomValues()` (browser).
doc/ext/skimage_extensions.py:72
low Security checks quality Error handling conf 0.55 ✓ Repobility 3 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
2 files, 3 locations
src/skimage/_vendored/numpy_lookfor.py:29, 129 (2 hits)
src/skimage/filters/thresholding.py:88
Error handlingquality
medium System graph cicd CI/CD security conf 1.00 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
pypa/[email protected] can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
2 files, 2 locations
.github/workflows/wheels-recipe.yaml:111
.github/workflows/wheels-test-and-release.yaml:77
CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 3 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
3 files, 3 locations
.github/workflows/build-docs.yaml
.github/workflows/nightly-wheel-build.yaml
.github/workflows/wheels-test-and-release.yaml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in benchmarks/benchmark_import_time.py:26
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
benchmarks/benchmark_import_time.py:26 Subprocess shell true
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
low Security checks quality Quality conf 0.60 9 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
9 files, 9 locations
src/skimage/feature/_canny.py:34
src/skimage/filters/_gaussian.py:30
src/skimage/filters/edges.py:74
src/skimage/filters/rank/bilateral.py:20
src/skimage/metrics/_structural_similarity.py:87
src/skimage/morphology/gray.py:162
src/skimage/registration/_phase_cross_correlation.py:209
src/skimage/restoration/unwrap_3d_ljmu.c:737
duplicationquality
low System graph quality Maintenance conf 1.00 38 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_active_contours.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_canny.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_circular_elliptical_hough_transform.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_contours.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_convex_hull.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_line_hough_transform.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_marching_cubes.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_polygon.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_random_shapes.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_shapes.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/edges/plot_skeleton.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/numpy_operations/plot_camera_numpy.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/numpy_operations/plot_view_as_blocks.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_chan_vese.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_compact_watershed.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_expand_labels.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_extrema.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_floodfill.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_hausdorff_distance.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_join_segmentations.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_label.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_marked_watershed.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_mask_slic.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_metrics.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_multiotsu.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_ncut.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_niblack_sauvola.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_peak_local_max.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_perimeters.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_rag_boundary.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_rag_draw.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_rag_mean_color.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_random_walker_segmentation.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_regionprops.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_regionprops_table.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_segmentations.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_thresholding.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_trainable_segmentation.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/segmentation/plot_watershed.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_edge_modes.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_fundamental_matrix.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_geometric.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_piecewise_affine.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_pyramid.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_radon_transform.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_ransac.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_rescale.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_ssim.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_swirl.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: doc/examples/transform/plot_transform_types.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph security security conf 1.00 Insecure pattern 'document_write' in doc/source/_static/docversions.js:12
Found a known-risky pattern (document_write). Review and replace if possible.
doc/source/_static/docversions.js:12 Document write
low System graph quality Integrity conf 1.00 11 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: benchmarks/benchmark_rank.py:setup, benchmarks/benchmark_rank.py:setup This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
11 occurrences
repo-level (11 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 4 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: benchmarks/benchmark_morphology.py:time_erosion, benchmarks/benchmark_morphology.py:time_erosion, benchmarks/benchmark_morphology.py:time_erosion This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code…
4 occurrences
repo-level (4 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: benchmarks/benchmark_restoration.py:time_denoise_nl_means_f64, benchmarks/benchmark_restoration.py:time_denoise_nl_means_fast_f64, benchmarks/benchmark_restoration.py:peakmem_denoise_nl_means_f64, benchmarks/benchmark_restoration.py:peakmem_denoise_nl…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: benchmarks/benchmark_filters.py:setup, benchmarks/benchmark_filters.py:setup, benchmarks/benchmark_filters.py:setup, benchmarks/benchmark_filters.py:setup This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.h…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 7 places
Functions with the same first-5-line body hash: benchmarks/benchmark_morphology.py:setup, benchmarks/benchmark_morphology.py:setup, benchmarks/benchmark_morphology.py:setup, benchmarks/benchmark_morphology.py:setup This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see …
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 9 places
Functions with the same first-5-line body hash: benchmarks/benchmark_morphology.py:peakmem_reference, benchmarks/benchmark_morphology.py:peakmem_reference, benchmarks/benchmark_morphology.py:peakmem_reference, benchmarks/benchmark_morphology.py:peakmem_reference This is *the* AI-coder failure mode…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_docstring_add_deprecated` in src/_skimage2/_shared/utils.py:407
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `force_copy` in src/skimage/color/colorconv.py:159
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `force_copy` in src/skimage/segmentation/boundaries.py:223
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `force_copy` in src/skimage/util/dtype.py:209
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `fresh_copy` in src/skimage/graph/_rag.py:263
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `img_hsv_copy` in doc/examples/segmentation/plot_floodfill.py:159
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `n_pts_old` in src/skimage/morphology/_skeletonize.py:336
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `qname_old` in src/skimage/_migration.py:158
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `qname_old` in src/skimage/feature/_canny.py:14
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `qname_old` in src/skimage/feature/peak.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `qname_old` in src/skimage/filters/_gaussian.py:11
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `qname_old` in src/skimage/metrics/_structural_similarity.py:15
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `qname_old` in src/skimage/morphology/footprints.py:1029
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `qname_old` in src/skimage/morphology/gray.py:139
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `qname_old` in tests/skimage/test_migration.py:47
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `rag_copy` in doc/examples/segmentation/plot_boundary_merge.py:84
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `rag_copy` in doc/examples/segmentation/plot_rag_merge.py:72
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `rag_copy` in src/skimage/graph/_graph_merge.py:60
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `rag_copy` in tests/skimage/graph/test_rag.py:157
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `rescale_legacy` in src/_skimage2/feature/_canny.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `rescale_legacy` in src/_skimage2/util/_value_rescaling.py:30
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `rescale_legacy` in tests/skimage2/filters/test_gaussian.py:81
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_copy` in tests/skimage/util/test_dtype.py:115
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_copy` in tests/skimage/util/test_slice_along_axes.py:35
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_dtypes_old` in tests/skimage/morphology/test_extrema.py:417
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_mode_legacy` in tests/skimage2/util/test_value_rescaling.py:112
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_mssim_vs_legacy` in tests/skimage/metrics/test_structural_similarity.py:230
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_mssim_vs_legacy` in tests/skimage2/metrics/test_structural_similarity.py:246
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_unsharp_masking_with_different_ranges_deprecated` in tests/skimage/filters/test_unsharp_mask.py:132
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: peakmem_2d
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:234
low System graph software Dead code conf 1.00 Possibly dead Python function: peakmem_reconstruction
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:210
low System graph software Dead code conf 1.00 Possibly dead Python function: peakmem_reference
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:253
low System graph software Dead code conf 1.00 Possibly dead Python function: peakmem_reference
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_filters.py:47
low System graph software Dead code conf 1.00 Possibly dead Python function: peakmem_remove_near_objects
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:269
low System graph software Dead code conf 1.00 Possibly dead Python function: peakmem_skeletonize
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:47
low System graph software Dead code conf 1.00 Possibly dead Python function: peakmem_threshold_multiotsu
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_filters.py:63
low System graph software Dead code conf 1.00 6 occurrences Possibly dead Python function: setup
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
6 files, 6 locations
benchmarks/benchmark_feature.py:10
benchmarks/benchmark_filters.py:110
benchmarks/benchmark_graph.py:12
benchmarks/benchmark_morphology.py:244
benchmarks/benchmark_peak_local_max.py:17
benchmarks/benchmark_rank.py:24
low System graph software Dead code conf 1.00 Possibly dead Python function: time_2d
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:222
low System graph software Dead code conf 1.00 Possibly dead Python function: time_3d_filters
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_rank.py:28
low System graph software Dead code conf 1.00 Possibly dead Python function: time_brief
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_feature.py:28
low System graph software Dead code conf 1.00 Possibly dead Python function: time_build_pixel_graph
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_graph.py:29
low System graph software Dead code conf 1.00 Possibly dead Python function: time_canny
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_feature.py:19
low System graph software Dead code conf 1.00 Possibly dead Python function: time_central_pixel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_graph.py:32
low System graph software Dead code conf 1.00 Possibly dead Python function: time_erosion
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:160
low System graph software Dead code conf 1.00 Possibly dead Python function: time_filter
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_rank.py:16
low System graph software Dead code conf 1.00 Possibly dead Python function: time_glcm
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_feature.py:22
low System graph software Dead code conf 1.00 Possibly dead Python function: time_hessian_matrix_det
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_feature.py:32
low System graph software Dead code conf 1.00 Possibly dead Python function: time_peak_local_max
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_peak_local_max.py:29
low System graph software Dead code conf 1.00 Possibly dead Python function: time_reconstruction
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:191
low System graph software Dead code conf 1.00 Possibly dead Python function: time_remove_near_objects
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:250
low System graph software Dead code conf 1.00 Possibly dead Python function: time_skeletonize
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_morphology.py:28
low System graph software Dead code conf 1.00 Possibly dead Python function: time_sobel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_filters.py:17
low System graph software Dead code conf 1.00 Possibly dead Python function: time_sobel_3d
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_filters.py:31
low System graph software Dead code conf 1.00 Possibly dead Python function: time_threshold_multiotsu
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
benchmarks/benchmark_filters.py:44
low System graph quality Integrity conf 1.00 Stub function `foo` (body is just `pass`/`return`) — src/_skimage2/_shared/utils.py:40
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `peakmem_reference` (body is just `pass`/`return`) — benchmarks/benchmark_measure.py:73
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `peakmem_setup` (body is just `pass`/`return`) — benchmarks/benchmark_restoration.py:44
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `setup` (body is just `pass`/`return`) — benchmarks/benchmark_import_time.py:18
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: src/skimage/color/colorconv.py (2314 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/skimage/filters/rank/generic.py (1750 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/skimage/measure/_regionprops.py (1499 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/skimage/measure/fit.py (1516 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/skimage/transform/_geometric.py (2692 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/skimage/measure/test_regionprops.py (1620 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/skimage/transform/test_geometric.py (1502 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/3b383cbf-d709-45ec-aa8c-b26d86badcee/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/3b383cbf-d709-45ec-aa8c-b26d86badcee/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.