-
Notifications
You must be signed in to change notification settings - Fork 1
Binary classifier #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
zehdari
wants to merge
23
commits into
dev
Choose a base branch
from
BinaryClassifier
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
06d235f
Binary classifier working
zehdari f74f605
Fix param access order
Effo12345 8e819e0
Make services mapping namespaced
Effo12345 ce62c3c
Fix classifier service param names
Effo12345 d7faaa2
Remove deprecated launch junk
zehdari 5eb81ba
coderabbit suggested fixes
zehdari 1b642ad
RS26 task logic and refactoring
zehdari 1cdf7e0
Actually installing the files in cmake
zehdari ac9db6c
seed obj estimate for binary classifier on aquire -> track transition
zehdari 2377ade
Bin classifier working tirpak
Effo12345 a7af4d0
Ok running
Effo12345 806631b
Better handling for mixed mask tasks
zehdari 6147ce1
Removed unused module
zehdari d2d59c5
color pointcloud2 for debugging/testing
zehdari 25190e5
grid based sampling
zehdari 4f3366b
Added mapping configs for new props
zehdari 4a414a9
Performance tweaks, QOL changes
zehdari 1a1994d
using class colors for pointcloud
zehdari 059bdd6
Merge branch 'dev' into BinaryClassifier
zehdari e823e27
Merge branch 'NonCursedYolo' into BinaryClassifier
zehdari 2010f77
Using splitext to get file extension
zehdari 79d36fe
actually use correct stamp in frame
zehdari 7a111ea
Improved outlier filtering performance, correct camera frame
zehdari File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -134,3 +134,5 @@ logs/ | |
| .vscode | ||
|
|
||
| COLCON_IGNORE | ||
|
|
||
| .DS_Store | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| /**: | ||
| ros__parameters: | ||
| binary_classifier: | ||
| buffer_size: 500 # max detections held in the rolling buffer used for clustering | ||
| buffer_ttl_sec: 8.0 # detections older than this are dropped, so a target we've left behind stops contributing | ||
| min_cluster_detections: 6 # how many nearby detections it takes to lock an instance | ||
| cluster_radius_m: 0.15 # neighbors within this radius count as the same cluster when finding an instance | ||
| assignment_gate_m: 0.20 # once an instance is locked, a new detection farther than this from its centroid is rejected as not belonging to it | ||
| exclusion_radius_m: 0.30 # while hunting for the second instance, detections within this radius of the first are thrown out so the first can't bleed into the second | ||
| min_instance_separation_m: 0.40 # a candidate second instance must be at least this far from the first to be accepted | ||
| max_cluster_variance_m2: 0.02 # reject a cluster whose spread exceeds this. 0 disables the check | ||
| centroid_ema_alpha: 0.15 # Exponential Moving Average (EMA) rate for a locked centroid chasing new detections. lower = steadier & slower, higher = faster & noisier | ||
| use_3d_distance: false # cluster/measure distance in 3D (x,y,z) vs 2D (x,y). Keep False for top-down flat targets where z is the noisy axis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dummy detection class IDs are out of sync with mapping target names.
Line 4 onward still uses legacy object IDs, and those entries publish the same class IDs by default.
mapping.pynow accepts renamed IDs (gate_rescue,gate_repair,fire_hole_large,fire_hole_small,bin_target1/2), so these simulated detections are treated as unknown and skipped.🔧 Minimal aliasing fix in YAML
Also applies to: 33-104
🤖 Prompt for AI Agents
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AdityaGupta0 you can fix this one for tree testing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.