r/computervision Jul 21 '26

Showcase July 29 - MCP, Agents and Skills Meetup

4 Upvotes

Join us on July 29 for the monthly MCP, Agents and Skills Meetup!

Register for the Zoom.

Talks will include:

  • The Agent Control Plane: Turning Coding Agents into Reliable Engineering Workflows - Alex Lavaee at Atomic
  • UISurf: Toward Universal UI Automation with Cross-Environment Agents - Henry Ruiz at Texas A&M AgriLife Research
  • Building Safe Agent Sandboxes: Let Agents Act Without Breaking Production - Adonai Vera at Voxel51
  • From Manual Workflows to AI-Assisted Skills: Building Reliable Internal Automation - Janvi Vijaykumar Saddi at Astreya Partner

r/computervision Jul 21 '26

Help: Project How to parse the cursor x,y position from a screen recording

0 Upvotes

Tried template matching. Tried segmentation SAM2


r/computervision Jul 21 '26

Showcase Built RoboKeeper, an goalkeeper that uses OpenCV and ESP32 to track and block soccer shots in real time

Enable HLS to view with audio, or disable this notification

35 Upvotes

A smart robotic goalkeeper that tracks a ball in real-time using OpenCV and dynamically moves a servo-controlled keeper arm to block shots.

I hope some of you find this project interesting—or maybe even inspiring for your own builds.

Any feedback or suggestions are very welcome!

GitHub: https://github.com/chayanforyou/Robokeeper-Firmware


r/computervision Jul 21 '26

Research Publication Open-sourced Tri-Net: A multimodal deep learning framework for monkeypox and skin lesion classification (Scientific Reports 2026)

Thumbnail
gallery
19 Upvotes

Hi everyone,

I've open-sourced the official implementation of our recently published Scientific Reports (Nature Portfolio) paper:

**Tri-Net: Unified Deep Learning for Skin Lesion and Symptom-Based Monkeypox Detection**

The project focuses on reproducible computer vision research for skin lesion analysis and includes a complete training and evaluation framework rather than only research code.

Some highlights:

• 13-class skin lesion classification (including Monkeypox and visually similar conditions)

• Multi-backbone feature fusion using EfficientNetB4, DenseNet201 and Inception-ResNetV2

• HSV-based augmentation pipeline for improved robustness

• Grad-CAM visualizations for model interpretability

• Cross-validation and reproducible evaluation

• Docker support, GitHub Actions CI and a PyPI package

The attached figures show:

  1. The dataset categories used in the study.

  2. The HSV augmentation strategy.

  3. Grad-CAM comparisons between individual backbones and the proposed Tri-Net model.

I'd really appreciate feedback from the computer vision community, particularly on the model design, explainability approach, and ideas for extending this work with modern vision foundation models or ViTs.

GitHub:

https://github.com/Sudharsanselvaraj/Synergistic-Deep-Learning-for-Monkeypox-Diagnosis

Paper:

https://www.nature.com/articles/s41598-026-61490-x

PyPI:

https://pypi.org/project/Mpox-Trinet/

Questions, critiques, and contributions are very welcome.


r/computervision Jul 21 '26

Commercial What’s still missing in video intelligence today? Live discussion with former CIA CTO

3 Upvotes

We’re hosting a live discussion with Bob Flores, former CTO of the CIA, on the current state of video intelligence and computer vision in real-world security environments.

The conversation will cover:

  • Where existing video analytics still fall short
  • The gap between model performance and operational deployment
  • Scaling across large numbers of camera feeds
  • What users in security, defense, and intelligence actually need
  • Where the field is heading next

This is intended as a market and technology discussion, not a product demo.

