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.

yubohuangai/Motion-Capture

https://github.com/yubohuangai/Motion-Capture · scanned 2026-06-16 01:09 UTC (2 months, 1 week ago)

182 raw signals (0 security + 182 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 166 actionable findings from 1 signal source. 16 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 84.6/100 with 88.9% coverage. It contains 4870 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 182 findings — concentrated in quality (137), software (25), security (17). Risk profile is high: 0 critical, 5 high, 18 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 107 of 166 actionable findings. 182 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 System graph security security conf 1.00 Insecure pattern 'eval_used' in apps/reconstruction/stage_b_localdygs/export_3dgs_ply.py:58
Found a known-risky pattern (eval_used). Review and replace if possible.
apps/reconstruction/stage_b_localdygs/export_3dgs_ply.py:58 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in myeasymocap/backbone/pare/head/hmr_head.py:178
Found a known-risky pattern (eval_used). Review and replace if possible.
myeasymocap/backbone/pare/head/hmr_head.py:178 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in myeasymocap/backbone/pare/head/pare_head.py:303
Found a known-risky pattern (eval_used). Review and replace if possible.
myeasymocap/backbone/pare/head/pare_head.py:303 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in myeasymocap/backbone/pare/pare.py:73
Found a known-risky pattern (eval_used). Review and replace if possible.
myeasymocap/backbone/pare/pare.py:73 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in myeasymocap/backbone/pare/utils/kp_utils.py:31
Found a known-risky pattern (eval_used). Review and replace if possible.
myeasymocap/backbone/pare/utils/kp_utils.py:31 Eval used
medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing ci. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in apps/calibration/chessboard_ba_colmap.py:923
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
apps/calibration/chessboard_ba_colmap.py:923 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in apps/reconstruction/stage_a_colmap/dense_reconstruct.py:233
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
apps/reconstruction/stage_a_colmap/dense_reconstruct.py:233 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in apps/reconstruction/stage_a_colmap/export_colmap.py:324
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
apps/reconstruction/stage_a_colmap/export_colmap.py:324 Subprocess shell true
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — apps/demo/mv1p.py:37
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — apps/reconstruction/run_pipeline.py:38
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — apps/reconstruction/stage_a_colmap/run_stage_a_colmap.py:34
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — apps/reconstruction/stage_a_colmap_4d/run_stage_a_colmap_4d.py:62
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — easymocap/mytools/debug_utils.py:59
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/postprocess/multiview_grid_video.py:268
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/postprocess/vid2gif.py:46
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/preprocess/compare_video_metadata.py:13
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/preprocess/sync.py:208
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
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.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
medium System graph cicd CI/CD security conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
CI/CD securityCoverage
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 18 placeholder/mock markers across 15 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph network Security conf 1.00 Privileged port 30 in use
Port 30 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
scripts/slurm/run_undistort_masks.sh Ports
low System graph quality Maintenance conf 1.00 101 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 1211 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph security security conf 1.00 Insecure pattern 'debug_true' in apps/annotation/annot_calib.py:144
Found a known-risky pattern (debug_true). Review and replace if possible.
apps/annotation/annot_calib.py:144 Debug true
low System graph security security conf 1.00 Insecure pattern 'debug_true' in apps/fit/triangulate1p.py:91
Found a known-risky pattern (debug_true). Review and replace if possible.
apps/fit/triangulate1p.py:91 Debug true
low System graph security security conf 1.00 Insecure pattern 'debug_true' in easymocap/multistage/base.py:168
Found a known-risky pattern (debug_true). Review and replace if possible.
easymocap/multistage/base.py:168 Debug true
low System graph security security conf 1.00 Insecure pattern 'debug_true' in easymocap/multistage/fitting.py:230
Found a known-risky pattern (debug_true). Review and replace if possible.
easymocap/multistage/fitting.py:230 Debug true
low System graph security security conf 1.00 Insecure pattern 'debug_true' in easymocap/neuralbody/dataset/mvbase.py:845
Found a known-risky pattern (debug_true). Review and replace if possible.
easymocap/neuralbody/dataset/mvbase.py:845 Debug true
low System graph security security conf 1.00 Insecure pattern 'debug_true' in easymocap/pyfitting/optimize_simple.py:203
Found a known-risky pattern (debug_true). Review and replace if possible.
easymocap/pyfitting/optimize_simple.py:203 Debug true
low System graph security security conf 1.00 Insecure pattern 'debug_true' in myeasymocap/operations/iterative_triangulate.py:83
Found a known-risky pattern (debug_true). Review and replace if possible.
myeasymocap/operations/iterative_triangulate.py:83 Debug true
low System graph security security conf 1.00 Insecure pattern 'debug_true' in myeasymocap/operations/optimizer.py:106
Found a known-risky pattern (debug_true). Review and replace if possible.
myeasymocap/operations/optimizer.py:106 Debug true
low System graph quality Tests conf 1.00 Low test-to-source ratio
53 tests / 395 src (ratio 0.13).
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: apps/neuralbody/train_pl.py:training_step, apps/neuralbody/train_pl.py:train 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 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: apps/calibration/chessboard_ba_colmap.py:resolve_path, apps/calibration/vis_chess_sfm_ba.py:resolve_path, apps/calibration/chessboard_sfm_ba.py:resolve_path This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw…
duplicatesduplication
low System graph quality Integrity conf 1.00 6 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: apps/calibration/read_colmap.py:qvec2rotmat, apps/calibration/read_colmap.py:qvec2rotmat, easymocap/mytools/colmap_structure.py:qvec2rotmat, easymocap/mytools/colmap_structure.py:qvec2rotmat This is *the* AI-coder failure mode (4× more duplication in…
6 occurrences
repo-level (6 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: apps/preprocess/extract_pointcloud.py:sample_list, apps/calibration/calib_extri.py:sample_list, apps/calibration/chessboard_ba_colmap.py:sample_list, apps/calibration/chessboard_sfm_ba.py:sample_list This is *the* AI-coder failure mode (4× more dupli…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_link_or_copy` in apps/reconstruction/stage_b_localdygs/prepare_localdygs_data.py:183
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 `A_v1` in easymocap/multistage/mirror.py:90
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 `basicmodel_m_lbs_10_207_0_v1` in easymocap/bodymodel/smpl.py:444
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 `basicmodel_neutral_lbs_10_207_0_v1` in scripts/dataset/pre_hi4d.py:37
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 `center_old` in easymocap/neuralbody/dataset/mvbase.py:688
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 `cow_1_aggregate_v2` in apps/reconstruction/measurement/make_summary_card.py:9
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 `cpp_copy` in 3rdparty/pybind11/tests/test_eigen.py:100
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 `D_v1` in myeasymocap/operations/match_base.py:57
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 `errors_legacy` in apps/demo/mv1p_triangulate_overlay.py:100
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 `euler_fix_old` in easymocap/multistage/torchgeometry.py:424
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 `holder_copy` in 3rdparty/pybind11/tests/test_smart_ptr.py:170
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 `key_is_deprecated` in easymocap/config/yacs.py:233
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 `keypoints_copy` in myeasymocap/operations/triangulate.py:145
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 `kpts_old` in easymocap/annotator/keypoints_keyboard.py:31
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 `kpts_old` in easymocap/estimator/openpose_wrapper.py:128
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 `mobilenet_v2` in myeasymocap/backbone/pare/backbone/mobilenet.py:8
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 `mobilenet_v2` in myeasymocap/backbone/pare/backbone/utils.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 `move_or_copy` in 3rdparty/pybind11/tests/test_copy_move.py:48
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 `nOld` in easymocap/mytools/triangulator.py:392
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 `num_old` in easymocap/pyfitting/lbfgs.py:368
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 `poses_copy` in easymocap/multistage/base_ops.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 `resized_image_copy` in easymocap/estimator/HRNet/hrnet_api.py:245
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 `return_copy` in 3rdparty/pybind11/tests/test_local_bindings.py:194
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 `Rh_m_old` in myeasymocap/io/vis3d.py:343
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 `Rh_m_old` in myeasymocap/operations/merge.py:44
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 `Rh_m_old` in myeasymocap/operations/select.py:174
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 `s_lbs_10_207_0_v1` in scripts/postprocess/convert2bvh.py:36
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 `smooth_results_old` in easymocap/multistage/fitting.py:571
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 `valid_f_copy` in scripts/dataset/pre_lightstage.py:280
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: add_conf
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_calib.py:64
low System graph software Dead code conf 1.00 Possibly dead Python function: add_point_by_2lines
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_calib.py:67
low System graph software Dead code conf 1.00 Possibly dead Python function: change
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/vis3d/vis_smpl.py:107
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_point
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_calib.py:99
low System graph software Dead code conf 1.00 Possibly dead Python function: configure_optimizers
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/neuralbody/train_pl.py:79
low System graph software Dead code conf 1.00 Possibly dead Python function: copy_edges_from_cache
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_vanish.py:18
low System graph software Dead code conf 1.00 Possibly dead Python function: detect_with_bbox
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_keypoints.py:73
low System graph software Dead code conf 1.00 Possibly dead Python function: detect_with_bbox180
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_keypoints.py:81
low System graph software Dead code conf 1.00 Possibly dead Python function: detect_with_bbox270
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_keypoints.py:85
low System graph software Dead code conf 1.00 Possibly dead Python function: detect_with_bbox90
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_keypoints.py:77
low System graph software Dead code conf 1.00 Possibly dead Python function: detect_with_previous_fast
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_keypoints.py:70
low System graph software Dead code conf 1.00 Possibly dead Python function: end
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_clip.py:56
low System graph software Dead code conf 1.00 Possibly dead Python function: export_params
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/vis3d/vis_smpl.py:75
low System graph software Dead code conf 1.00 Possibly dead Python function: import_params
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/vis3d/vis_smpl.py:88
low System graph software Dead code conf 1.00 Possibly dead Python function: load_cube
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/calibration/check_calib.py:33
low System graph software Dead code conf 1.00 Possibly dead Python function: load_grid
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/calibration/check_calib.py:91
low System graph software Dead code conf 1.00 Possibly dead Python function: points_from_mask
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/preprocess/extract_mask.py:98
low System graph software Dead code conf 1.00 Possibly dead Python function: points_from_mask_contour
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/preprocess/extract_mask.py:109
low System graph software Dead code conf 1.00 Possibly dead Python function: reset_params
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/vis3d/vis_smpl.py:67
low System graph software Dead code conf 1.00 Possibly dead Python function: residuals
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/calibration/chessboard_ba_scipy.py:121
low System graph software Dead code conf 1.00 Possibly dead Python function: residuals_func
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/demo/mv1p_bundle_adjustment.py:391
low System graph software Dead code conf 1.00 Possibly dead Python function: train_dataloader
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/neuralbody/train_pl.py:58
low System graph software Dead code conf 1.00 Possibly dead Python function: training_step
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/neuralbody/train_pl.py:49
low System graph software Dead code conf 1.00 Possibly dead Python function: vis_clips
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/annotation/annot_clip.py:92
low System graph software Dead code conf 1.00 Possibly dead Python function: write_func
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
apps/postprocess/write_vertices.py:19
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph quality Integrity conf 1.00 Stub function `after` (body is just `pass`/`return`) — easymocap/multistage/mirror.py:157
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 `check_at_start` (body is just `pass`/`return`) — easymocap/multistage/lossbase.py:13
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 `clear_cache` (body is just `pass`/`return`) — easymocap/neuralbody/model/compose.py:58
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 `forward` (body is just `pass`/`return`) — easymocap/bodymodel/base.py:19
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 `forward` (body is just `pass`/`return`) — myeasymocap/operations/loss.py:60
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 `info` (body is just `pass`/`return`) — myeasymocap/backbone/pare/head/pare_head.py:33
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 `parse` (body is just `pass`/`return`) — easymocap/config/baseconfig.py:52
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 `points` (body is just `pass`/`return`) — easymocap/mytools/camera_utils.py:227
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 `save_and_quit` (body is just `pass`/`return`) — easymocap/annotator/basic_annotator.py:92
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 `to` (body is just `pass`/`return`) — easymocap/visualize/skelmodel.py:109
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 `write_all` (body is just `pass`/`return`) — easymocap/datasets/base.py:1179
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 `write_keypoints2d` (body is just `pass`/`return`) — easymocap/mytools/writer.py:45
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: easymocap/datasets/base.py (1183 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: easymocap/multistage/fitting.py (1771 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/535b2a0a-6d8f-4954-ae99-48a73fd3f8fb/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/535b2a0a-6d8f-4954-ae99-48a73fd3f8fb/

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.