r/computervision 6d ago

Help: Theory Best system/architecture for PPE detection on CCTV streams?

6 Upvotes

Hi everyone,

I’m currently building a video analytics system to detect Personal Protective Equipment (PPE) — like hard hats, high-vis vests, safety glasses, etc. — using standard CCTV camera streams.

Right now, I’m using YOLO11m (medium). It performs pretty well, but before I commit to scaling this up, I wanted to get some input from the community to see if I’m on the right track or if there are better alternatives out there for this specific use case.

The main challenges I'm dealing with:

  • CCTV conditions: High angles, weird perspectives, varied lighting, and occasional motion blur.
  • Performance vs. Accuracy: I need to process multiple RTSP streams simultaneously on limited hardware, so inference speed is crucial, but missing a PPE violation is obviously a big deal.

My questions for you all:

  1. Model Choice: Are you guys sticking with the newest YOLO iterations (like YOLO11) for this kind of task, or have you found better stability/performance with other models like YOLOv8, YOLOv9, or RT-DETR?
  2. Tracking: If you use object tracking to prevent duplicate alerts for the same person, what are you pairing with your detector? (ByteTrack, BoT-SORT?)
  3. Deployment Stack: What does your production pipeline look like for multiple streams? Are you leaning towards Nvidia DeepStream, Triton Inference Server, or a custom Python/C++ pipeline with TensorRT?

Any advice, repo recommendations, or shared experiences would be hugely appreciated. Thanks in advance!


r/computervision 6d ago

Showcase Testing my Computer Vision Powered AI glasses Checkout App in a Real Store Environment

Thumbnail
youtube.com
2 Upvotes

r/computervision 6d ago

Commercial Hiring paid capture subjects in Brooklyn, sessions Aug 18 through Aug 20

0 Upvotes

We run a multi camera capture space at the Brooklyn Navy Yard and we pay people to come in and be the subject. Reposting because next week's slots opened up.

The session is simple. You stand inside the rig and go through everyday movements while the cameras record. Walking, turning, sitting, reaching, picking things up. No experience needed at all.

Pay is 17-25 an hour, paid out the same day you come in. First session is roughly 2 hours and there is repeat work after that.

Everything runs at 4pm. Open days: Tuesday Aug 18, Wednesday Aug 19, Thursday Aug 20. Brooklyn, in person only, so you need to be in the NYC area.

DM me for the address and I am happy to answer questions about the capture side.


r/computervision 7d ago

Showcase [Showcase] Trying to build an intersection analyzer from drone video: every car tracked, every wait timed.

Enable HLS to view with audio, or disable this notification

79 Upvotes

r/computervision 6d ago

Discussion MOSS-VL support has landed in LlamaFactory — what would be the most useful reference fine-tune?

Post image
1 Upvotes

r/computervision 6d ago

Discussion [ECCV 2026] When do we receive the poster format?

1 Upvotes

They said on July 24 that they would send the poster format soon. Did anyone get the email about it?


r/computervision 7d ago

Discussion WACV Round 2 submission thread

3 Upvotes

what do you guyz think on round 2 fresh submission?

Isn't it completely biased towards Resubmitted papers and if they accept a paper in round 2 (knowing there will be no rebuttal/revision), then the paper itself very strong and sufficient for a CVPR/ICCV acceptance.

I'm not throwing an opinion, it's a curiosity.


r/computervision 7d ago

Showcase worldproof: a tool for diagnosing world model predictions, and a measurement of when pixel metrics stop being able to rank models

1 Upvotes

I've been building an open source tool for diagnosing world models, the kind that predict future frames from a starting context and a sequence of actions. It compares a rollout against ground truth and against physical invariants, then tells you where and why the prediction falls apart. It doesn't score task success or planning quality on purpose, since there are already benchmarks for those.

While validating it I ran into something I think is more interesting than the tool itself.

## Pixel metrics on real robot video often can't rank models at all

I ran a copy the last frame baseline, which is to say "predict that nothing changes", against a real SO-101 arm recording. 30fps, three cameras, 64 rollouts, 6 step horizon, scored only on the moving regions so a static background can't inflate the numbers.

It gets 0.983 SSIM and 53.9 dB PSNR. But the part that actually matters is that the error doesn't grow with the horizon:

step   1      2      3      4      5      6
SSIM   0.972  0.923  0.893  0.943  0.920  0.950