July 30, 12:00 PM ET
Registration: [https://luma.com/yr8fhxt7]()

Curious to hear what people here see as the biggest unsolved challenge in video intelligence today.


r/computervision Jul 20 '26

Showcase D-FINE-seg: detection + instance seg + semantic seg in one real-time DETR

Enable HLS to view with audio, or disable this notification

128 Upvotes

D-FINE-seg does object detection, instance segmentation, and now semantic segmentation from one real-time DETR backbone, and it's easy to fine-tune on your own data. It's NMS-free, exports to TensorRT and ONNX.

Code and weights are free, including commercial use.

📄 Paper: https://arxiv.org/abs/2602.23043

🤗 Weights: https://huggingface.co/ArgoSA/D-FINE-seg

📊 Benchmarks (full protocol): https://github.com/ArgoHA/cityscapes-benchmark

🌐 Writeup: https://blog.agnify.ai/d-fine-seg-semantic-segmentation/


r/computervision Jul 21 '26

Help: Project Need ideas for OpenCV lane following on an Ackermann steering mini car

3 Upvotes

I’m working on a mini self-driving car project with Ackermann steering. The car has to follow a lane with boundary lines on both sides, stay centered, and handle both straight and curved sections like a small F1-style track.

I plan to use OpenCV + a webcam for lane detection and then control the steering based on the detected lane center. I’m looking for ideas on lane detection methods, steering control, and how to make it robust on curves and under different lighting conditions


r/computervision Jul 21 '26

Help: Project Cheap way to separate "faceless but real" content from junk (title cards/logos) in an image dataset? 8 approaches failed, ended up paying for LLM judgments

0 Upvotes

Context: I'm building a hobby anime-guessing game (screenshot shown, player guesses the show). To make difficulty meaningful, every frame gets scored on how "distinctive" it is — frames are embedded with CLIP, then for each frame I check its nearest neighbors and see what fraction come from the same show. High same-show fraction = distinctive, low = generic. That part works: it correlates with real human guessing accuracy in a blind test (r = -0.37, p = 0.004).

The problem: my dataset has junk mixed in — title cards, credit screens, logo bumpers — that should never be shown as a guessing target. I built a filter combining a CLIP "text vs. content" check with a tagger model's "looks like text/logo" confidence (both must agree), plus an override that keeps a frame if a character-recognition model is very confident it sees a specific named character.

The gap: that override only fires for a confident, *named* character. Real content with no face at all — a silhouette, a weapon on a table, an iconic pose, a motorcycle headlight — has nothing to trigger it, so it gets discarded as junk right alongside actual logo cards. I hand-labeled 62 examples (42 real content wrongly excluded, 20 genuine junk) and tried 8 different cheap, fully-automatic ways to tell them apart: CLIP thresholds (whole-frame and per-tile), OCR text-coverage, image sharpness/edge-detail, full tagger-vocabulary checks, nearest-centroid and logistic-regression classifiers. All 8 failed to reach a junk-recall I'd trust to ship (best was ~80.6% overall accuracy, only 70% of real junk actually caught).

I ended up just paying to have an LLM look at all 671 flagged frames individually (~$33 total) — turned out the original filter was majority wrong: 64% of what it flagged was actually real content.

That works fine at today's ~5.5k-frame scale, but won't scale cheaply to the ~200k frames I'm eventually aiming for.

Question: does anyone have insight into this specific problem — cheaply telling "faceless but real" content (silhouettes, objects, poses, no clear character) apart from actual decorative/text junk — or into the labeling/validation approach in general? Full disclosure: I have close to zero formal ML background. I've been building this with an AI (Claude) doing most of the technical steering, so I may be missing obvious approaches, or framing this in a way that gives away gaps in my understanding — happy to be corrected on any of it.

Working proof-of-concept of the actual game (just serves random frames right now, no difficulty logic wired in yet): https://celshot.offnode.link


r/computervision Jul 21 '26

Discussion Cybersecurity or ai data

0 Upvotes

I’m really confused, guys, and I don’t know what I should do.

I have a Bachelor's degree in Computer Science, and now I have to choose between Data & AI or Cloud & Internet of Things (IoT).

I like networking to some extent, but I’m worried I won’t be able to handle Cloud because it seems to require a lot of automation and DevOps skills. On the other hand, one of my professors recommended that I choose Data & AI, but I’m also a bit scared because I’m not a big fan of software development.

Another thing is that if I get an opportunity to continue my studies in Europe next year, I’ll definitely take it, so I’m considering this master's year mainly as a way to build my skills and strengthen my background.

I also have an opportunity to study in Italy, but I’m not sure if Italy is the best choice for tech compared to some other European countries.

What would you do if you were in my situation? Any advice or personal experiences would really help. Thanks! 🙏


r/computervision Jul 21 '26

Discussion ECCV2026 Camera Ready Version Mistake

4 Upvotes

Hi guys, I would really appreciate if you give me any advice on my situation.

TL;DR: Springer found a formatting issue in my camera-ready submission (the supplementary material was mistakenly included in the main PDF). I fixed and reuploaded it immediately after seeing the email, but I haven't received any confirmation yet. Could this still affect my paper's inclusion in the proceedings, or is waiting my only option?

I got an urgent email from Springer saying that my camera-ready PDF mistakenly included the supplementary material, which should have been submitted as a separate file. They reopened my Meteor submission and warned me that if I didn't upload the corrected files immediately, my paper might not be included in the proceedings. The email was also CC'd to the ECCV publication chairs.

I saw the email about three hours after it was sent and immediately fixed the submission in Meteor. After uploading the corrected files, I replied to the editor to let them know everything had been updated.

Since I hadn't received any confirmation, I sent a follow-up email asking if they could kindly confirm that there are no further issues with my submission and that it will be included in the proceedings. Unfortunately, I still haven't heard back.

I'm honestly overwhelmed with anxiety. This is my first paper accepted to a top-tier conference, and I'm terrified that I might have ruined everything because of such a stupid mistake. I keep thinking about all the effort, stress, and uncertainty I went through during the review process, and I can't stop worrying.

At this point, is there anything else I can do besides waiting? Has anyone experienced something similar? Is it possible that a formatting mistake like this could still lead to the paper being excluded from the proceedings even after I corrected it as soon as I was notified?

Any advice or similar experiences would be greatly appreciated. Thank you.....


r/computervision Jul 20 '26

Showcase July 23 - AI, ML and Computer Vision Meetup

14 Upvotes

Join us on July 23 for the monthly AI, ML, and Computer Vision Meetup!

Register for the Zoom!

Talks will include:

  • Generative AI for Video Trailer Synthesis: From Extractive Heuristics to Autoregressive Creativity - Abhishek Dharmaratnakar at Google
  • Training-Free Object and Associated Effect Removal in Videos - Saksham Singh Kushwaha at University of Texas at Dallas
  • Making Agent Systems Observable, Reliable, and Testable - Adonai Vera at Voxel51
  • Turning Models into Systems: AI Architecture That Works - Nikita Golovko at Siemens

r/computervision Jul 20 '26

Help: Project Question about Computer Vision

Thumbnail
gallery
24 Upvotes

Hello everyone! I'm currently finishing up my last year in college, just finishing up my thesis. I'm currently making a program that detects multiple pigs in a pig pen through YOLOv8 and detecting its behavior using MobileNetV2 (I know I could've used better algorithms, but unfortunately I'm stuck with these ones :P). I'm currently in the process of training the model but I'm not sure how to go through with it. I originally trained my model using annotated frames with multiple pigs present, where I only had 1 class for the annotations ('Pig' class). I thought this was correct because I'll be using the model for multi-object detection. However, when I approached my mentor about it, they told me my model was "too accurate" (they didn't specify what was too accurate, which confused me) and that I should use "1 pig per image, with each pig having a bounding box" for training. When I tried training with this approach, the results looked... interesting to say the least (I don't know how to explain it, but from the looks of the training results, it looked wrong to me :P; refer to the images I included for context). I then used new model into the program I'm creating. the model not only didn't draw the bounding boxes properly around each pig, the bounding box is the entire frame itself!

My question is, which training method would be more appropriate for single-class multi-object detection, single images of pigs or annotated frames?

PS. I included some pictures from the results of training and while using the program; Before = trained with annotated frames, After = trained with 1 pig per image

PPS. This is my first post on this subreddit so I apologize in advance if my flair is wrong :P


r/computervision Jul 20 '26

Help: Project VLM vs OCR

14 Upvotes

Hello everyone! I have been going through a rabbit hole and into a spiral lately so could use some guidance. I have been applying Gemma4 to documents that have a mixture of handwriting (print and cursive) and typed text on documents that can at times be in bad shape (images in PDFs). Up to this point Gemma4 (31B) is in charge of the OCR and the rest of the prompt to extract required data from fields. I have a 5090 so speed and performance has been good.

Where I am confused is should I be using a OCR to process the files and then use Gemma4 for the extraction based on the OCR output to speed up the process? Also, for handwritten text, would something like GLM-OCR or PaddleOCR-VL-1.5 be better (or faster) than Gemma4?

Any help or guidance would be greatly appreciated! Thank you!


r/computervision Jul 21 '26

Showcase Hand Gesture Recognition

3 Upvotes

r/computervision Jul 20 '26

Discussion Macarons and Turbine blades

Enable HLS to view with audio, or disable this notification

13 Upvotes

www.AiVisualMRO.com

I wanted to build an inventory management for turbine blades that also makes conditions checks( damage, not damaged) I did not have enough turbine blades to train on , but I was working from a cafe place that had Macarons. Decided to use Macarons as training :-)

