Skip to content
AI.info

Research

EgoMaize: A First-Person Maize Instance Segmentation Benchmark under Severe Field Occlusion

Overview Research area: Computer vision for agriculture — specifically instance segmentation of crop plants in field imagery. Technical level: Intermediate. The core ideas are accessible, but the eval

arXiv
2609.12350
Published
2026-09-14
Authors
Jiayi Li, Zihan Zhang, Erhankang Yan, Yitian Chen, Yuze Li, Chengzhang Ding, Jianxin Cao

AI summary

Overview

Research area: Computer vision for agriculture — specifically instance segmentation of crop plants in field imagery.

Technical level: Intermediate. The core ideas are accessible, but the evaluation metrics (AP₂₅, AP₅₀, mIoU, occlusion bins) assume some familiarity with object detection and segmentation benchmarks.

Scope: The paper introduces EgoMaize, a compact but densely annotated benchmark of close-range, first-person maize field images designed to test whether segmentation models can assign overlapping plant organs to the correct individual plant.

What This Paper Is About

Maize plants in a real field are tall, thin, repetitive, and heavily tangled with their neighbors, so ordinary segmentation labels — which just mark visible plant pixels — often chop one physical plant into scattered fragments or merge parts of different plants. The authors build a benchmark that instead asks models to produce ownership-consistent masks: every visible (or locally recoverable) maize region should be attributed to the right individual plant, and genuinely ambiguous regions should be marked as "ignore" rather than forced into foreground or background. The goal is not a new model but a diagnostic testbed that exposes where current segmentation architectures fail under severe same-class occlusion.

Key Contributions

  1. EgoMaize dataset — a compact egocentric (first-person) benchmark for post-seedling maize instance segmentation: 301 high-resolution RGB images (3072×4096), 1,276 plant instances, and 2,731 ignore regions, captured from within maize rows rather than from overhead UAV views.

  2. Evidence-closed annotation protocol — a labeling workflow that sits between visible-only and full-amodal annotation. It completes invisible regions only when visible structure and known maize architecture make the same-plant ownership locally verifiable, and routes all unreliable maize pixels to ignore instead of background.

  3. Plant-owned auxiliary cues — stem and tassel fields are annotated as attributes linked to a parent plant instance rather than as independent objects, yielding 9,043 organ-field annotations (about 7.09 per plant).

  4. A diagnostic baseline study and annotation validation — nine representative segmentation models benchmarked under identical conditions, plus occlusion-level breakdowns, an ignore-region sensitivity test, a controlled artificial-occlusion experiment, and a four-annotator consistency study comparing evidence-closed against full-amodal labeling.

Main Findings

  • No architecture solves the task. The best model, Mask2Former Swin-B, reaches 0.5014 mIoU and 0.8024 AP₂₅ but only 0.5586 AP₅₀. The large gap between loose and strict instance matching shows models can find approximate plants but struggle to delineate them with correct ownership.

  • Different models win on different metrics. Mask2Former Swin-B leads on mIoU and AP₂₅; CropFormer leads on AP₅₀ (0.6585) and counting error (C-MAE 1.40); YOLO11m-seg has the smallest bounding-box center distance (95.77 px) but near-zero mask AP. Localization is much easier than mask delineation.

  • Performance collapses as occlusion increases. Mask2Former Swin-B drops from 0.7171 AP₂₅ with no occlusion to 0.0915 in the (0.3, 0.5] occlusion bin. No model stays uniformly strong across visibility levels.

  • Ignore regions do not inflate scores. When all ignore pixels are forcibly treated as background, Mask2Former Swin-B only falls from 0.8024/0.5586 to 0.7885/0.5344 AP₂₅/AP₅₀. Of 76 predictions with more than half their area in ignore regions, 75 had best valid-region IoU below 0.25 — so ignore acts as a shield against supervising unverifiable pixels, not as a reward for sloppy masks.

  • Evidence-closed annotation beats full-amodal completion. On a controlled set of 10 plants with real reference views and artificially introduced occluders, evidence-closed labeling achieved 0.8038 mIoU and 32.56 px center distance versus 0.6945 mIoU and 33.72 px for full-amodal.

  • The protocol is reproducible. Across four annotators on 10 difficult images, evidence-closed annotation reached 0.8203 ± 0.0934 mean pairwise IoU with a 71.62 px center offset, compared with 0.5860 ± 0.1216 for full-amodal labeling — a large gain in annotator agreement.

  • Annotation is expensive. One image takes roughly 25 minutes to label, which the authors cite as the reason for keeping the dataset compact rather than large-scale.

Methodology in Plain English

The authors first identified a perception gap: existing agricultural vision datasets cover crop-versus-weed separation, overhead UAV monitoring, seedlings, leaves, or 3D scans, but none targets close-range first-person views of mature maize where many visually identical plants overlap.