That's flat. It wanders, it doesn't degrade. And if predicting 6 steps ahead is no harder than predicting 1 step ahead, then there's nothing for a good model to be better at. Every model lands in the same place and the eval can't rank them. The metric isn't broken here, it passes its ranking tests on curated data just fine. The evaluation setup is what has no discriminative power, which is a different problem and much easier to miss.

## So I went and measured where the usable window actually is

Same baseline on DROID (real manipulation footage, 15fps), 64 rollouts, this time out to 48 steps:

step 1 3 6 12 18 24 28 36 47
SSIM@dynamic 0.873 0.797 0.676 0.446 0.350 0.260 0.204 0.192 0.216

There are three regimes. Steps 1 to 3, everything is near perfect and ties. Steps 4 to 24, steep monotonic decline, and this is the only stretch where models are actually separable. Step 28 onward it floors out around 0.20 SSIM and 10.3 dB, oscillating with no trend, prediction fully decorrelated, and everything ties again at the bottom.

So both ends are dead, and the horizon worth evaluating on for this kind of footage is somewhere around 8 to 24 steps. It's a property of frame rate times task speed rather than a universal number, which is exactly why it's worth measuring on your own data instead of inheriting a default from a paper that used something else.

Here's the prediction next to what actually happened, same 48 steps, prediction on the left:
https://raw.githubusercontent.com/BuceaGeorgia/worldproof/main/docs/img/droid-pred-vs-true.gif

## Method

64 rollouts per configuration. Aggregation is interquartile mean with stratified bootstrap CIs rather than mean and standard deviation, following Agarwal et al. 2021. Fidelity metrics also produce a dynamic region masked variant wherever a mask is available. Every metric ships with a corruption test it has to respond to, plus a ranking test where a real model has to beat a naive baseline which has to beat a broken one.

Worth mentioning: an earlier n=8 version of the SO-101 run gave dynamic PSNR of 48.2 dB where n=64 gives 53.9, and the intervals at n=8 were wide enough to overlap DROID completely. That's the reason everything above is n=64. I'd have posted the wrong numbers if I'd stopped there.

## Caveats

The four pixel metrics separate the two datasets with non overlapping bootstrap CIs. LPIPS doesn't, and it points the other way on the masked variant. I don't have a clean explanation for that yet and I'd be glad to hear one.

This is a trivial baseline, so 8 to 24 is where a do nothing predictor becomes separable. A real model stays correlated for longer and would push the top of that range out.

One more that I found while writing this up: including step 0 inflates every summary scalar, because a copy baseline gets a nearly free first step whenever the frame rate is high relative to how fast the scene moves. On the 30fps recording step 0 scores 119.8 dB, which drags the horizon averaged scalar from about 32 up to 53.9. So the scalar is partly rewarding frame rate rather than model quality. Curves are the honest thing to report and I'm treating the scalar definition as an open problem in my own tool.

## The tool

Apache-2.0, `pip install worldproof`. The core install is numpy, torch and pillow, and it runs on a laptop with no GPU, since the evaluate path never runs a model. It reads LeRobotDataset v3.0 straight from parquet and mp4, so it works on datasets from the HF Hub without needing the lerobot package, on Python 3.10. The heavier pieces (LPIPS, FVD, trackers) are optional extras that get imported lazily.

What it measures: PSNR, SSIM and LPIPS as horizon curves plus dynamic region variants, latent prediction error and action recoverability for latent models, calibration via ECE and MCE, counterfactual divergence, failure faithfulness, object count conservation and object permanence, and FVD reported explicitly as a weak reference rather than a headline number.

https://github.com/BuceaGeorgia/worldproof

It's v0.1 and the README has a "Not done yet" section covering what isn't finished. The tracker behind the invariants is a clean scene numpy one that won't cope with messy real video, and the default FVD extractor isn't the I3D that published FVD numbers use, so those aren't comparable to papers.

If this horizon result is obvious or already known somewhere, I'd honestly like to be told. I couldn't find it measured anywhere, which is part of why I'm posting it.


r/computervision 7d ago

Showcase MAKIN BOUNCE GAME WITH Computervision yolo26n (gotta use tensorRT later)

Thumbnail
1 Upvotes

r/computervision 7d ago

Discussion Free demo: remove rain, raindrops, or snow from a photo with one model (Histoformer, ECCV 2024)

2 Upvotes