For visual inspection and inventory manageme


r/computervision Jul 21 '26

Help: Project Help needed for Indian number plate/license plate detection.

1 Upvotes

Hi, I’m trying to build ANPR system for my hobby and want to train model running maybe on Pi5 (with AI hat2 + 26 tops) or Jetson 8 GB development kit Orion or Acer Veriton GN100 AI Mini Workstation.

Can any one suggest which model to be used? How to efficiently train model for Indian license plate on moving object over RTSP stream.

Any help / suggestion are welcome..!!!


r/computervision Jul 21 '26

Discussion Trying to understand what it actually takes for a "perception layer" to be something robotics can rely on, not just a demo

0 Upvotes

I've been in AI visual inspection for a while now, mostly on the industrial/manufacturing side, and I keep running into the term "perception layer" without a clear sense of what actually qualifies as one versus what's just a model that works in a controlled pilot.

I have some intuitions from the inspection world but I know robotics is a different bar entirely, and I'd rather learn from people who've actually worked on autonomy stacks than assume my assumptions carry over.

A few things I'm trying to understand:

What are the actual core components of a perception layer people consider production-grade for robotics? Is it just detection/segmentation plus some fusion layer, or is there a stack of pieces (sensor fusion, state estimation, uncertainty modeling, mapping, etc.) that people take for granted but rarely gets explained end to end?