To build the benchmark, they captured in-row and oblique field images at 3072×4096 and developed a labeling rule for occlusion. The rule has three outcomes for any maize pixel: (1) if plant ownership is visually clear, label it as part of that plant; (2) if it is recognizably maize but ownership or boundary is unreliable, mark it as ignore; (3) if it is hidden but the gap is short and supported by visible stem or leaf-sheath structure along with known maize architecture, complete it as part of the same plant. Long hidden stretches or regions occluded by external objects are never completed.

Four trained annotators labeled the data using interactive segmentation tools such as SAM to generate initial proposals, which were then manually corrected — the released labels are refined annotations, not raw SAM outputs. Quality control checked ownership consistency, stem/tassel association, and correct use of ignore regions.

For evaluation, the authors used a score-stratified split that balances instance count, occlusion ratio, and ignore coverage across train/validation/test, so the test set is not dominated by easy images. They then ran nine pretrained segmentation models under identical settings, excluding ignore pixels from both training loss and metric computation, and reported mIoU, AP₂₅, AP₅₀, count MAE, and bounding-box center distance. Additional analyses broke results down by occlusion level, tested sensitivity to the ignore policy, validated the annotation rule on a controlled set of plants with deliberately introduced occluders, and measured inter-annotator agreement.

Why This Matters

Impact on research. The paper argues that segmentation quality in agriculture is not a single number. By showing that a model can have 0.80 AP₂₅ and 0.56 AP₅₀, and that different architectures win on different metrics, it pushes the field toward plant-instance ownership as an explicit evaluation target rather than treating vegetation coverage or plant counting as sufficient.

Real-world applications:

  • Field robots and in-canopy phenotyping platforms that must measure stem diameter, ear height, or plant architecture from within a row need to know which stem belongs to which plant before measuring anything.
  • Lodging-resistance breeding, where stalk traits such as stem diameter and bending strength are assessed per plant and stalk lodging alone is estimated to cause 5–20% annual yield losses.
  • Automated plant-level trait extraction for biomass, nitrogen response, and grain-yield studies that depend on linking leaves, stems, and tassels to the correct individual.
  • Annotation tooling and quality control — the released Maize PreSeg Tool and the evidence-closed protocol give agronomy teams a reusable labeling standard for occluded crops.

Industry relevance. Agricultural robotics and precision-farming companies increasingly deploy ground-level sensing that sees crops from inside the canopy. The benchmark quantifies exactly how badly current segmentation models degrade with occlusion, which is directly relevant to whether such systems can be trusted for per-plant decisions rather than whole-plot averages.

Future Directions

  • Scaling across conditions. Expanding the dataset to more field sites, cultivars, planting densities, and post-seedling growth stages, since the current release is limited in scale and acquisition diversity.

  • In-silico validation via plant models. Using procedural or phytomer-based maize growth models with known ownership and occlusion geometry to generate synthetic ground truth for hidden regions, addressing the fundamental limit that 2D images cannot verify hidden plant structure.

  • Phenotype-oriented attributes. Adding labeled traits for exposed stems, leaves, and tassels on top of the existing schema, which is designed to support incremental annotation without redefining the dataset.

  • Exploiting correction traces. The authors have already collected annotator correction traces but did not use them here; planned uses include quality control, active learning, and model-assisted labeling to reduce the roughly 25-minute-per-image cost.

Target Audience

This paper is most useful to computer vision researchers working on instance segmentation and occlusion handling, agricultural engineering and plant phenotyping groups who need plant-level perception from field robots, and dataset/benchmark builders interested in annotation protocols for heavily occluded scenes. Practitioners deploying segmentation models in precision agriculture will also benefit from the concrete failure-mode analysis and the finding that loose instance matching substantially overstates real-world readiness.

Authors’ abstract

Close-range first-person field images are important for mobile maize phenotyping because many plant-level traits depend on in-canopy structures that are difficult to ob serve from overhead views. However, post-seedling maize fields create a difficult in stance segmentation setting: stems, leaves, tassels, and neighboring plants are elon gated, repetitive, and strongly occluded. We introduce EgoMaize, a compact benchmark for first-person maize instance segmentation, where the task is to predict ownership consistent plant masks and plant-owned stem/tassel cues from close-range field images with severe same-class overlap. Existing visible-only labels can fragment one physi cal plant into disconnected supervision, while full-amodal labels may require unverifi able completion behind neighboring plants or field objects. EgoMaize therefore uses an evidence-closed annotation workflow for occluded maize regions and assigns unreli able maize regions to ignore rather than background. Baseline results show that pre trained query-based grouping, boundary refinement, and high-resolution crop refine ment help different aspects of the task, but no architecture solves the coupled chal lenges of fine structure recovery, same-class instance ownership, and occlusion reason ing; occlusion-level analysis further shows that performance decreases as plant visi bility becomes more limited. The dataset and code are publicly available at https: //github.com/JaaaaaaaD/EgoMaize.

Read the original paper