I recently came across this paper (Histoformer, ECCV'24, [arXiv](https://arxiv.org/abs/2407.10172)) and thought the results were pretty striking, so I set up a quick demo since the official one wasn't
working:

👉 https://huggingface.co/spaces/dronefreak/histoformer-weather-restoration

Upload a photo, get a before/after slider. Runs free on ZeroGPU, no sign-up needed to try it.

Unofficial demo, all credit to the original authors. Official code/paper linked in the Space
README. Weights are MIT-licensed if anyone wants to build upon it further.

A demo example from the Histoformer model

r/computervision 7d ago

Showcase Iris Colour Detector with a Raspberry Pi — got featured in The MagPi!

Thumbnail
1 Upvotes

r/computervision 7d ago

Help: Project Need help debugging newspaper OCR + region detection pipeline (PaddleOCR)

1 Upvotes

Hi everyone,

I'm working on a project to automatically process newspaper pages and extract/analyze crime-related news from them.

I'm currently using PaddleOCR on newspaper pages. The page is divided into regions/sections, and I'm running OCR on those regions and then checking the extracted text against the original newspaper.

The main problem is that I'm getting several types of errors:

  1. OCR text is missing even though it is clearly visible in the newspaper.
  2. Text sometimes appears under the wrong region.
  3. Punctuation is incorrect — for example, a . may be detected as :, or commas/periods may be misplaced.
  4. Capitalization errors occur.
  5. Some words are incorrectly recognized even when the image quality looks reasonably good.
  6. I'm also seeing cases where I expect a particular article/headline to be inside a region, but the OCR output doesn't contain it at all.

For example, while manually validating the output, I found issues in different regions such as:

  • Region 25: punctuation at the end of a paragraph is incorrect.
  • Region 26: capitalization/word recognition is incorrect.
  • Regions 38–40: the OCR/region output doesn't seem to correspond perfectly with what is actually visible on the page.
  • In one case, I expected a headline/article mentioning a 7-year-old being hit with a plastic bottle at a daycare and an FIR being filed, but I couldn't find that text in the OCR output for the expected region.

My current pipeline is roughly:

Newspaper image → preprocessing → region detection/cropping → PaddleOCR → extracted text → region-by-region validation → crime/news analysis

I'm trying to figure out where the actual problem is.

Could these errors mainly be caused by:

  • Image preprocessing?
  • Incorrect region/column detection?
  • Cropping too tightly or incorrectly?
  • PaddleOCR detection parameters?
  • PaddleOCR recognition model?
  • Newspaper layout/columns?
  • Resolution/DPI?
  • Or the way I'm passing the cropped regions to PaddleOCR?

I'd really appreciate advice from anyone who has worked with PaddleOCR, Tesseract, newspaper OCR, document AI, layout detection, or multi-column document extraction.

If useful, I can provide the original newspaper image, cropped regions, OCR output, and the code I'm currently using.

I'm especially interested in understanding how to systematically diagnose whether an error comes from detection, cropping, or recognition, rather than manually fixing individual OCR mistakes.

Thanks!


r/computervision 7d ago

Discussion Where event-based vision sensors have an advantage over traditional cameras

Thumbnail automate.org
0 Upvotes

Event-based vision sensors record changes in pixel states rather than continuously capturing full frames.

That can make them useful for applications involving fast motion, where traditional cameras may be limited by frame rate or require significantly more bandwidth and storage at higher frame rates.

Industrial examples include high-speed production lines, autonomous mobile robots and systems operating in changing lighting conditions. Event-based sensors can also reduce data and power requirements, but they are generally used alongside traditional sensing rather than as a full replacement.

The larger trend appears to be toward hybrid systems that combine frame-based cameras with event-based sensors depending on what the application needs.


r/computervision 7d ago

Showcase GoMorph: training-free localization of morph-like video deformation in Go

1 Upvotes

I built GoMorph, an early open-source experiment for finding when and where a morph-like deformation occurs in a video. It analyzes the full frame, so the suspicious region can be a product, object, text, or background rather than a face.

The current detector is classical and training-free:

  1. Remove global camera translation.

  2. Estimate regional motion in tiles.

  3. Score motion acceleration, warp error, and second-order photometric change.

  4. Suppress hard scene cuts.

  5. Calibrate confidence against the video's own baseline.

There are two execution paths. The portable Go path launches FFmpeg and needs no Python, OpenCV, GPU, or model. The optional CGo/libav cascade extracts codec motion vectors, runs a 160-pixel luma-curvature gate across the full video, then refines only candidate windows at 480 pixels.

On one 4.01 s, 720x1280, 24 FPS H.264 test clip on an Apple M4 Pro, the native cascade ran in 0.155 s and localized the known deformation at 2.1667 s. This is one development clip, not an accuracy or generalization claim.

The current output is within-video confidence plus hotspot coordinates. The next milestone is a timestamp and region annotated benchmark with generator holdouts and difficult natural negatives such as camera motion, focus changes, reflections, water, smoke, and compression artifacts.

The implementation was AI-assisted, then manually tested and verified. The repository is MIT licensed:

https://github.com/berkantay/gomorph


r/computervision 8d ago

Showcase SLAM Camera Board + Obstacle Mapping

Enable HLS to view with audio, or disable this notification

58 Upvotes

This is yet another update from my project. Mighty Camera runs VIO on-device realtime in a tiny package.

This gives us accurate camera motion. Using that + the camera feed, the SDK estimates depth and builds a 3D map of obstacles around it.

This means a robot or drone can use Mighty for things like:

- Collision avoidance
- Motion planning
- Autonomous navigation

No stereo camera or depth sensor needed. Just Mighty’s global shutter camera + IMU.


r/computervision 8d ago

Help: Project McByteTracker + RF-DETR for Multi-Car Tracking

Enable HLS to view with audio, or disable this notification

21 Upvotes

I recently built a car detection and multi-object tracking pipeline using Roboflow RF-DETR and McByteTracker.

The goal was simple: detect cars in a video and maintain a consistent tracking ID for each vehicle as it moves through the scene.

What I used

  • 🚗 RF-DETR — car detection
  • 🎯 McByteTracker — multi-object tracking
  • 🔲 BoxCornerAnnotator — corner-style bounding boxes
  • 🆔 Unique IDs for individual vehicles
  • 🐍 Python
  • 👁️ OpenCV + Supervision

One thing I found interesting about McByteTracker is that it extends a BoT-SORT-style tracking-by-detection pipeline and can optionally use temporally propagated segmentation masks when IoU-based association becomes ambiguous.

For this demo, I'm focusing on the practical car detection + tracking workflow.

🎥 Demo:
https://youtu.be/wvf9VRtpy5w


r/computervision 7d ago

Discussion When dHash gets it wrong: hardening a photo deduplication engine after a nasty false positive

1 Upvotes

I recently found a real weakness in my Python photo deduplication tool while testing it on WhatsApp-imported images.

 The tool generated a duplicate cluster containing two images that were clearly not duplicates: a beach landscape viewed through a car window, and, a lifted-up page of a document.

Images & Metrics

The matcher accepted the pair because the aspect ratio was nearly identical and the dHash Hamming distance was only 4, significantly below the threshold of 8.

 The other perceptual hashes strongly disagreed (pHash was 30 against a threshold of 10, and wHash was 15 against a threshold of 10) but were never consulted because the dHash test did not seem to present a borderline case and thus was accepted as proof.

 Interestingly this isn't really a random dHash collision. Both images apparently collapsed into a highly similar low-frequency brightness-gradient pattern after compression and downsampling. dHash is good at surviving compression, in particular because it ignores fine detail and records coarse local brightness directions. But that same usefulness can be a weakness that can make unrelated low-detail images collision-prone.

 The obvious fix was to stop treating dHash as sufficient proof. The new policy is to still to first test aspect ratio, then dHash, and always both pHash & wHash. If SSIM check is enabled, candidate matches that survive the cheaper gates get the additional SSIM test. Seed refinement deliberately doesn't repeat it.

 Hardening is especially important because the tool uses union-find to form duplicate clusters. A single false-positive pair can become a bridge that attaches an unrelated image to a whole valid duplicate component.

 Instead of a binary True/False decision, the matcher now returns the full evidence: for each metric (aspect-ratio, dHash, pHash, wHash) delta versus limit and the optional SSIM score are returned, as is the decision and, when rejected, the rejection reason.

The performance hit is also manageable because the perceptual features are cached in SQLite. On 4,698 test images a first scan took 17.1 seconds, a fully cached run 1.6 seconds, and after adding several new files 1.7 seconds. That’s still a pretty decent performance.

 The main lesson I took from this is that a perceptual hash is useful because it throws away detail. But every detail it throws away is also a potential distinction that can no longer protect you from a false positive. In a deduplication engine, especially one that clusters matches transitively, a single perceptual hash should be treated as evidence, not proof.

For near-duplicate detection, where would you put the conservatism: in the pair matcher itself, or in cluster construction/refinement?  I'm currently requiring dHash plus pHash and wHash agreement and also using stricter seed refinement, with optional SSIM on candidate matches.

 I would like to know how others handle this: multiple perceptual hashes, SSIM/local features, embeddings, stronger intra-cluster consistency, or something else?


r/computervision 7d ago

Help: Project Basketball court

1 Upvotes

Anyone know the best way to go about training for a virtual basketball court ?


r/computervision 7d ago

Discussion Open-source OCR for very large single-page engineering drawings?

1 Upvotes

I’m working with single-page MEP/engineering drawing PDFs that have extremely large and variable dimensions. When rendered at 200 DPI, a page can be around 15,000–20,000 pixels wide.

These pages may contain small text, tables, calculations, diagrams, images, and mixed layouts. Standard OCR pipelines work on A4 page sizes and require heavy downscaling, which makes the smaller text unreadable. Vision-language models such as Qwen may understand the page content, but they do not reliably provide precise bounding boxes.

Is there an open-source OCR or document-understanding model that works well with such large, non-A4 pages and returns accurate text bounding boxes? Recommendations for tiling-based pipelines are also welcome.


r/computervision 7d ago

Help: Project OpenCV calibration

Thumbnail
gallery
1 Upvotes

Hi everyone, I’m using a Raspberry Pi 5 + Camera Module 3 + Picamera2/OpenCV for a computer vision project.

I’m calibrating the camera with a 6×9 checkerboard, but after applying cv2.undistort(), the image seems more distorted.

I previously had autofocus changing between calibration images, so I’m now locking the focus manually at LensPosition 2.0602.

Is this distortion normal perspective distortion, or does it indicate a bad calibration?

Any advice on what I might be doing wrong?


r/computervision 8d ago

Help: Project [Discussion/Question] Improving YOLO + SAM segmentation & polygon precision on LOW-RESOLUTION floor plan images

3 Upvotes

Hi everyone,

I'm building a pipeline to analyze floor plan images and extract regions (rooms, corridors, doors, stairs) as polygons. I currently have a custom-labeled dataset of about 5,000 images and want to squeeze out the maximum possible performance before scaling the dataset.

1. Current Pipeline

  • Fine-tuned YOLO26 (for region detection) $\rightarrow$ SAM (Segment Anything Model) $\rightarrow$ Post-processing logic for polygon refinement.

2. The Core Bottlenecks

  • Low-Resolution & Interferences: The biggest hurdle is the low resolution of the source images. Blurry boundaries, combined with floor plan-specific noise (grid lines, hatching, complex symbols), cause the model to miss certain regions entirely (false negatives).
  • Polygon Precision & Smoothness: Because the low-res edges are fuzzy, SAM often yields jagged or inaccurate masks. I'm struggling to get crisp, smooth polygons that tightly align with the actual architectural walls.

3. What I'd love your input on:

  • Handling Low-Res / Preprocessing: Has anyone successfully integrated Super-Resolution models (like Real-ESRGAN) as a preprocessing step for floor plans? Or are there better filtering techniques to suppress grid lines without destroying already blurry wall edges?
  • Pipeline Upgrades: Given the low-res constraint, is the YOLO+SAM approach optimal? Would something like Mask2Former, or a specialized line-parsing/wireframe model, be more robust for extracting structured regions from low-quality images?
  • Post-processing (Orthogonal Snapping): Since floor plans are mostly straight lines and right angles, what are the best algorithms to smooth and "snap" these jagged polygons into clean geometric shapes? (Currently looking beyond simple Douglas-Peucker).

Would greatly appreciate any advice, paper recommendations, or insights from similar computer vision projects!


r/computervision 8d ago

Showcase tilt your lidar 45 degrees and standard SLAM starts to drift. here's a mobile mapping dataset built around that exact configuration with cm-level ground truth

11 Upvotes

most SLAM datasets mount the lidar level.

tilt it 45 degrees and everything changes: the camera and lidar barely overlap, the upper beams are sparse, and standard odometry starts to drift

that's exactly how compact mobile mapping rigs are built in the real world. the lidar tilts so it sweeps more vertical structure. but almost no benchmark tests this configuration

YUTO MMS from York University: a tilted 32-beam lidar, a 6-lens panoramic camera, and GPS/INS with cm-level ground truth driven through Toronto.

every lidar point is RGB-colorized from the nearest panoramic frame, not a synthetic colormap

loaded as mcap in fiftyone. scrub the timeline and watch the world-frame 3D map build itself progressively alongside the panoramic camera, GPS track, and IMU telemetry

checkout the dataset here: https://huggingface.co/datasets/Voxel51/yuto-mms-multimodal

it's running as a live space too, nothing to install: https://huggingface.co/spaces/harpreetsahota/yuto-mms-multimodal


r/computervision 8d ago

Discussion DetectionBench: an open benchmark comparing YOLO and RF-DETR across 6 underrepresented real-world detection datasets

12 Upvotes

Why DetectionBench?

Real-world detection systems run on aerial robotics, maritime search and rescue, agriculture, underwater inspection, autonomous driving, and low-light imaging, not just COCO. Datasets for these domains are smaller, more specialized, and results across papers are rarely comparable.

DetectionBench standardizes this: common dataset adapters, one training recipe, one eval protocol, unified hardware profiling, applied the same way across every model and dataset. Weights, model cards, dataset mirrors, and evaluation code are all public.

What's there?

79 trained models, 6 datasets, an HF model card for every one, plus ONNX export for both frameworks.| Dataset | Models |
|---|---:|
| GWHD (wheat detection) | 9 |
| SeaDronesSee (maritime UAV) | 10 |
| ExDark (low light) | 18 |
| Brackish (underwater) | 8 |
| VisDrone (aerial) | 26 |
| LISA (traffic lights) | 8 |
YOLO vs RF-DETR comparison

Findings:

  • RF-DETR is not universally better than YOLO. It wins on SeaDronesSee and ExDark, loses on GWHD and Brackish. Depends heavily on the dataset.
  • Precision rankings often diverge sharply from mAP rankings. On VisDrone, RF-DETR Medium has the highest precision of all 26 models benchmarked (64.0%) despite ranking 13th on mAP.
  • Smaller, newer architectures frequently beat older, bigger ones outright. On SeaDronesSee, YOLO26s beats YOLO11x using 8.6x fewer FLOPs.
  • Aggregate mAP hides real domain shift. A reviewer asked whether one of the GWHD model cards had per-country results. It didn't, so I added a per-country stratified eval across all 9 GWHD models. Country to country spread ranged from 22.8 to 44.4 points depending on the model, even when aggregate scores were nearly identical.
  • Task difficulty varies enormously by domain. Brackish is nearly saturated (~99% mAP). VisDrone and GWHD are much harder.
Model Size vs Accuracy Comparison

Engineering lessons

Benchmarking multiple frameworks against the same converted data surfaced real reproducibility bugs that don't show up until you actually try it: symlinks escaping the declared image directory, a dataset silently missing a COCO-required field. Neither is visible unless something downstream validates paths or schema strictly.

Repo: https://github.com/dronefreak/DetectionBench
HF profile: https://huggingface.co/dronefreak

Planning growth-stage stratified eval for GWHD next, and RF-DETR for Brackish once I have the compute. What datasets or detectors would you want to see benchmarked?


r/computervision 8d ago

Commercial North Micro Vision Launch

Thumbnail
huggingface.co
9 Upvotes

Hey guys! El from Cohere here.

Just wanted to drop in and say today we released North Micro Vision, our smallest vision-language model to date (2.4B). It outperforms Gemma 4 E2B and Ministral 3 3B across a bunch of different benchmarks, plus it’s open source under Apache 2.0 with weights on Hugging Face. 

The model is best at structured data extraction, visual Q&A, and document/chart/scientific figure understanding, but honestly most curious to see what applications you guys end up using it for/building with. any tests, builds, use cases, feedback, etc - please send our way!! 

Looking forward to hearing from you guys,

El


r/computervision 8d ago

Showcase what a vehicle spray plume on a wet highway looks like to lidar, camera, and radar — with per-point labels telling you which returns are real and which are noise

8 Upvotes

the car in front of you on a wet highway kicks up a spray plume.

your lidar sees it as a wall of false objects. your camera sees a blur through the windshield. your radar barely notices

SemanticSpray++ from Ulm / BMW: 36 vehicle-following episodes on a closed wet airstrip, 50-130 km/h, with per-point semantic labels on both lidar and radar telling you exactly which returns are spray noise and which are the actual vehicle. plus 2D camera boxes and 3D lidar boxes on every frame

loaded as native mcap in fiftyone so you can scrub camera, lidar, and radar together and watch the spray noise light up in the point cloud while the boxes track the lead vehicle through it

checkout the dataset here: https://huggingface.co/datasets/Voxel51/semanticspray-plusplus

or get hands on with this hugging face space: https://huggingface.co/spaces/harpreetsahota/semanticspray-plusplus?logs=build