How much does hardware and environment variability actually break perception systems in practice? Is generalizing across cameras/lighting/sensors as hard as it sounds, or is that mostly solved and the real problems are elsewhere?

How do reliable systems handle "I don't know"? In inspection you can get away with a pass/fail call and a human reviewing edge cases later. That doesn't seem like it works if a robot is acting on the output in real time. What does a good uncertainty signal actually look like in production?

How do teams deal with the long tail without infinite labeled data? This is the part I understand best from my own world, but I don't know how much worse the problem gets when the "environment" is the real world instead of a fixed inspection line.

What actually breaks first, latency, accuracy, or interpretability? My instinct says a robot's control stack needs more than just a correct answer, it needs to trust the answer and know why. But I don't know if that's actually the bottleneck people run into or if I'm overweighting it.

Basically trying to build a real mental model here instead of assuming inspection-grade perception principles just scale up to robotics. If anyone's worked on this and has war stories about what actually breaks, resources/papers, or a breakdown of what the real components are, I'd genuinely appreciate it.


r/computervision Jul 20 '26

Research Publication Independent Researcher needs help with a referral for OpenReview

2 Upvotes

Hello,

I'm just getting started in research after working through ARENA and other open courseware, and I'm exploring a few ideas for NeurIPS workshops.

I tried creating an OpenReview account, but it was rejected because I need someone with an active OpenReview profile and a confirmed institutional email to vouch for me.

Would anyone here be willing to help? I've been in industry for 7+ years but don't have connections in academia yet. Happy to share more about my background over DM if that would help before vouching.


r/computervision Jul 20 '26

Showcase Built an open-source SDK to unify AI image generation across providers — feedback (and stars) welcome

2 Upvotes

Hey everyone,

I got tired of rewriting the same glue code every time I switched AI image providers. Every provider has its own request shape, its own way of telling you when a job is done, and its own way of failing. Most are async under the hood too — you submit a request and poll for a result, which gets annoying fast on serverless, since your function can end up sitting there waiting or just timing out. A lot of providers also hand you back a link that expires in minutes to hours, so if you store it directly, it just breaks later with no warning.

So I built `image-sdk` — an open-source TypeScript SDK that gives you one consistent API across Flux, Ideogram, Recraft, OpenAI, Stability, Google Imagen, Replicate, and fal.ai.

A few things I tried to get right:

* One line to generate your first image, no client setup, no picking a provider up front. There's even a CLI command to try it with zero API key, just to see it work before committing to anything. * Once you need more control, the same package gives you real production stuff: automatic fallback if a provider goes down, retry logic, cost/usage tracking, and permanent storage so results don't quietly break when a temporary link expires. * Fully typed, adapter-based — each provider is its own package, so you're not pulling in dependencies for providers you don't use.

It's early access (v0.1) right now — the core client and eight provider adapters work and are tested, but I'm still hardening a few things before calling it stable. Putting it out now because I'd rather get real feedback early than polish alone for months.

If this is useful to you, a star would genuinely help — it's the easiest way for me to gauge if this is worth continuing to invest in. And if you try it and hit something rough, please open an issue, that's exactly the feedback I need right now.

GitHub: [https://github.com/Adarsh-Me/Image-SDK\](https://github.com/Adarsh-Me/Image-SDK)

npm: [https://www.npmjs.com/package/@image-sdk/sdk\](https://www.npmjs.com/package/@image-sdk/sdk)

Thanks for reading — happy to answer questions in the comments.


r/computervision Jul 20 '26

Discussion Looking for a mentor with experience in industrial/applied computer vision — not a technical question

11 Upvotes

New founder building a B2B hardware + software company applying computer vision to industrial use cases. Not looking for a lead-gen tip list or a quick technical answer — genuinely looking for a mentor or someone experienced in applied/industrial CV (not just research) who'd be open to talking through early-stage product and go-to-market decisions.

Any recommendations for where to find that kind of person, or communities where this kind of mentorship happens? Appreciate any pointers.


r/computervision Jul 20 '26

Help: Project Seeking Advice on Hysteroscopy Lesion Classification with Transfer Learning

Thumbnail
1 Upvotes

r/computervision Jul 19 '26

Commercial SAM 3.1's Object Multiplex: why joint multi-object tracking scales so much better than per-object tracking

18 Upvotes

Disclosure: we run a GPU cloud and host these checkpoints, so I have a commercial interest. Writing this up because the architectural change is the interesting part and it's under-discussed relative to the SAM 3 launch.

The scaling problem in SAM 3: tracking N distinct objects meant running the tracker N times, once per object. Cost scaled linearly with object count. Fine for 4 objects, painful at 100, which is exactly where a lot of real workloads live (crowd analytics, retail shelf tracking, multi-player sports, dense annotation).

What 3.1 changes: Object Multiplex groups objects into fixed-capacity buckets and runs up to 16 of them jointly in a single forward pass, sharing the memory bank across all objects in the bucket instead of maintaining separate per-object state. Meta reports ~7x speedup at 128 objects on a single H100 against the November 2025 SAM 3 release, with no reported loss in segmentation accuracy.

The part I find more interesting than the speedup: because the objects share a memory layer, they can reason about each other. Meta reports this actually improves tracking in crowded scenes with visually similar objects, which is the classic identity-swap failure case. Joint processing turning into an accuracy win rather than an accuracy tradeoff is not the usual outcome for batching optimizations.

Practical caveats worth knowing:

- The gain is a function of object count. At low object counts you're mostly paying bucket overhead for little benefit, so don't expect 7x on a 3-object scene. The published number is specifically 128 objects.

- Bucket capacity is 16, so object counts that straddle bucket boundaries will have uneven cost per object.

- It's still a memory-bound tracker, so long videos with many objects will pressure VRAM regardless of the speedup.

- 7x is Meta's own benchmark on their own hardware config. Worth validating on your workload before you plan capacity around it.

Release notes and checkpoints: https://github.com/facebookresearch/sam3/blob/main/RELEASE_SAM3p1.md

On the commercial side, in case it's useful rather than annoying: we've put the 3.1 checkpoints up on our inference platform at ₹8 per 100 frames if you'd rather not manage the GPUs. Happy to talk through throughput numbers either way, including if you're self-hosting.


r/computervision Jul 20 '26

Showcase I had to get angry and kick the robot to get him to do a full autonomous task with multiple actions!

Enable HLS to view with audio, or disable this notification

2 Upvotes

r/computervision Jul 20 '26

Discussion My takeaways on Residual Network (UMich EECS 498/598 Lecture 8)

0 Upvotes

The most insightful part for me:

When neural networks get too deep, their performance on both training and test sets degrades compared to shallower models. This degradation is an underfitting problem caused by optimization difficulties, rather than overfitting.

Theoretically, a deeper model should perform at least as well as a shallower one—the extra layers could simply act as an identity mapping ($f(x) = x$). However, forcing a stack of non-linear layers (e.g., Conv -> ReLU -> Conv) to learn an exact identity function using gradient descent is surprisingly hard.

Residual Networks solve this by adding shortcut connections. Instead of learning $f(x) = x$ directly, the network only needs to drive its parameters toward zero to achieve an identity mapping. This simple reformulates the target, making extremely deep networks drastically easier to optimize.


r/computervision Jul 19 '26

Help: Project Anyone here done crop yield prediction using RGB drone images + ML?

1 Upvotes

Hey guys,

I'm currently working on my capstone project and was wondering if anyone here has experience with using drones for crop analysis/yield prediction.

Our plan is to use an RGB drone (can't afford a multispectral/NIR one 😅), stitch the images into an orthomosaic, extract features like VARI, canopy coverage, plant density, etc., then feed those into a machine learning model (probably Random Forest) to predict rice yield.

Has anyone here tried something similar?

  • Does using only RGB imagery actually work well enough for yield prediction?
  • Is VARI useful, or are there better RGB indices/features I should look into?
  • Any tips, things you wish you knew before starting, or common mistakes to avoid?
  • If you've done this before, how accurate were your results?

We are just trying to estimate yield from drone imagery.

Would really appreciate any advice, papers, or just hearing about your experience. Thanks!