Rice panicle blast detection is an important task in plant disease phenotyping. Field-based detection remains challenging because infected spike regions are often small, sparse, elongated, and affected by overlapping panicles, complex backgrounds, and variable illumination. In this study, we propose RPB-YOLO11, a lightweight YOLO11-based detector designed for rice panicle blast detection. The model uses a Lightweight Ghost Backbone (LGB) to reduce redundant computation. It uses Anisotropic Axial Stripe Attention (A2SA) to represent elongated panicle structures. It also uses Focal Multi-Scale Attention (FMSA) for multi-scale feature refinement and Adaptive Geometric Shape IoU (AGS-IoU) for geometry-aware localization. The model was trained and evaluated on a rice panicle image dataset containing 1,055 training images, 69 validation images, and 169 test images. On the test set, RPB-YOLO11 achieved 76.09% mAP50, 45.44% mAP50-95, 73.98% precision, and 72.75% recall with 6.21 GFLOPs. Compared with the YOLO11n baseline, it improved mAP50, mAP50-95, precision, and recall by 2.73, 2.12, 1.64, and 2.11 percentage points, respectively. An Android-oriented inference application supports local image inference, detection visualization, class counting, and diseased-panicle incidence estimation. These results suggest that RPB-YOLO11 provides a practical approach for image-based rice panicle blast survey.
Why it matches plant phenotyping methodsイネ穂いもちの画像検出モデルを開発・比較検証し、罹病穂率を推定する実用アプリまで構築しており、植物病害状態の画像ベース表現型取得が中心である。
abstractIn this study, we propose RPB-YOLO11, a lightweight YOLO11-based detector designed for rice panicle blast detection.
Reproduction assets foundThe paper links a public Hugging Face dataset used to establish the rice panicle blast detection dataset and a public GitHub release (data availability statement) containing the study's datasets/models.Dataset · publicsites, cultivars, growth stages, imaging conditions, and disease severities are still needed to evaluate generalization more fully.
Statements
Data availability statement
The datasets presented in this study can be found in online repositories. The names of the repository/repositories and accession number(s) can be found below: https://github.com/XuzheYang2Doc/RPB-YOLO11/releases/tag/rpb-yolo11 .
Author contributions
XY: Data curation, Formal analysis, Investigation, Methodology, Software, Validation, Visualization, Writing – original draft, Writing – review & editing. XZ: Conceptualization, Methodology, Visualization, Writing – original draft, Writing – review & editing. CX: Formal analysisOpen asset ↗XuzheYang2Doc/RPB-YOLO11 · rpb-yolo11lines:639-658Code / dataset availability confirmedOpenAlex · Europe PMC · checked 5 Sept 2026
The inflorescence is a key yield-determining organ, yet its complex morphology makes manual pixel-level annotation time-consuming, leading to a scarcity of high-quality segmentation datasets. To address this bottleneck, we propose ZCAT (Zero-shot Cross-crop Annotation Transfer), a novel paradigm for zero-annotation cross-crop pseudo-mask screening. ZCAT completely eliminates pixel-level manual annotation of the target crop, requiring only holistic quality assessment of model-generated pseudo-masks (5-10 s per image). Specifically, we train a SegFormer model on public rice panicle datasets (CVRP and RiceSEG) and transfer it across crops to the wheat spike segmentation task. The key innovation is the introduction of a human-defined quality function Q, which circumvents the fundamental challenge in self-learning algorithms: the inability of computers to autonomously distinguish good masks from bad ones. Through iterative human-in-the-loop pseudo-label screening with a curriculum learning strategy, each round adds only a few high-quality pseudo-masks to the training set, continuously improving model performance. After four iterations, ZCAT produces pseudo-masks with an average Spike IoU of 0.7003, evaluated against the GWFSS manual annotations as ground truth. Moreover, the pseudo-mask dataset exhibited higher benchmark performance than the GWFSS manual annotations (Spike IoU 0.7612 vs. 0.7027; mIoU 0.8627 vs. 0.8247), suggesting stronger self-consistency. A generalization test on a strictly held-out set of 100 manually annotated wheat spike images showed that the model trained on ZCAT-generated pseudo-masks achieved marginally better performance than that trained on the GWFSS manual annotations (Spike IoU: 0.5112 vs. 0.4927; mIoU: 0.5627 vs. 0.5247). The time budget of the ZCAT pipeline was substantially lower than that of manual annotation. ZCAT opens a new pathway for rapid annotation of plant reproductive structures or other organs and significantly reduces data preparation costs in plant phenomics. The generated wheat spike pseudo-mask dataset and the mask quality screening tool (Mask Quality Screener) are open-sourced.
Why it matches plant phenotyping methods植物器官セグメンテーションのためのゼロショット転移、擬似マスク品質評価、反復学習パイプラインを開発・検証しており、表現型取得基盤が中心である。
abstractThe key innovation is the introduction of a human-defined quality function Q
Reproduction assets foundThe paper explicitly open-sources two paper-specific assets: the ZCAT-generated wheat spike pseudo-mask dataset and the Mask Quality Screener tool, both with public GitHub URLs in the Data availability statement.Dataset · publicThe wheat spike pseudo-mask dataset and Mask Quality Screener are available at https://github.com/zyxyes1/MaskQualityScreener and https://github.com/zyxyes1/Wheat-Spike-Semantic-Segmentation , respectively.Open asset ↗Wheat-Spike-Semantic-Segmentationlines:415-440Code / dataset availability confirmedCrossref · Europe PMC · checked 5 Sept 2026
Sustainable wheat farming is challenging. Real-time information on crop health, disease transmission, and anticipated yields is essential for farmers. However, they frequently use slow, expensive, or non-communicative tools. This project develops a workable solution. There is no need for massive server farms because the entire system operates on a single graphics card. It incorporates images of wheat fields, Indian farming notes, greenhouse records, harvest statistics, and NASA meteorological data. Consider them as various “eyes” for crop photo analysis, and we tried several lightweight computer vision models. ConvNeXt-Tiny was slower but could operate on older equipment with 75% accuracy; EfficientNetB0 recognised wheat heads with 92% accuracy; and AgroMark, a hybrid solution that merged photo analysis with agricultural metadata (soil type, rainfall, increased to 87%, etc. Combining picture analysis with attention mechanisms (CBAM) allowed us to anticipate the amount of wheat that a field will yield based on these photo insights, and the results showed that our predictions were accurate, with an R 2 score of 0.97. Additionally, we developed a versatile detector that simultaneously detects disease, stress, head count, and pests. It is adjusted to deal with training data that is unbalanced (some diseases are common, while others are rare). As we packed everything into a 16-GB graphics card, we spent real time determining which strategies smaller training sets, removing weak features, and adjusting loss functions, work. We encounter real-world obstacles along the road, such as photographs from different locations not always match, mislabeled photographs from different locations not always match, mislabeled diseases, and neglected rare pests. Our step-by-step instructions, charts, and code are available.
Why it matches plant phenotyping methods小麦画像から病害・ストレス・穂数・収量などの植物形質・状態を推定するマルチモーダル手法を開発し、複数モデルの精度比較と実装上の検証を行っており、表現型取得・推定が研究の中心である。
abstractThis project develops a workable solution.
Reproduction assets foundThe paper builds its multimodal wheat phenotyping analysis on several explicitly cited public data assets: the Kaggle Wheat Plant Diseases image dataset (used for disease classification, Tables 2 and 9), the Global Wheat Head Detection dataset (used for head detection, Tables 1 and 6), FAOSTAT and India Open GovernmentDataset · publicAvailable online at: https://www.fao.org/faostat/ . FAOSTAT statistical database.Open asset ↗lines:1110-1162Code / dataset availability confirmedEurope PMC · Crossref · checked 5 Sept 2026
An understanding of spike shape will be of great benefit for improving wheat yields. Traditional manual measurements of spike traits are slow and prone to human error, preventing large-scale phenotyping. Employing imaging techniques will allow researchers to measure multiple morphometric parameters simultaneously. While 2D imaging provides a rapid screening method, 3D imaging offer a more comprehensive understanding of spike shape, revealing complex external structures. This study addresses the challenge of developing a high-resolution 3D surface-scanning pipeline to accurately quantify wheat spike morphology across diverse genotypes. Using a 3D surface-scanner, sharp point clouds of individual spikes were reconstructed and automatically aligned and analysed to extract key morphological features including spike length, volume, and cross-sectional area profile. New shape descriptors based on cross-sectional area profiles, local extremes, statistical curve fitting, segmentation of spikes into zones of aborted spikelets, base and apical segments as well as the extraction of spike/spikelets branching and endpoints of components were introduced to capture detailed structural variation between genotypes. Correlations between the 3D-derived traits and traditional metrics such as spike weight, spikelet number and seed weight confirmed the biological relevance of the extracted parameters. The method distinguished morphological differences among twelve wheat genotypes, revealing distinct shape types such as long, short, compact, and awned spikes. By combining precise 3D imaging with computational analysis, this approach provides a non-destructive framework for spike phenotyping. These findings demonstrate that 3D surface-scanning can deliver accurate and reproducible measurements of wheat spike architecture, offering new opportunities for linking morphology with genetics and yield potential in modern breeding programs.
Why it matches plant phenotyping methods小麦穂の形態を3D画像取得と計算解析で定量化するパイプラインを開発し、形状記述子の抽出と遺伝子型間での検証を行う、植物フェノタイピング手法の中心的研究である。
abstractThis study addresses the challenge of developing a high-resolution 3D surface-scanning pipeline to accurately quantify wheat spike morphology across diverse genotypes.
Reproduction assets foundThe paper's Data Availability and Code Availability sections point to the authors' public GitHub repository containing sample 3D spike data and the analysis code for the wheat spike morphology pipeline.Code · publicCode Availability
The codes are available at the following link: https://github.com/LatifaGreche/3D-WheatSpikeMorphologyExtractionOpen asset ↗LatifaGreche/3D-WheatSpikeMorphologyExtractionlines:316-410Code / dataset availability confirmedEurope PMC · checked 5 Sept 2026
In-season estimation of wheat grain yield potential is critical for crop management and advancing breeding efforts. Spike and spikelet counts serve as key indicators directly linked to yield potential, yet their assessment still relies on manual counting which is both labor-intensive and error-prone. High-resolution digital (RGB) imagery combined with deep learning-based object detection methods has substantially advanced automatic wheat spike detection and counting. However, precise spikelet-level phenotyping remains largely underexplored. This study evaluates two recent YOLO variants, YOLOv11 and YOLOv12, for wheat spike and spikelet detection and counting using oriented bounding boxes (OBB), and introduces a new large-scale benchmark dataset comprising 48,521 spike and 60,404 spikelet instances with OBB annotations. For spike detection, the pre-trained YOLOv11 achieved superior accuracy (mAP@0.5 = 95.8%, Pearson r = 0.993) with shorter training and inference times compared to YOLOv12. For spikelet detection, the non-pretrained YOLOv11 demonstrated higher accuracy (mAP@0.5 = 99.0%), while counting performance was comparable across models. These results establish OBB-based YOLO detection as a robust and scalable approach for AI-driven wheat phenotyping.
Why it matches plant phenotyping methods小麦の穂・小穂という収量関連形質の画像ベース検出・計数手法を比較評価し、大規模ベンチマークデータセットも構築しているため、フェノタイピング手法が中心である。
abstractThis study evaluates two recent YOLO variants, YOLOv11 and YOLOv12, for wheat spike and spikelet detection and counting using oriented bounding boxes (OBB), and introduces a new large-scale benchmark dataset comprising 48,521 spike and 60,404 spikelet instances with OBB annotations.
Reproduction assets foundThe paper openly states its supporting data (spike/spikelet imagery with OBB annotations) is available on Zenodo, and the underlying models are deployed on the authors' public WheatAI cloud platform.Dataset · publicData availability
The data supporting the findings of this study are openly available at: https://doi.org/10.5281/zenodo.20215489 .Open asset ↗zenodo · 10.5281/zenodo.20215489lines:219-266Code / dataset availability confirmedOpenAlex · Europe PMC · checked 15 Sept 2026
The number of petals in an inflorescence is an important phenotypic indicator for quality evaluation and cultivar identification of cut chrysanthemums ( Chrysanthemum morifolium Ramat.). Current manual measurement methods are time-consuming, error-prone, and poorly suited to the complex geometry of chrysanthemum flowers, which limits their utility for large-scale phenotyping and breeding programs. Although image-based phenotyping has advanced rapidly, automated and reliable methods for petal counting in densely packed or partially obscured inflorescences remain underdeveloped. Here, we developed a deep learning-based framework for automatic extraction of petal number in cut chrysanthemums. Images from multiple varieties were collected to construct a representative dataset, and petal density maps were generated through manual annotation with Gaussian kernel function. We employed a Congested Scene Recognition Network (CSRNet) enhanced with a Squeeze-and-Excitation (SE) channel attention mechanism (SE-CSRNet) for petal density estimation. Spearman correlation analysis revealed strong agreement between visible and actual petal counts (Spearman’s r=0.953, p<0.0001). Compared with the original CSRNet, SE-CSRNet reduced mean absolute error (MAE) and root mean squared error (RMSE) by 5.2% and 7.4%, respectively. Further optimization using regression fitting revealed that random forest achieved the best performance (MAE = 4.24, RMSE = 5.06, R 2 = 0.967), indicating reliable stability and satisfactory generalization under the conditions evaluated in this work. Application of the optimized model to two cut chrysanthemum varieties confirmed its practicality by successfully detecting reductions in petal number under high-temperature stress. Our results demonstrate that integrating dataset construction, deep learning–based density estimation, and machine learning optimization enables efficient and accurate prediction of petal number in cut chrysanthemums.
Why it matches plant phenotyping methods花弁数という植物形質を画像から自動抽出する深層学習手法を開発し、データセット構築、性能比較、検証、実用適用まで行っており、表現型取得手法が研究の中心である。
abstractHere, we developed a deep learning-based framework for automatic extraction of petal number in cut chrysanthemums.
Reproduction assets foundThe article states that some data (the chrysanthemum petal-counting dataset and related materials) will be available at the authors' public GitHub repository (qwsdfgz/petalscount), with other data available from the corresponding author upon reasonable request. The repository URL is explicitly provided by the authors,但Dataset · publicnctional components of bud-leaves and flowers in edible chrysanthemum (Chrysanthemum morifolium Ramat)
Horticulturae 11 5 2025 448
10.3390/horticulturae11050448
Appendix A
Supplementary data
The following is the Supplementary data to this article.
Multimedia component 1
Data availability
Some data will be available at this URL: https://github.com/qwsdfgz/petalscount . Other data are openly available from the corresponding author upon reasonable request.
Appendix A
Supplementary data to this article can be found online at https://doi.org/10.1016/j.plaphe.2026.100238 .Open asset ↗qwsdfgz/petalscountlines:602-636Code / dataset availability confirmedOpenAlex · Europe PMC · checked 5 Sept 2026
Traditional deep learning-based plant computed tomography (CT) image segmentation methods require a large amount of high-quality manually labeled data for model training specific to each species, leading to substantial labor costs and poor adaptability to new species. These limitations hinder the application of CT imaging in large-scale cross-species plant phenotyping analysis. Therefore, developing annotation-free and training-free plant CT image segmentation methods is of significant research and application value in reducing research costs and promoting the efficiency of cross-species analysis. To achieve this, we introduce an unsupervised zero-shot segmentation framework for cross-species plant CT images, DiffPlantCT. It is a 2D-to-3D framework that first segments all 2D slices and then assembles them in their original order to generate a 3D CT segmentation. For each slice, this framework directly constructs discriminative clustering features by combining the general semantic priors provided by the self-attention layers in a pre-trained stable diffusion model with the intrinsic grayscale distribution of original image, thereby completely avoiding the need for manual annotations. The method ultimately outputs segmentation results solely through unsupervised clustering, achieving zero-shot generalization without any model training or fine-tuning. To evaluate the feasibility of DiffPlantCT in cross-species segmentation, we benchmark the segmentation performance on two public datasets (walnut fruit and barley spike) and two self-collected datasets (wheat spike and rice panicle). The results show that DiffPlantCT achieved the best performance, with a 41.6% improvement in overall mIoU compared to the state-of-the-art unsupervised method. For the first time, we demonstrate annotation-free, training-free segmentation of cross-species plant CT images successfully.
Why it matches plant phenotyping methods植物CT画像から3D形状を抽出する、アノテーション不要・学習不要の分割手法を開発し、複数作物データセットで性能評価しており、表現型取得手法が研究の中心である。
abstractwe introduce an unsupervised zero-shot segmentation framework for cross-species plant CT images, DiffPlantCT.
Reproduction assets foundThe paper open-sources the DiffPlantCT implementation code on GitHub and benchmarks on two public plant CT datasets (walnut fruit via figshare; barley spike via Plant Methods), all with explicit availability statements and matching allowed URLs.Code · publicThe datasets and implementation code of the DiffPlantCT framework are open-sourced on GitHub at https://github.com/WeizhenLiuBioinform/DiffPlantCT_Zero-Shot_Plant_CT_Segmentation .Open asset ↗WeizhenLiuBioinform/DiffPlantCT_Zero-Shot_Plant_CT_Segmentationlines:220-287Code / dataset availability confirmedCrossref · OpenAlex · Europe PMC · checked 5 Sept 2026
Ear density ( ) and ear surface area in cereals are important traits for adaptation to low inputs and climate change. Here we propose a high-throughput field phenotyping method to estimate these traits using nadir and 45° RGB images acquired by the Phenomobile ground robot. First, the YOLOv5 ear detection algorithm is applied to nadir RGB images to estimate . Second, an ear segmentation algorithm is applied to nadir and 45° RGB images to compute the ear gap fraction at different viewing angles. The Beer-Lambert law is then inverted to compute the ear area index (EAI) from the observed ear gap fraction. is finally derived as the ratio between EAI and . We applied the methodology to a panel of 10 commercial bread wheat varieties how both traits vary across 12 environments. The relative error obtained for awnless varieties is 12% (56 ears m -2 ) for and 18% (1.3 cm 2 ) for . For awned varieties, ground-truth observations of were shown to be biased due to an overestimation of awns contribution, leading to an error of 41% (3.6 cm 2 ). was strongly correlated with grain dry mass per ear at harvest ( r 2 = 0.80 across genotypes and environments, r 2 per genotype ranged between 0.80 and 0.95) and was strongly correlated with grain yield ( r 2 = 0.83). These results indicate that both EAI and can be interesting non-destructive proxies for yield and grain dry mass per ear.
Why it matches plant phenotyping methodsRGB画像と地上ロボット、物体検出・セグメンテーション・Beer–Lambert法を組み合わせ、コムギ穂の密度と表面積を推定・検証する手法が研究の中心であるため。
abstractHere we propose a high-throughput field phenotyping method to estimate these traits using nadir and 45° RGB images acquired by the Phenomobile ground robot.
Reproduction assets foundThe authors publicly release their ear surface area estimation algorithm with an example dataset on an INRAE forge repository, and the Phenomobile-derived ear density/ear surface area estimations used in the multi-environment analysis are included as supplemental material with the open-access article. The YOLOv5 GWC_SoDataset · publicThe algorithm developed to estimate the EAI and the average ear surface using binary images from ear segmentation are publicly available in the repository https://forge.inrae.fr/raul.lopez-lozano/wheat-ear-surface , jointly with an example dataset from the Mauguio 2023 trial (4 treatments, 1 replicate). The Phenomobile estimations of ear surface area and ear density used in the multi-environmental mixed model presented in Section 2.5 are included as supplemental material.Open asset ↗lines:614-652Code / dataset availability confirmedCrossref · Europe PMC · checked 6 Sept 2026
P henotyping remains a critical bottleneck in sorghum ( Sorghum bicolor L. Moench) breeding programs, limiting rates of genetic gain due to labor-intensive yield estimation methods. To address this concern, this study investigates the potential of integrating remote sensing data with machine learning (ML) and deep learning (DL) models to improve sorghum grain yield predictions. Unmanned aircraft systems (UAS)-based imagery was collected across multiple field trials, extracting standard vegetation indices, canopy height features, and panicle traits using a YOLOv11-based object detection model, "YOLO-SORG." Six ML models-including ridge regression (RR), elastic net (EN), LASSO regression (LR), support vector regression (SVR), random forest (RF), and XGBoost (XGB)-were trained to predict plot-level yield using three distinct feature sets: panicle traits, canopy traits, and a combination of both. Results indicate that models relying solely or partially on canopy-derived features provided the most consistent and accurate yield estimates (R 2 ≈ 0.74-0.76), whereas models relying solely on panicle traits performed poorly (R 2 ≈ 0.28-0.42), indicating nadir-derived panicle metrics were potentially being indirectly captured with the canopy traits. Traditional regression models outperformed tree-based ensemble methods in variance partitioning and repeatability ( R ≈ 0.59-0.60), making them more suitable for many breeding applications. These findings highlight the promise of UAS-driven ML pipelines for non-destructive yield prediction but underscore potential limitations of nadir imagery for capturing panicle morphology and use in a robust yield prediction model. Future research should explore the inclusion of multi-temporal imaging, refined feature extraction approaches, and use of oblique, non-nadir imagery to enhance predictive accuracy in sorghum breeding programs.
Why it matches plant phenotyping methodsUAS画像からキャノピー高、穂形質、植生指数を抽出し、機械学習でソルガムのプロット収量を推定するパイプラインが研究の中心であり、形質取得・推定手法の評価も行っている。
abstractthis study investigates the potential of integrating remote sensing data with machine learning (ML) and deep learning (DL) models to improve sorghum grain yield predictions.
Reproduction assets foundThe authors explicitly state that the tabular data and code used in this sorghum yield prediction study are publicly available in their GitHub repository, which is a paper-specific asset containing the analysis code and phenotype data.Code · publicThe tabular data and code used in this study can be found in the following GitHub repository: https://github.com/AcePugh/Sorghum_Yield_Prediction_2025/Open asset ↗AcePugh/Sorghum_Yield_Prediction_2025lines:137-139Code / dataset availability confirmedCrossref · checked 13 Sept 2026
Accurate timing of rice panicle anthesis is critical for quantifying sterility risk under heat and humidity, yet minute-scale field measurement remains challenging because anthesis is transient and spikelets are tiny and difficult to detect. To address this, we present OPAL-Flow, a pipeline that provides single-panicle anthesis start and peak times under field conditions, consisting of a detector for panicle detection and tracking, a super-resolution reconstruction model, and an event-time pinpointing model. For slender panicle detection and panicle pose normalization, YOLO-SnakePanNet was introduced by using Dynamic Snake Convolution with a lightweight box-rotated head. Ablation experiments show that YOLO-SnakePanNet achieved mAP@50 of 94.4%, improving by 3.6% over the YOLOv11 while reducing computation by 0.7 GFLOPs. For panicle-level anthesis pinpointing, PanicleTimeMAE was proposed by incorporating a pyramid-dilated temporal convolutional network and a confidence-aware smoothing gate into the transformer, reaching Acc@±1 of 0.85 on 5-min sampled sequences (±1 frame = ±5 min), yielding a 40% decrease in MAE over VideoMAEv2. Finally, correlation analysis between variety-level anthesis start time (T start ) and peak time (T peak ) and same-day meteorology showed that higher photosynthetically active radiation (r = -0.543/-0.573 for T start /T peak ) and temperature (r = -0.288/-0.272) advanced anthesis, whereas higher relative humidity (r = 0.397/0.438) and rainfall (r = 0.428/0.502) delayed anthesis. The variance decomposition within fixed-effects model for Tstart ( R2 = 0.651) and Tpeak ( R2 = 0.648) prediction shows that variance mainly attributed to meteorological effects (64%) and variety effects (33.5%). Overall, OPAL-Flow enables variety selection for heat- and humidity-resilient anthesis in rice breeding and supports ecophysiological dissection of anthesis regulation.
Why it matches plant phenotyping methodsイネ穂の開花時刻という植物形質を圃場画像・動画から推定する検出、追跡、超解像、時刻推定パイプラインを開発し、性能評価も行っているため、植物フェノタイピング手法が研究の中心である。
abstractwe present OPAL-Flow, a pipeline that provides single-panicle anthesis start and peak times under field conditions, consisting of a detector for panicle detection and tracking, a super-resolution reconstruction model, and an event-time pinpointing model.
Reproduction assets foundThe paper's Data availability statement explicitly states that the source code and test samples for OPAL-Flow are publicly available on GitHub at the authors' repository. This is a paper-specific, publicly actionable code asset. The phenotype datasets (panicle detection dataset, start/peak annotation sequences) are notCode · publicThe source code and test samples used in this study are publicly available at: https://github.com/gfjiyue/OPAL-FLOW . Additional data can be made available upon reasonable request.Open asset ↗gfjiyue/OPAL-FLOWlines:578-590Code / dataset availability confirmedOpenAlex · Crossref · checked 15 Sept 2026
A comprehensive description of plant phenotypes of certain taxa is an important task when describing genera and species, as well as when setting their natural taxonomies. The development of modern technologies of effective phenotyping makes it possible to obtain a large amount of data with a quantitative and/or qualitative description of various traits in plants, mainly based on the analysis of their digital images. The study compared the results of the F2 hybrids assessment - visually and using machine learning methods - of two endemic tetraploid (2n = 4x = 28) wheat species which are Ethiopian wheat (Triticum aethiopicum Jakubz.) and Kartalian or Dika wheat (T. carthlicum Nevski). In the latter case, it is proposed to use the method of a mixture of Gaussian (normal) distributions in plant morphometry in order to identify groups that differ in character values. Most taxonomically important (species-specific) traits are controlled oligogenically and have a clear phenotypic manifestation, so hybridological analysis was an indispensable and basic type of analysis for subsequent detailed phenotyping of wheat spikes using machine-learning methods. According to a number of criteria, the estimates of patterns of inheritance obtained by different methods coincide. Based on the conducted research, we can state that the trait "tetraaristatum" (the presence of awns on both flower and spike glumes) is species-specific (taxonomically important) for T. carthlicum and it can be effectively used for taxonomic purposes both in carrying out hybridological analysis and in experiments using machine learning. Such a species-specific character is the "character (type) of awnedness" for T. aethiopicum. Our study demonstrates that a combination of automatic phenotyping methods and a model of a mixture of Gaussian distributions can, in principle, lead to an automatic analysis of the allocation of classes in F2 hybrids. It allows, in turn, to detect the presence of genes associated with species-specific traits of wheat plants. Further, the improvement of the applied artificial intelligence (AI) algorithms is required.
Why it matches plant phenotyping methodsコムギ穂の形態形質を対象に、画像に基づく機械学習フェノタイピングとガウス混合モデルを提案・適用しており、表現型の自動抽出・分類が研究の中心である。
abstractThe study compared the results of the F2 hybrids assessment - visually and using machine learning methods
Reproduction assets foundThe paper's supplementary materials (Supplementary Tables S1–S3 and Figure S1) contain the paper-specific phenotyping data: species-specific trait descriptions, the 19 spike morphometric characters per projection, and the Gaussian mixture model splitting results (means, variances, group sizes, χ² values). The full textSupplement · publicof these traits
are controlled by oligogenes and have a clear phenotypic
manifestation, the hybridological method was an indispensable
and primary type of analysis for subsequent detailed
phenotyping spikes of wheat species using machine learning
methods.
Supplementary Materials are available in the online version of the paper:
https://vavilov.elpub.ru/jour/manager/files/Suppl_Kruch_Engl_30_3.pdf
Plant material. The object of study was interspecific
hybrids obtained by crossing two endemic tetraploid
wheat species ♀T. aethiopicum Jakubz. (k-19301/2) with
♂T. carthlicum
Nevski (k-32496). The experiment was produced
in spring sowing in the greenhouses of the Breeding
and Genetics Complex (BGC)Open asset ↗lines:111-200Code / dataset availability confirmedOpenAlex · arXiv · checked 15 Sept 2026
Accurate estimation of wheat spike volume is important for yield component analysis and stress resilience assessment, yet field-based measurement remains challenging. Active 3D sensing methods such as Light Detection and Ranging (LiDAR) or time-of-flight (ToF) are sensitive to plant motion or poorly suited to outdoor conditions, while 3D reconstructions are computationally expensive. Direct 2D image processing would offer computational advantages, but image-based models lack explicit geometric information. We therefore propose a hybrid 2D-3D approach with knowledge distillation during training while enabling efficient image-only inference. First, we train a rigid-invariant point cloud network using distance-based histogram features to obtain pose-robust geometric representations. We then combine the 3D model with a proposed multi-view image-based regulated Transformer (RT) in an ensemble architecture. Finally, we distill the ensemble knowledge into a purely image-based student model using either feature-based or label-based distillation. The two distilled RTs reduce the mean absolute error (MAE) from 654.31 mm$^3$ of the non-distilled RT to 639.93 mm$^3$ and 644.62 mm$^3$, and increase correlation from 0.76 to 0.77 and 0.82, respectively. At the same time, inference time is reduced from 160 ms to 1.4 ms per spike. Distillation further mitigates volume-dependent bias and reshapes the latent representation of the image model toward a geometry-aware shape. Our results demonstrate that 3D-informed training of a 2D Transformer allows for scalable and efficient spike volume estimation for high-throughput field phenotyping.
Why it matches plant phenotyping methods小麦穂の体積を画像・3D再構成・知識蒸留で推定する手法の開発と性能評価が中心であり、高スループット植物フェノタイピングへの応用も明示されている。
abstractWe therefore propose a hybrid 2D-3D approach with knowledge distillation during training while enabling efficient image-only inference.
Reproduction assets foundThe paper explicitly states that links to its wheat spike dataset (multi-view images and 3D scans) and its analysis code are available via the authors' project webpage, which is an allowed URL. Other URLs (pyrender, CORDIS projects) are generic libraries or unrelated funding projects, not paper-specific assets.Dataset · publictance of around 2.5 m with a ground sampling distance of 0.3 mm (Fig. S1 a). The tagged and imaged spikes (Fig. S1 b) were sampled and ground truth volumes were acquired with a 3D light scanner (Shining 3D Einscan-SE V2, SHINING3D, Hangzhou, China) following the protocol of [ 76 ] . Links to the dataset and code can be found at https://oliviazum.github.io/3DKD-wheat/ . Detailed information about the dataset can be found in Sec. A .
3.3 Data Pre-Processing
Field images contained approximately 300-500 spikes per genotype within a plot of about 1.5 m 2 m^{2} . To reduce background inference, spike detection was first performed, and all subsequent processing was restricted to the detected regioOpen asset ↗lines:91-104Code / dataset availability confirmedEurope PMC · checked 5 Sept 2026
Rice ( Oryza sativa ) production underpins food security in many rice-consuming nations. As a critical developmental transition that directly determines yield and grain quality, flowering dates and timing are genetically complex and highly sensitive to environmental fluctuations. This complexity requires new methods to quantify diurnal floral characteristics, which are essential to hybrid breeding in cereals. Here, we present BloomSight, an ultra-high-frequency and deep-learning (DL) powered framework for phenotyping and measuring minute-level flowering dynamics in japonica and indica rice. After monitoring 172 rice accessions selected from the Chinese Rice Mini-Core Collection using cost-effective time-lapse imaging platforms for 16 days, we acquired over 530,000 accession-level images and established the Open Rice Flowering Training (ORFT) dataset, with over 39,000 panicles and 350,000 anthers annotated. Next, a two-stage customised DL model (i.e. YOLACT-Panicle for panicle segmentation and UNet-Anther for anther identification) was trained using the ORFT set, enabling ultra-high-frequency measures of anther extrusion at the minute level. Based on trait analysis, we further fitted curves to dynamically identify diurnal flowering patterns, including key timepoints such as the initial flowering timepoint ( T Ini. ), quickest flowering timepoint ( T Qck. ), and peak flowering time ( T Peak ), and novel traits such as the duration of rapid flowering phase ( P Rpd. ) and flowering density across key phases. After validating BloomSight-derived traits against manual observations, we classified the japonica and indica accessions into three patterns: Slow, Moderate, and Fast, all of which had distinct flowering windows. These analyses helped us integrate phenotypic variations into a genome-wide association study (GWAS), revealing many significant single nucleotide polymorphisms (SNPs) associated with known (e.g. EMF1 , OsMYB8 , and PME42 ) and several repeatedly identified unknown loci (one of these loci has been recently verified by other groups), demonstrating the value of the BloomSight framework. Taken together, we believe that BloomSight provides an ultra-high-frequency framework for diurnal flowering phenotyping, enabling the measurement of biological meaningful floral traits with minute-level resolution that can enable flowering-related developmental studies and hybrid-breeding applications in rice and more broadly benefit the plant and crop research community.
Why it matches plant phenotyping methodsイネの開花動態を高頻度画像と深層学習で抽出するフェノタイピング基盤を開発し、データセット構築と手動観測による検証も行っているため、方法が研究の中心である。
abstractwe present BloomSight, an ultra-high-frequency and deep-learning (DL) powered framework for phenotyping and measuring minute-level flowering dynamics in japonica and indica rice
Reproduction assets foundThe paper's Data and code availability statement explicitly provides public access to the ORFT annotated image dataset (BioStudies S-BSST2157), Python source code for floral trait analysis (GitHub The-Zhou-Lab/BloomSight), and trained DL models (GitHub releases). SRA accessions are molecular sequencing data, not phenotCode · publicPython-based source codes for automating floral trait analysis using the above data are accessible via our GitHub repository ( https://github.com/The-Zhou-Lab/BloomSight ).Open asset ↗The-Zhou-Lab/BloomSightlines:336-349Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
We introduce ``Primitive Indian Paddy Panicle Images,'' a benchmark image dataset of 22 primitive Indian rice panicle varieties (Sethy, Prabira; Pamerelli, Ranjith, 2026; Mendeley Data, V1, doi:10.17632/khfd7pzskd.1) and present an identification approach based on deep residual transfer learning. Using a transfer-learned ResNet-50 with image augmentation and an 80/10/10 train/validation/test split, the model attains 100.0% validation accuracy and 98.74% accuracy on the held-out test set. Per-class one-vs-rest AUCs on validation are 1.000 for all 22 classes; test AUCs range from 0.9924 to 1.000 (mean ≈ 0.999), with separate confusion matrices and ROC curves provided for validation and test partitions. These results demonstrate that deep residual transfer learning can robustly discriminate closely related panicle morphotypes when trained on a carefully curated dataset. We release the dataset to support reproducible research in germplasm identification, varietal purity assessment, and automated phenotyping.
Why it matches plant phenotyping methodsイネ穂画像のベンチマークデータセットと、深層学習による穂形態の自動識別手法が研究の中心であり、再現可能な植物表現型解析基盤として明示されている。
abstractWe introduce ``Primitive Indian Paddy Panicle Images,'' a benchmark image dataset of 22 primitive Indian rice panicle varieties
High-density planting is an effective strategy to increase maize yield but imposes greater demands on plant architectural adaptability. To elucidate the structural response mechanisms of maize under varying planting densities, we developed a high-throughput 3D phenotyping system tailored to complex field conditions. High-precision point clouds of field-sampled plants were obtained via multi-view 3D reconstruction. Using a deep learning network, stem and leaf organs were semantically segmented (95.6% accuracy), while leaves were individually separated via clustering (94.8% accuracy). From these data, 31 plant architectural traits and 14 ear-leaf traits were extracted, establishing a hierarchical trait characterization system. Results showed that increased planting density significantly influenced plant architecture reshaping and structural coordination, leading to more compact plant forms and ear height position centralization. Ear leaves exhibited heightened sensitivity to density variation, particularly in leaf area, vertical distribution, and leaf inclination angle, suggesting an early-response role. Principal component analysis and clustering further revealed patterns of structural differentiation and key traits driving these changes under density treatments. The integrated workflow-comprising data acquisition, modeling, segmentation, clustering, trait extraction, and analysis-offers a robust approach for structural phenotyping and intelligent breeding selection in maize and other tall crops. This pipeline provides valuable technical support and data resources for optimizing dense planting strategies and advancing digital agriculture.
Why it matches plant phenotyping methods高スループット3D表現型システムを開発し、点群再構成・器官分割・クラスタリングから多数の植物構造形質を抽出することが中心であるため。
abstractwe developed a high-throughput 3D phenotyping system tailored to complex field conditions
Reproduction assets foundThe paper's authors provide a public GitHub repository for the study's source code (segmentation/trait-extraction pipeline). The phenotype point-cloud dataset itself is only available on request from the corresponding author, so it is not a public asset.Code · publicThe code of this study will be made publicly available upon publication. The source code is available at https://github.com/CSC-csc426/3D-Point-Cloud-Driven-Organ-Semantic-Segmentation-to-Assess-Maize-Structural-Responses .Open asset ↗CSC-csc426/3D-Point-Cloud-Driven-Organ-Semantic-Segmentation-to-Assess-Maize-Structural-Responseslines:330-415Code / dataset availability confirmedEurope PMC · checked 5 Sept 2026
Doubled haploid (DH) technology can fast-track crop breeding. Haploid induction yields haploids with only one set of genomes, which are usually sterile. Haploid fertility (HF) is the ability of haploid plants to set seed, and it is a critical bottleneck in DH pipelines. Genetic mechanisms to restore HF hold immense potential in DH crop breeding, yet its phenotyping remains manual, destructive, and inconsistent. While recent advances in imaging and machine learning have improved throughput for general plant traits, no curated image dataset exists for Arabidopsis thaliana that explicitly represents HF. Here, we present AutoSiQ, a dataset and baseline deep learning pipeline for automated HF quantification. AutoSiQ includes high-resolution scanned inflorescences annotated with a seven-class ontology encompassing green siliques, green fertile siliques, mature siliques, fertile siliques, cracked fertile siliques, cracked siliques, and flowers. This multi-class annotation scheme preserves biologically meaningful information beyond binary fertile/non-fertile distinctions, enabling reliable fertility estimation and future phenotyping applications. We release baseline object detection models (YOLOv5), trained using the AutoSiQ dataset, and evaluate their performance across confidence thresholds. Model predictions strongly correlate with manual counts, achieving R² up to 0.94 for total silique number estimation. We further demonstrate AutoSiQ's utility for automated haploid fertility rate (HFR) estimation and genotype discrimination between two contrasting genotypes (WT and bmf2 mutant). A longitudinal analysis identifies ~60 days after sowing (DAS) as the optimal harvest time for maximizing mature silique counts by balancing between the number of immature buds and silique shattering. By releasing both the dataset and baseline code, AutoSiQ provides a reproducible and extensible foundation for high-throughput fertility phenotyping in haploid Arabidopsis .
Why it matches plant phenotyping methodsハプロイド稔性を画像から定量するデータセットと深層学習パイプラインを開発・評価しており、植物フェノタイピング手法が中心である。
abstractHere, we present AutoSiQ, a dataset and baseline deep learning pipeline for automated HF quantification.
Reproduction assets foundThe paper's AutoSiQ dataset (annotated scanned Arabidopsis inflorescence images with seven-class silique ontology and manual fertility counts) is publicly deposited on Zenodo per the data availability statement. The YOLOv5 GitHub repository is a generic third-party library, not an authors' code asset.Dataset · publicThe datasets presented in this study can be found in online repositories. The names of the repository/repositories and accession number(s) can be found below: https://zenodo.org/records/17905566 .Open asset ↗zenodo · 17905566lines:367-402Code / dataset availability confirmedOpenAlex · Crossref · Europe PMC · checked 5 Sept 2026
Abstract Observer bias and inconsistencies in traditional plant phenotyping methods limit the accuracy and reproducibility of fine-grained plant analysis. To address these limitations, TomatoMAP is introduced as a comprehensive dataset for Solanum lycopersicum . The dataset contains 68,080 RGB images: 3,616 high-resolution macrophotographs (3648 × 5472) with semantic annotations, and 64,464 moderate-resolution images (1080 × 1440) captured from 12 plant poses at four camera elevations. Each image is accompanied by manually annotated bounding boxes for seven regions of interest (leaves, panicle, flower clusters, fruit clusters, axillary shoot, shoot, and whole-plant area) and by labels spanning 50 BBCH classes representing phenologically growth stages. A general cascading structure is proposed. For real-time applicability, models emphasizing the accuracy-efficiency trade-off (MobileNetv3, YOLOv11, and Mask R-CNN) are prioritized and benchmarked against multiple state-of-the-art models. Performance is assessed using accuracy, mAP, inference FPS, and normalized confusion matrices. In a study involving five domain experts, AI models trained on TomatoMAP achieves comparable accuracy levels. Reliability of automated fine-grained phenotyping is supported by Cohen’s Kappa statistics and inter-rater agreement heatmaps.
Why it matches plant phenotyping methodsトマトの多視点画像、器官領域・生育ステージ注釈を備えたデータセットを構築し、画像モデルの精度・効率・専門家一致度をベンチマークしており、植物フェノタイピング手法が中心である。
titleTomato Multi-Angle Multi-Pose Dataset for Fine-Grained Phenotyping.
Reproduction assets foundThe paper's authors publicly release their analysis code (dataset construction scripts for TomatoMAP-Cls/Det and model training/evaluation code) on GitHub. The TomatoMAP phenotype image dataset itself is deposited at e!DAL (10.5447/ipk/2025/14), but no matching URL is present in the allowed list, so only the code assetCode · publicThe scripts for constructing TomatoMAP-Cls and TomatoMAP-Det, as well as the code used for model evaluation, are available at: https://github.com/0YJ/TomatoMAP.Open asset ↗https://github.com/0YJ/TomatoMAPhtml-lines:423-479Code / dataset availability confirmedEurope PMC · Crossref · checked 15 Sept 2026
Abstract An understanding of spike shape will be of great benefit for improving wheat yields. Traditional manual measurements of spike traits are slow and prone to human error, preventing large-scale phenotyping. Employing imaging techniques will allow researchers to measure multiple morphometric parameters simultaneously. While 2D imaging provides a rapid screening method, 3D imaging offer a more comprehensive understanding of spike shape, revealing complex external structures. This study addresses the challenge of developing a high-resolution 3D surface-scanning pipeline to accurately quantify wheat spike morphology across diverse genotypes. Using a 3D surface-scanner, sharp point clouds of individual spikes were reconstructed and automatically aligned and analysed to extract key morphological features including spike length, volume, and thickness profile. New shape descriptors based on thickness profiles, local extremes, statistical curve fitting, segmentation of spikes into zones of aborted spikelets, base and apical segments as well as the extraction of spike/spikelets branching and endpoints of components were introduced to capture detailed structural variation between genotypes. Correlations between the 3D-derived traits and traditional metrics such as spike weight, spikelet number and seed weight confirmed the biological relevance of the extracted parameters. The method distinguished morphological differences among twelve wheat genotypes, revealing distinct shape types such as long, short, compact, and awned spikes. By combining precise 3D imaging with computational analysis, this approach provides a non-destructive framework for spike phenotyping. These findings demonstrate that 3D surface-scanning can deliver accurate and reproducible measurements of wheat spike architecture, offering new opportunities for linking morphology with genetics and yield potential in modern breeding programs.
Why it matches plant phenotyping methods小麦穂の形態形質を3D画像から抽出するパイプラインを開発し、形質の相関・遺伝子型間比較で検証しており、表現型取得法が研究の中心である。
abstractThis study addresses the challenge of developing a high-resolution 3D surface-scanning pipeline to accurately quantify wheat spike morphology across diverse genotypes.
Reproduction assets foundThe preprint explicitly shares sample 3D spike scan data and the trait-extraction analysis code in the authors' public GitHub repository, with separate Data and code availability statements.Dataset · public1003/1)
587
Consent for publication
588
Not applicable.
589
Ethics approval and consent to participate
590
Not applicable.
591
Conflicts of Interest
592
The authors declare that there are no conflicts of interest regarding the publication of this paper.
593
Data Availability
594
Sample data are shared in the following link:
595
https://github.com/LatifaGreche/3D-WheatSpikeMorphologyExtraction/tree/main/Data
596
Code Availability
597
The codes are available at the following link:
598
https://github.com/LatifaGreche/3D-WheatSpikeMorphologyExtraction
599
References
600
1. Sanchez-Bragado R, Molero G, Araus JL, and Slafer GA. Awned versus awnless wheat spikes:
601
does it matter? Trends in plantOpen asset ↗LatifaGreche/3D-WheatSpikeMorphologyExtractionpdf-raw-page:26 lines:1-57Code · public1003/1)
587
Consent for publication
588
Not applicable.
589
Ethics approval and consent to participate
590
Not applicable.
591
Conflicts of Interest
592
The authors declare that there are no conflicts of interest regarding the publication of this paper.
593
Data Availability
594
Sample data are shared in the following link:
595
https://github.com/LatifaGreche/3D-WheatSpikeMorphologyExtraction/tree/main/Data
596
Code Availability
597
The codes are available at the following link:
598
https://github.com/LatifaGreche/3D-WheatSpikeMorphologyExtraction
599
References
600
1. Sanchez-Bragado R, Molero G, Araus JL, and Slafer GA. Awned versus awnless wheat spikes:
601
does it matter? Trends in plantOpen asset ↗LatifaGreche/3D-WheatSpikeMorphologyExtractionpdf-raw-page:26 lines:1-57Code / dataset availability confirmedOpenAlex · Europe PMC · checked 14 Sept 2026
Crop phenotyping of important agronomic traits in field conditions at single-plant resolution has long been a major bottleneck in both genetic analysis (e.g. large-scale association/linkage analysis) and breeding applications (e.g. genomic prediction/selection). Despite growing interest, ultra-affordable, high-throughput and accurate phenotyping tools for maize ears remain limited. Here, we developed OpenEar, an open source, low-cost phenotyping system that combines a DIY maize ear imaging platform with a deep learning-based end-to-end phenotypic data extraction pipeline. The imaging platform is composed of 3D-printed parts and electronics components easily available from local retailers to perform high-quality 360° surface scanning of maize ears. Our pipeline first employs CNN-based models to identify normally-developed ears suitable for phenotyping, followed by reliable segmentation of ears and ear surface projection images by YOLOv11-based models, from which ten key traits are subsequently extracted. OpenEar demonstrates reliable agreement with manual measurements across a diverse set of ear- and kernel-related traits, including ear length ( R 2 = 0.972), ear diameter ( R 2 = 0.905), ear volume ( R 2 = 0.976), ear weight ( R 2 = 0.878), kernel number ( R 2 = 0.98), kernel row number ( R 2 = 0.888), kernel number per row ( R 2 = 0.852), kernel thickness ( R 2 = 0.705), kernel width ( R 2 = 0.515), and thousand kernel weight ( R 2 = 0.605). A user-friendly graphical interface is developed for manual inspection of ears after computer annotation. Manually annotated ear videos and images are publicly released as a resource for the crop phenomics community. Our study highlights the potential of DIY-based low-cost solutions to make phenotyping more accessible in crop genetic analysis and breeding.
Why it matches plant phenotyping methodsトウモロコシ穂の画像取得・深層学習による形質抽出システムを開発し、手動測定との一致を検証しており、植物フェノタイピング手法が研究の中心です。
abstractwe developed OpenEar, an open source, low-cost phenotyping system that combines a DIY maize ear imaging platform with a deep learning-based end-to-end phenotypic data extraction pipeline.
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicAll codes and the manual of command line interface and GUI can be found at the GitHub repository: https://github.com/Chimaco37/OpenEar.Open asset ↗Chimaco37/OpenEarhtml-lines:294-325Code / dataset availability confirmedEurope PMC · OpenAlex · Crossref · checked 5 Sept 2026
Background Rice plant architecture underpins yield and grain quality, yet two obstacles impede accurate field characterization in dense paddies. First, single-plant reconstruction is constrained by severe inter-plant occlusion, cluttered backgrounds, and limited viewpoints. These factors obscure culms, leaves, basal tillers, and the true physical scale of the plant. Active ranging devices are cumbersome in outdoor plots and can lose accuracy, whereas conventional passive photogrammetry performs poorly under such conditions. Second, delineating panicles within a 3D rice model is intrinsically difficult. Panicles are slender, highly branched, and visually similar to surrounding foliage, often interwoven and partially hidden. These factors result in fragmented boundaries and missing details. Direct point-cloud segmentation struggles with such discontinuous geometry and requires costly 3D annotation, whereas generic image segmentation models trained on natural scenes transfer poorly to paddy imagery. These challenges motivate a field-ready workflow that both reconstructs whole plants at high resolution in dense plantings and reliably segments panicles to enable trait extraction. Results A low-cost, in-field, multi-view pipeline for whole-plant three-dimensional reconstruction, termed One Stop 3D Target Reconstruction And segmentation (OSTRA), operates on color images with a reference-board setup. The pipeline builds detailed three-dimensional models of individual rice plants and automatically segments key organs (in this case, panicles), despite dense surrounding vegetation. When applied to 231 diverse rice landraces grown in a crowded field setting, the method produced high-fidelity plant models with clearly delineated panicle structures. From these reconstructions, three architectural traits were derived: plant height, leaf area, and panicle length. Genome-wide association analysis of the measured traits identified strong genotype-phenotype associations tagging known candidate genes. Natural variants at D2 and RFL/APO2 were associated with plant height variation, variants at FLW7 were linked to differences in leaf area, and allelic variation at AAI1 corresponded to panicle length variation. These loci are established regulators of plant growth and morphology, indicating that this three-dimensional phenotyping pipeline attains accuracy sufficient to rediscover meaningful genetic signals. Conclusions This study provides a practical tool for precise rice phenotyping even under dense field planting conditions, overcoming occlusion and structural complexity. By enabling non-destructive, field-based measurement of complete plant architecture and linking these phenotypes to specific genes, the pipeline bridges field phenomics and genomics. The integrated reconstruction and analysis framework advances the study of rice architecture and offers a general route to connect complex traits with their genetic determinants.
Why it matches plant phenotyping methods密植圃場でのイネ全体3D再構築、器官分割、形質抽出を中核とする画像ベース表現型解析手法の開発・実証であり、明確に収載対象。
abstractA low-cost, in-field, multi-view pipeline for whole-plant three-dimensional reconstruction, termed One Stop 3D Target Reconstruction And segmentation (OSTRA), operates on color images with a reference-board setup.
Reproduction assets foundThe paper explicitly states that the 3D rice plant models (231 landraces) are deposited on Zenodo and the OSTRA source code is publicly available on GitHub. Both are paper-specific, public, and actionable.Code · publicThe source code of OSTRA is available on GitHub at [http://github.com/ganlab/ostra] (http:/github.com/ganlab/ostra).Open asset ↗github · ganlab/ostralines:217-246Code / dataset availability confirmedEurope PMC · Crossref · checked 5 Sept 2026
The distribution of spikelets significantly affects wheat (Triticum aestivum L.) spike architecture. However, traditional methods lack the precision to study spikelet distribution effectively. We developed RachisSeg, a deep learning-based phenotyping pipeline that automatically measures traits from scanned rachis images. In addition to traditional spikelet number per spike (SNS), rachis length (RL), and spikelet density (SD, SNS/RL), we introduced spikelet distribution traits based on rachis internode lengths, providing quantitative insights into spike architecture. RachisSeg showed high consistency with manual measurements for SNS and RL, with the R2 values of 0.975 and 0.998, respectively. Using RachisSeg, we analyzed spikelet distribution patterns across wheat germplasm and found that traits such as spikelet distribution index (SDI) and apical-to-basal spikelet number ratio (AVB_SNS) were moderately correlated with grain yield per spike (GYPS) (r = 0.57 and 0.53, respectively), while internode width (IW) showed a strong positive correlation with GYPS (r = 0.75). Specifically, a denser spikelet arrangement in the upper spike negatively impacted grain number and weight in that section. Furthermore, comparative analysis revealed distinct spikelet distribution patterns among landraces, American cultivars, and Chinese cultivars. In a recombinant inbred line population, we identified 46 quantitative trait loci (QTLs) associated with rachis traits. A major QTL controlling SDI was detected on chromosome 6B, explaining up to 24.8% of the phenotypic variance. Candidate gene analysis suggested TraesCS6B02G417000 as a potential gene, whose mutant exhibited significant changes in RL and SDI. RachisSeg is a powerful tool for quantifying spikelet distribution, facilitating wheat genetic analysis, gene discovery, and breeding.
Why it matches plant phenotyping methodsRachisSegは、スキャン画像からコムギ穂軸・小穂分布形質を自動抽出する深層学習フェノタイピング手法として開発・検証されており、方法が研究の中心です。
abstractWe developed RachisSeg, a deep learning-based phenotyping pipeline that automatically measures traits from scanned rachis images.
Reproduction assets foundThe paper's authors publicly released the RachisSeg phenotyping pipeline (deep learning node detection and internode segmentation code) together with sample rachis images via their GitHub repository, explicitly stated in the Implementation and Data availability sections.Dataset · publicRachisSeg and sample rachis images is freely available online ( https://github.com/Jiang-Phenomics-Lab/RachisSeg ).Open asset ↗Jiang-Phenomics-Lab/RachisSeglines:514-549Code / dataset availability confirmedEurope PMC · checked 6 Sept 2026
The AI revolution, advanced Graphics Processing Units (GPUs), and open-source platforms have enabled Machine Learning (ML) and Deep Learning (DL) algorithms to rapidly and accurately extract phenotypic features from imagery. Such advancements have led to phenotypic digitization and made rapid yield forecasting possible. Yield predictions are critical to assess the merit of genotypes to propel cultivar development. This trial followed a three-replicated Randomized Complete Block Design (RCBD) with 36 diverse sorghum genotypes in 2023 at Ashland Bottoms, Kansas. The field images were captured 6 m above using a DJI M300 drone at 90° nadir and 45° oblique angles. This research trained YOLO and Faster R-CNN (Detectron2) models to harness yield attributes from UAS field and lab images. The YOLO models outperformed the Faster R-CNN in detecting sorghum panicles, achieving a mean average precision at 50 % IoU (mAP@0.50) scores of 0.92-0.98, compared to 0.61-0.89 for Faster R-CNN. Panicle detection from field imagery showed a linear correlation of 0.86 with ground truth field panicle counts. Lab imagery analyses measured panicle area, seed counts, and seed area with correlation coefficients of 0.79, 0.94, and 0.25 with respective ground truth observations. Support Vector Regression (SVR), Random Forest Regression (RFR), and Decision Tree Regression (DTR) were used to predict yield with correlation coefficients of 0.74, 0.71, and 0.78, respectively, and SHapley Additive exPlanation (SHAP) analysis revealed panicle seed count as the primary driver of yield prediction. We observed YOLO models are well-suited for extracting yield-predictive features from pertinent images. Such features can then be incorporated into ML regression models to predict yield per se performance with greater accuracy. The GitHub link is provided in the Data availability section.
Why it matches plant phenotyping methodsUAS・実験室画像から穂数、穂面積、種子数・面積などの植物形質を深層学習で抽出し、検出精度を検証して収量予測へ利用する方法が研究の中心である。
abstractThis research trained YOLO and Faster R-CNN (Detectron2) models to harness yield attributes from UAS field and lab images.
Reproduction assets foundThe authors explicitly state that scripts, fine-tuned models, datasets, and sample images for this sorghum yield-forecasting study are publicly available on GitHub, matching the allowed URL exactly.Code · publicThe scripts, fine-tuned models, datasets, and sample images pertinent to this manuscript are available on GitHub at https://github.com/mbari78/DL_for_Sorghum_Yield_Prediction.git .Open asset ↗https://github.com/mbari78/DL_for_Sorghum_Yield_Prediction.gitlines:244-299Code / dataset availability confirmedCrossref · OpenAlex · Europe PMC · checked 6 Sept 2026
RiceWheatField / plotMesh / voxelNeRF / 3D Gaussian SplattingLiDAR / point cloudPanicle / ear / spikeLeafRootSeed / grain
Advanced plant phenotyping technologies are vital for trait improvement and accelerating intelligent breeding. Due to the species diversity of plants, existing methods heavily rely on large-scale high-precision manually annotated data. For self-occluded objects at the grain level, unsupervised methods often prove ineffective. This study proposes IPENS, an interactive unsupervised multi-target point cloud extraction method. It utilizes radiance field information to lift 2D masks, segmented by SAM2 (Segment Anything Model 2), into 3D space for target point cloud extraction. A multi-target collaborative optimization strategy addresses the challenge of segmenting multiple targets from a single interaction. On a rice dataset, IPENS achieves a grain-level segmentation mean Intersection over Union (mIoU) of 63.72%. For phenotypic trait estimation, it achieves a grain voxel volume coefficient of determination R 2 = 0.7697 (Root Mean Square Error, RMSE = 0.0025), leaf surface area R 2 = 0.84 (RMSE = 18.93), and leaf length and width prediction accuracies of R 2 = 0.97 and R 2 = 0.87 (RMSE = 1.49 and 0.21). On a wheat dataset, IPENS further improves segmentation performance to a mIoU of 89.68%, with exceptional phenotypic estimation results: panicle voxel volume R 2 = 0.9956 (RMSE = 0.0055), leaf surface area R 2 = 1.00 (RMSE = 0.67), and leaf length and width predictions reaching R 2 = 0.99 and R 2 = 0.92 (RMSE = 0.23 and 0.15). Without requiring annotated data, IPENS rapidly extracts grain-level point clouds for multiple targets within three minutes using single-round image interactions. These features make IPENS a high-quality, non-invasive phenotypic extraction solution for rice and wheat, offering significant potential to enhance intelligent breeding.
Why it matches plant phenotyping methods植物形質抽出のためのNeRF-SAM2融合手法を開発し、作物データセットで分割性能と形質推定精度を検証しているため、方法開発・検証が中心である。
abstractThis study proposes IPENS, an interactive unsupervised multi-target point cloud extraction method.
Reproduction assets foundThe paper's analysis code is publicly available on GitHub. The rice/wheat MMR/MMW phenotype datasets (multi-view images, point clouds, annotations) are only available upon reasonable request, so they are not public.Code · publicCode is available at https://github.com/Vincent-Songwentao/IPENS-Code.git .Open asset ↗https://github.com/Vincent-Songwentao/IPENS-Code.gitlines:472-496Code / dataset availability confirmedEurope PMC · checked 6 Sept 2026
Double haploid (DH) technology can significantly shorten the breeding cycle and improve the breeding efficiency, and it is favored by breeders. The metrics for evaluating the effect of haploid genome doubling mainly include anther emergence and ear seed setting. The evaluation of fertility restoration ability is mainly conducted through visual inspection at present, which is time-consuming, and easy to be affected by fatigue, resulting in errors and inconsistencies. Therefore, it is urgent to develop efficient and accurate evaluation technology to reduce the field work burden of researchers. In this work, we propose a grading evaluation model (Maize-IRNet) of haploid anther emergence and ear seed setting based on Inception-ResNet. Firstly, the modules of Stem and Inception-ResNet are utilized for image feature extraction and multi-scale feature learning. Then, the Reduction module is used for spatial downsampling and feature compression, and the global attention mechanism (GAM) is used to enhance the recognition of key regions of the image. The experimental results show that the Maize-IRNet's classification accuracy of haploid ear seed setting and anther emergence is 84.2 % and 84.0 %, which is higher than six baseline methods (VGG11_bn, ResNet50, ResNet101, ViT-Base-16, gMLP, MLP-Mixer). In order to facilitate the practical application for breeding researchers, we have developed a mobile application that integrates the Maize-IRNet model. This study helps to achieve high-throughput collection of fertility restoration phenotypes, improves the evaluation efficiency of fertility restoration, reduces breeding costs, and provides technical support for the promotion of engineering breeding of DH technology.
Why it matches plant phenotyping methodsトウモロコシの葯出現と穂の種子着生という生殖形質を画像から自動評価する深層学習モデルを開発・比較し、モバイルアプリにも実装しており、表現型取得法が中心である。
abstractTherefore, it is urgent to develop efficient and accurate evaluation technology to reduce the field work burden of researchers.
Reproduction assets foundThe paper's data availability statement explicitly provides the maize haploid fertility image dataset (1897 ear images, 6443 tassel images), the Maize-IRNet source code, and the Android APK, all hosted on the authors' public GitHub repository.Dataset · publicThe maize haploid fertility image dataset collected by smartphones is available at https://github.com/wyzwyz666/maize-haploid-fertility/blob/main/datasetOpen asset ↗wyzwyz666/maize-haploid-fertilitylines:506-531Code · publicThe source code: https://github.com/wyzwyz666/maize-haploid-fertility/blob/main/sourcecodeOpen asset ↗wyzwyz666/maize-haploid-fertilitylines:506-531Code / dataset availability confirmedEurope PMC · checked 15 Sept 2026
Fusarium head blight (FHB), caused by the Fusarium species complex, significantly endangers wheat yield and safety. Accurate and timely assessment of FHB epidemic level in the field is crucial for effective disease management. However, the complex environment and indistinct edges of diseased areas present substantial challenges in distinguishing between healthy and diseased ears, thereby impacting the accuracy of FHB epidemic level detection. This study proposes EBS-YOLO, a novel Edge-Optimized Bidirectional Spatial Feature Augmentation YOLO Network, specifically designed for the rapid and precise determination of FHB epidemic levels at the canopy level. The Focal-Edge Selection Module (FSM) within the backbone replaces original C2f module to enhance edge feature representation and facilitate multi-scale feature extraction. Furthermore, the Dual Spatial-Connection Feature Pyramid Network (DSCFPN), integrating Global-to-Local Spatial Aggregation (GLSA) with bidirectional pyramid interaction, balances global and local feature acquisition while optimizing the feature fusion mechanism. This design enables the model to effectively handle occlusions, scale variations, and complex environments. Experimental results demonstrate substantial improvements over eight comparative models in detecting healthy and diseased wheat ears, achieving mean Average Precision (mAP) of 86.1% and 82.9%, respectively. Notably, the model achieved a mean accuracy of 94.7% in detecting FHB epidemic levels through rigorous spatiotemporal validation using datasets collected from independent fields across different years, underscoring its robust generalization capability. Characterized by its low complexity and lightweight design, EBS-YOLO features a parameter count of 2.05 M, 7.4 GFLOPs, and a model size of 5.0 MB, making it an efficient approach for real-time FHB epidemic level detection.
Why it matches plant phenotyping methods小麦穂の健全・罹病状態と赤かび病の流行レベルを圃場画像から推定する深層学習手法を開発し、独立圃場・異なる年のデータで検証しているため、植物病害フェノタイピング手法が中心である。
abstractThis study proposes EBS-YOLO, a novel Edge-Optimized Bidirectional Spatial Feature Augmentation YOLO Network, specifically designed for the rapid and precise determination of FHB epidemic levels at the canopy level.
Reproduction assets foundThe paper's wheat FHB image dataset (1152 field images used for EBS-YOLO training/evaluation) is explicitly stated as publicly available on the authors' GitHub repository.Dataset · publicam Development Project [2025QCY-KXJ-070]; the Science and Technology Partnership Program, Ministry of Science and Technology of China [KY202002018] and the National Natural Science Foundation of China [32081330501].
Data availability
The datasets supporting the conclusions of this article are available in the GitHub repository, https://github.com/yuanYuan8686/wheat-FHB-dataset.
Declarations
Ethics approval and consent to participate
Not applicable.
Consent for publication
Not applicable.
Competing interests
The authors declare no competing interests.
Footnotes
Publisher’s note
Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliationOpen asset ↗yuanYuan8686/wheat-FHB-datasetlines:369-441Code / dataset availability confirmedOpenAlex · Crossref · Europe PMC · checked 6 Sept 2026
Developing crop varieties that maintain productivity under drought is essential for future food security. Here, we investigated the potential of time-resolved high-throughput phenotyping to predict harvest-related traits and identify drought-stressed plants. Six barley lines ( Hordeum vulgare ) were grown in a greenhouse environment with well-watered and drought treatments, and dynamically phenotyped using RGB, thermal infrared, chlorophyll fluorescence, and hyperspectral imaging sensors. A temporal phenomic classification model accurately distinguished between drought-treated and control plants, achieving high accuracy (classification accuracy ≥0.97) even when relying solely on predictors from the early drought response phase. Canopy temperature depression at the early stage and RGB-derived plant size estimates at the late stage emerged as key classification features. A temporal phenomic prediction model of harvest-related traits achieved particularly high mean R 2 values for total biomass dry weight (0.97) and total spike weight (0.93), with RGB plant size estimators emerging as important predictors. Importantly, prediction accuracy for these traits remained high (R 2 ≥ 0.84) even when restricted to early developmental phase data, including the stem elongation stage. Models trained on pooled drought and control data outperformed single-treatment models and maintained high predictive power across treatments. Together, these findings highlight the value of integrating high-throughput phenotyping with temporal modeling to enable earlier, more cost-effective selection of drought-resilient genotypes and demonstrate the broader potential of phenomics-driven strategies for accelerating crop improvement under stress-prone environments.
Why it matches plant phenotyping methodsRGB・熱赤外・蛍光・ハイパースペクトルによる時系列表現型取得と、収穫形質予測モデルの構築・評価が研究の中心であるため。
abstractdynamically phenotyped using RGB, thermal infrared, chlorophyll fluorescence, and hyperspectral imaging sensors
Reproduction assets foundThe authors explicitly state that the data and analysis pipeline code for this barley phenotyping study is publicly available on GitHub at https://github.com/hatiez/barley-TPP-pipeline. This is a paper-specific computational asset (the temporal phenomic classification/prediction pipeline) with an authors' public URL. DCode · publicThe data and analysis pipeline code is available on https://github.com/hatiez/barley-TPP-pipeline .Open asset ↗https://github.com/hatiez/barley-TPP-pipelinelines:390-415Code / dataset availability confirmedEurope PMC · Crossref · checked 6 Sept 2026
Accurate and early disease detection in paddy crops is essential for maximizing crop yield which ensures food security. Traditional methods are often labor-intensive, time-consuming, and domain-specific expertise. Feed-forward deep-learning models will perform accurate disease detection through the identification of spatial patterns. However, they cannot predict the diseases at the early stages due to the lack of temporal information. Temporal observations will help perform continuous monitoring and detect minute changes in the crops at the early times. To tackle this problem, we proposed Self-Supervised Deep Hierarchical Reconstruction (SSDHR), and Long Short-Term Memory (LSTM) which perform early disease detection based on the spatial and temporal data respectively. The SSDHR network uses multi-branch convolution kernels to extract distinct discriminative characteristics rather than conventional leaf-based indicators. It incorporates spatial, and temporal-based attention mechanism Symmetric Fusion Attention (SFA) to improve feature selection and XGBoost (XGB) classifier for better stability. According to experimental findings, the suggested framework achieves a 99.25% accuracy rate in identifying and classifying 13 paddy classes, including normal, blast, hispa, tungro, white stem borer, brown spot, leaf roller, downy mildew, yellow stem borer, bacterial leaf blight, bacterial leaf streak, black stem borer, and bacterial panicle blight.
Why it matches plant phenotyping methodsイネ病害の症状を空間・時間画像データから検出・分類する深層学習フレームワークを提案し、その性能を評価しているため、植物フェノタイピング手法が中心です。
abstractwe proposed Self-Supervised Deep Hierarchical Reconstruction (SSDHR), and Long Short-Term Memory (LSTM) which perform early disease detection based on the spatial and temporal data respectively.
Reproduction assets foundThe paper's phenotyping inputs are the publicly available Paddy Doctor image dataset (16,225 annotated paddy disease images) hosted on IEEE DataPort, with an explicit dataset link and data availability statement. No author analysis code or trained models are shared.Dataset · publicThe dataset used in our study was obtained from the publicly available repository titled “Paddy Disease and Pest Image Dataset” on IEEE Data Port. The dataset comprises 16,225 high-quality images across 13 classes, including 12 paddy disease and pest categories along with healthy samples.Open asset ↗IEEE Data Porthtml-lines:118-200Code / dataset availability confirmedEurope PMC · checked 15 Sept 2026
Accurate detection and counting of wheat spikes are crucial for yield estimation and variety selection in precision agriculture. However, challenges such as complex field environments, morphological variations, and small target sizes hinder the performance of existing models in real-world applications. This study proposes FEWheat-YOLO, a lightweight and efficient detection framework optimized for deployment on agricultural edge devices. The architecture integrates four key modules: (1) FEMANet, a mixed aggregation feature enhancement network with Efficient Multi-scale Attention (EMA) for improved small-target representation; (2) BiAFA-FPN, a bidirectional asymmetric feature pyramid network for efficient multi-scale feature fusion; (3) ADown, an adaptive downsampling module that preserves structural details during resolution reduction; and (4) GSCDHead, a grouped shared convolution detection head for reduced parameters and computational cost. Evaluated on a hybrid dataset combining GWHD2021 and a self-collected field dataset, FEWheat-YOLO achieved a COCO-style AP of 51.11%, AP@50 of 89.8%, and AP scores of 18.1%, 50.5%, and 61.2% for small, medium, and large targets, respectively, with an average recall (AR) of 58.1%. In wheat spike counting tasks, the model achieved an R 2 of 0.941, MAE of 3.46, and RMSE of 6.25, demonstrating high counting accuracy and robustness. The proposed model requires only 0.67 M parameters, 5.3 GFLOPs, and 1.6 MB of storage, while achieving an inference speed of 54 FPS. Compared to YOLOv11n, FEWheat-YOLO improved AP@50, AP_s, AP_m, AP_l, and AR by 0.53%, 0.7%, 0.7%, 0.4%, and 0.3%, respectively, while reducing parameters by 74%, computation by 15.9%, and model size by 69.2%. These results indicate that FEWheat-YOLO provides an effective balance between detection accuracy, counting performance, and model efficiency, offering strong potential for real-time agricultural applications on resource-limited platforms.
Why it matches plant phenotyping methodsコムギ穂の検出・計数という植物器官形質の画像ベース推定手法を開発し、データセット上で精度・計算効率・堅牢性を評価しているため、植物フェノタイピング手法が中心である。
abstractThis study proposes FEWheat-YOLO, a lightweight and efficient detection framework optimized for deployment on agricultural edge devices.
Reproduction assets foundThe paper uses the public GWHD2021 wheat spike detection dataset (available on Kaggle) as part of its hybrid dataset, with an explicit availability statement and URL. The self-collected Xinjiang field dataset is private and available only on request. No author analysis code, trained model checkpoints, or other paper-特定Dataset · publiciting, W.W., S.L. and Y.L.; supervision, J.C.; project administration, X.Z.; funding acquisition, X.Z. All authors have read and agreed to the published version of the manuscript.
Data Availability Statement
The public part of the dataset used in this study is available from the Global Wheat Head Detection (GWHD2021) dataset at https://www.kaggle.com/competitions/global-wheat-detection , accessed on 30 September 2025. The remaining part of the dataset is private and cannot be shared due to institutional or privacy restrictions. Requests for access to the private dataset may be directed to the corresponding author.
Conflicts of Interest
The authors declare no conflicts of interest. The funderOpen asset ↗GWHD2021lines:854-929Code / dataset availability confirmedOpenAlex · Europe PMC · checked 6 Sept 2026
Ethyl methanesulfonate (EMS) mutants are widely used for genetic analysis; however, EMS-derived mutant populations are not amenable to traditional genome-wide association studies (GWAS) because the EMS mutations are present at extremely low frequencies. To address this challenge, this work develops the GeneHunter-Gene-Level Association (GH-GLA) pipeline using an EMS-generated population of wheat (Triticum aestivum) mutants and an image-based phenotyping platform. GH-GLA enables comprehensive exploration of phenotypic variation induced by genome-wide saturation mutagenesis. Using GH-GLA to quantify 83 traits in the wheat population reveals that variation in spikelet geometry is significantly associated with key agronomic traits, including thousand-kernel weight. Using this indexed wheat EMS population and phenotype data, GH-GLA identified 5905 genes that are significantly associated with specific traits. Analysis of knockouts generated by gene editing, together with haplotypes affected by selection during breeding and genetic variation in 262 wheat accessions, confirm the roles of TaAN-1, TaBAM5L, and TaXTH28L in regulating thousand-kernel weight and spikelet angle. Furthermore, this work establishes an epistatic interaction network between gene pairs to elucidate their combined effects on the phenotype. Overall, GH-GLA provides a powerful strategy for functional gene identification, and the alleles discovered here offer valuable genetic resources for crop improvement.
Why it matches plant phenotyping methods画像ベースの表現型解析プラットフォームとGH-GLAパイプラインを開発・適用し、多数の小麦形質を定量して遺伝子同定に用いた研究であり、表現型取得・解析法が中心的です。
abstractthis work develops the GeneHunter-Gene-Level Association (GH-GLA) pipeline using an EMS-generated population of wheat (Triticum aestivum) mutants and an image-based phenotyping platform.
Reproduction assets foundThe paper's GH-GLA analysis code is publicly available on GitHub with explicit availability language. The phenotypic data (OMIX010498) and VCF data (GVM000963) are deposited in repositories whose URLs are not in the allowed list, so they cannot be cited as assets here.Code · publicAll scripts and codes associated with this project are available via GitHub at https://github.com/gaze‐abyss/GH‐GLA.Open asset ↗gaze‐abyss/GH‐GLAhtml-lines:434-491Code / dataset availability confirmedEurope PMC · checked 6 Sept 2026
Introduction Wheat is a vital global staple crop, where accurate ear detection and counting are essential for yield prediction and field management. However, the complexity of field environments poses significant challenges to achieving lightweight yet high-precision detection. Methods This study proposes YOLOv8-FDA, a lightweight detection and counting method based on YOLOv8. The approach integrates RFAConv for enhanced feature extraction, DySample for efficient multi-scale upsampling, HWD for compressed and accelerated model training, and the SDL loss for improved bounding box regression. Results Experimental results on the GWHD dataset show that YOLOv8-FDA achieves a precision of 86.3%, recall of 77.5%, and mAP@0.5 of 84.9%, outperforming the original YOLOv8n by significant margins. The model size is 2.96MB with a computational cost of 8.3 GFLOPs, and it operates at 19.2 FPS, enabling real-time counting with over 97.5% accuracy using cross-row segmentation. Discussion The proposed YOLOv8-FDA model demonstrates strong detection performance, lightweight characteristics, and efficient real-time capability, indicating its high practicality and suitability for deployment in real-world agricultural applications.
Why it matches plant phenotyping methodsコムギ穂の検出・計数という植物器官形質の画像ベース抽出法をYOLOv8改良モデルとして開発し、データセット上で性能検証しているため、方法が研究の中心である。
abstractThis study proposes YOLOv8-FDA, a lightweight detection and counting method based on YOLOv8.
Reproduction assets foundThe paper's wheat ear detection/counting experiments were run on the public 2021 GWHD dataset, which the authors explicitly link via a Zenodo DOI in the data availability statement. No author-specific code or trained model checkpoints are disclosed.Dataset · publicPublicly available datasets were analyzed in this study. This data can be found here: Zenodo at https://doi.org/10.5281/zenodo.5092309 .Open asset ↗Zenodo · 10.5281/zenodo.5092309lines:698-734Code / dataset availability confirmedEurope PMC · bioRxiv · checked 15 Sept 2026
Significance Statement Early studies noting uneven spatial distribution of progeny genotypes after pollination support a hypothesis where differences in pollen tube growth rate can bias inheritance. We used computer vision and statistical analysis to show alleles reducing maize pollen fitness are likely to produce statistically significant increasing, decreasing, or curvilinear spatial patterns from the apex of the inflorescence to the base, suggesting that differential pollen tube growth is not the only mechanism at play. Summary Often, more pollen grains land on recipient flowers than there are ovules to fertilize. Consequently, the haploid male gametophyte engages in post-pollination competition, one way that pollen genotype can influence inheritance. The maize ( Zea mays subsp. mays L.) inflorescence (ear), with its elongated stigma and style structures (silks), has a conspicuous spatial heterogeneity, with longer silks at the base of the ear than those at the apex. To evaluate the hypothesis that alleles with reduced pollen fitness influence the spatial distribution of progeny genotypes along the ear, we developed an updated phenotyping platform that maps mutant Ds-GFP kernel phenotypes on the ear via an implementation of the Faster R-CNN machine vision model (EarVision.v2) and a statistical pipeline that evaluates the relationship between kernel position and transmission ratio (EarScape). In our dataset (1384 ears) representing 58 Ds-GFP alleles, none with Mendelian inheritance (0/48) showed any significant pollen-conditioned spatial trend. In contrast, 50% of alleles with a pollen-specific transmission defect (5/10) exhibited significant spatial effects. An insertion into a gene encoding a putative actin-binding protein, base-to-apex gradient1* ( bag1* ), conditions increased mutant transmission at the ear apex relative to the base. Surprisingly, mutant alleles of two other pollen-expressed genes can generate the opposite pattern, decreased mutant transmission toward the ear apex; and two mutant alleles of the sperm-cell attachment factor, gamete expressed2 ( gex2 ), can produce ears with transmission highest at both base and apex. We conclude that pollen fitness mutants have relatively common but heterogenous effects on the spatial distribution of progeny genotypes.
Why it matches plant phenotyping methodsトウモロコシ穂上のカーネル表現型を画像認識でマッピングし、空間的位置と遺伝子型伝達比を解析するプラットフォームおよび統計パイプラインを開発しており、表現型取得・抽出法が研究の中心である。
abstractwe developed an updated phenotyping platform that maps mutant Ds-GFP kernel phenotypes on the ear via an implementation of the Faster R-CNN machine vision model (EarVision.v2) and a statistical pipeline that evaluates the relationship between kernel position and transmission ratio (EarScape).
Reproduction assets foundThe paper's maize ear phenotyping assets are publicly available: the EarVision.v2 repo contains the training images with bounding-box annotations and the trained Faster R-CNN model, and the EarScannerUtilities repo contains the ear-scanning/projection code. The EarScape spatial-analysis repo (with coordinate .xml filesCode · publica license to display the preprint in perpetuity. It is made
available under a CC-BY 4.0 International license.
540 Varifocal Lens 1080P USB Camera with H.264 High DeYinition Sony IMX323 Webcam. The
541 code for scanning ears, generating projections, and uploading those into cloud storage was
542 also updated and is available at https://github.com/fowler-lab-osu/EarScannerUtilities.
543 The set of ear projections used for the training set included 409 examples from the
544 summer Yield seasons of 2018, 2019 and 2022, encompassing images generated from three
545 different digital cameras and two different versions of the MES. For this training set,
546 projections were manually annotated usingOpen asset ↗fowler-lab-osu/EarScannerUtilitiespdf-layout-page:20 lines:1-56Code / dataset availability confirmedOpenAlex · Europe PMC · checked 6 Sept 2026
) disease that threatens global food security, requires precise quantification of diseased spikelet rate (DSR) as a phenotypic indicator for resistance breeding. Most techniques for measuring DSR rely on manual spikelet-by-spikelet observation and counting, which is inefficient and destructive. Although deep learning offers great promise for automated DSR measurement, existing intelligent detection algorithms are hampered by the lack of spikelet-level annotated data, insufficient feature representation for diseased spikelets, and weak spatial encoding of densely arranged spikelets. To address these challenges, we constructed a dataset of 620 high-resolution RGB images of wheat spikes with 5,222 spikelet-level annotations to systematically analyze spikelet size distributions to fill small-object detection data gaps in this field. We designed FHBDSR-Net, a light framework for automated DSR measurement centered on diseased spikelet detection, which features (1) multi-scale feature enhancement architecture that dynamically combines lesion textures, morphological features, and lesion-awn contrast through adaptive multi-scale kernels to suppress background noise; (2) the Inner-EfficiCIoU loss function to reduce small-target localization errors in dense contexts; and (3) a scale-aware attention module using dilated convolutions and self-attention to encode multi-scale pathological patterns and spatial distributions to enhance dense spikelet resolution. FHBDSR-Net detected diseased spikelets with an average precision of 93.8% with a lightweight design of 7.2 M parameters. The results were strongly correlated with expert evaluations, with a Pearson correlation coefficient of 0.901. Our method is suitable for deployment on resource-constrained mobile devices, facilitating portable plant phenotyping and smart breeding.
Why it matches plant phenotyping methodsコムギ穂の罹病小穂率という植物病害形質を画像から自動推定する手法を開発し、データセット構築と専門家評価による検証を行っており、フェノタイピング手法が中心である。
abstractrequires precise quantification of diseased spikelet rate (DSR) as a phenotypic indicator for resistance breeding.
Reproduction assets foundThe paper's Data availability statement explicitly deposits both the spikelet-level annotated wheat spike image dataset (620 RGB images, 5,222 annotations) and the FHBDSR-Net analysis code in a public GitHub repository under the authors' account, matching an allowed URL.Dataset · publicThe dataset and code generated in this study are available at https://github.com/WeizhenLiuBioinform/Wheat-FHB-DSR-Measurement .Open asset ↗WeizhenLiuBioinform/Wheat-FHB-DSR-Measurementlines:901-961Code / dataset availability confirmedCrossref · OpenAlex · Europe PMC · checked 6 Sept 2026
Understanding the genetic basis of quantitative traits related to crop growth, yield, and stress response requires the acquisition of large-scale, high-quality phenotypic datasets. High-throughput phenotyping platforms have become effective tools for meeting this requirement. Autonomous mobile robots have gained prominence owing to their ability to carry heavy payloads, their operational flexibility, and their proximity to crops, which allows for higher imaging resolution. In this study, we introduce PhenoRob-F (a phenotyping robot for the field), a cross-row, wheeled robot designed for efficient and automated phenotyping under field conditions. The mobile platform and phenotyping module of the robot were engineered to meet the specific demands of field phenotyping, with integrated visual and satellite navigation systems enabling autonomous operation. We validated the performance of the robot through a series of experiments involving various crop canopies. By capturing RGB images of rice and wheat, we independently performed wheat ear detection and rice panicle segmentation. For wheat ear detection, we achieve a precision of 0.783, a recall of 0.822, and a mean average precision (mAP) of 0.853 when the YOLOv8m model is used. For rice panicle segmentation, the SegFormer_B0 model yielded a mean intersection over union (mIoU) of 0.949 and an accuracy of 0.987. Additionally, by capturing RGB-D data of maize canopies, we performed 3D reconstructions to calculate plant height, achieving an R 2 of 0.99 compared with manual measurements. Similar experiments with rapeseed yielded an R 2 of 0.97. Near-infrared spectral data collected from drought-stressed rice plants enabled the classification of drought severity into five categories, with classification accuracies ranging from 0.977 to 0.996. Our results reveal that PhenoRob-F is an effective tool for high-throughput phenotyping and is capable of providing precise data to support phenotypic trait analysis and the selection of superior crop genotypes.
Why it matches plant phenotyping methods圃場用自律ロボットと複数の画像・分光センシング、形質抽出手法を開発し、作物キャノピーで性能検証しているため、植物フェノタイピング手法が研究の中心である。
abstractwe introduce PhenoRob-F (a phenotyping robot for the field), a cross-row, wheeled robot designed for efficient and automated phenotyping under field conditions.
Reproduction assets foundThe paper's data availability statement explicitly links a public GitHub repository containing part of the data and code supporting this PhenoRob-F phenotyping study; remaining data are available on request.Code · publicPart of the data and code supporting this study are openly available with the following link: https://github.com/balloonhaha/PhenoRob-F. All other reasonable requests for data and research materials will be fulfilled upon contacting the corresponding authors.Open asset ↗balloonhaha/PhenoRob-Fhtml-lines:193-220Code / dataset availability confirmedEurope PMC · checked 6 Sept 2026
Wheat spike morphology plays a critical role in determining grain yield and has garnered significant interest in genetics and breeding research. However, traditional measurement methods are limited to simple traits and fail to capture complex spike phenotypes with high precision, thus limiting progress in yield-related trait analysis. In this study, a deep learning pipeline, called Speakerphone, for acquiring precise wheat spike phenotypes was developed. Our pipeline achieved a mean intersection over union (mIoU) of 0.948 in spike segmentation. Additionally, the spike traits measured by our method strongly agreed with the manually measured values, with Pearson correlation coefficients of 0.9865 for spike length, 0.9753 for the number of spikelets per spike, and 0.9635 for fertile spikelets. Using experimental data of 221 wheat cultivars from various regions of Zhao County, Hebei Province, China, our pipeline extracted 45 phenotypes and analyzed their correlations with thousand-grain weight (TGW) and spike yield. Our findings indicate that precise measurements of spike area, spikelet area, and other phenotypic traits clarify the correlation between spike morphology and wheat yield. Through hierarchical clustering on the basis of spike morphology, we categorized wheat spikes into six classes and identified the phenotypic differences among these classes and their effects on TGW and yield. Furthermore, phenotypic differences among wheat cultivars from different geographical regions and over decades were revealed in this study, with an increase in the number of large-spike cultivars over time, especially in southern China. This research may help breeders understand the relationship between wheat spike morphology and yield, thus providing an important basis for future wheat breeding efforts.
Why it matches plant phenotyping methods小麦穂の画像から形態形質を抽出する深層学習パイプラインを開発し、セグメンテーション性能と手動測定との一致を検証しているため、フェノタイピング手法が研究の中心です。
abstracta deep learning pipeline, called Speakerphone, for acquiring precise wheat spike phenotypes was developed.
Reproduction assets foundThe paper's SpikePheno phenotyping pipeline (deep learning segmentation and trait extraction for wheat spikes) is explicitly stated to be publicly available on GitHub. No public dataset of the 2198 spike images or annotations is stated; the labelme link is a generic third-party tool, not a paper-specific asset.Code · publicThe full implementation of the spikePheno pipeline is available in GitHub at the following URL: https://github.com/Jiang-Phenomics-Lab/spikePheno .Open asset ↗Jiang-Phenomics-Lab/spikePhenolines:210-330Code / dataset availability confirmedEurope PMC · OpenAlex · Crossref · checked 14 Sept 2026
Spike morphology is crucial for wheat (Triticum aestivum L.) yield and environmental adaptation. We developed a high-throughput phenotyping platform to dissect spike morphology traits based on 54 traits in 1,359 wheat accessions. These 54 spike morphology traits exhibited clear geographical differences among 306 worldwide accessions and breeding selection trend across different time windows for 1,053 accessions released from 1900 to 2020 in China. Based on geographical distribution and breeding selection of haplotypes, we attribute the differences in spike morphology to variable haplotype combinations. Wheat breeding breaks the trade-off between spike length and width/thickness, resulting in increased spike volume. A large proportion of genomic regions has been identified across wheat varieties and utilized as a fixed group to facilitate the targeted improvement and selection of desirable traits during wheat breeding programs. Overall, we provide a resource for the molecular design of spike morphology to facilitate future wheat breeding.
Why it matches plant phenotyping methodsコムギ穂の形態形質を多数個体から取得するハイスループット表現型解析プラットフォームの開発と適用が研究の中心である。
abstractWe developed a high-throughput phenotyping platform to dissect spike morphology traits based on 54 traits in 1,359 wheat accessions.
Reproduction assets foundThe paper's high-resolution spike phenotyping platform software is explicitly released as public code by the authors on GitHub. The genotype datasets (GVM000272/GVM000720) are molecular omics deposits and do not qualify as phenotype/trait data; other listed tools are generic third-party libraries.Code · publicn/gvm) under accession number GVM00027239
or GVM000720.
• The genotype data for 1053 Chinese accessions (1900–2020) are pub
licly available at the Genome Variation Map (https://bigd.big.ac.cn/gvm)
under accession number GVM000720.
• The software for the high-resolution phenotyping platform is publicly avail
able with the link https://github.com/ShenKC-hub/wheat_platform1.0.
• Any additional information required to reanalyze the data reported in this
paper is available from the lead contact upon request.
ACKNOWLEDGMENTS
This work was supported by the National Natural Science Foundation
of China (32272122, 32401876, and 32225038),the Strategic Priority
Research Program of Chinese Academy of Open asset ↗ShenKC-hub/wheat_platform1.0 · wheat_platform1.0pdf-raw-page:15 lines:1-81Code / dataset availability confirmedEurope PMC · checked 6 Sept 2026
Computer vision is increasingly used in farmers' fields and agricultural experiments to quantify important traits. Imaging setups with a sub-millimeter ground sampling distance enable the detection and tracking of plant features, including size, shape, and colour. Although today's AI-driven foundation models segment almost any object in an image, they still fail for complex plant canopies. To improve model performance, the global wheat dataset consortium assembled a diverse set of images from experiments around the globe. After the head detection dataset (GWHD), the new dataset targets a full semantic segmentation (GWFSS) of organs (leaves, stems and spikes) covering all developmental stages. Images were collected by 11 institutions using a wide range of imaging setups. Two datasets are provided: i) a set of 1096 diverse images in which all organs were labelled at the pixel level, and (ii) a dataset of 52,078 images without annotations available for additional training. The labelled set was used to train segmentation models based on DeepLabV3Plus and Segformer. Our Segformer model performed slightly better than DeepLabV3Plus with a mIOU for leaves and spikes of ca. 90 %. However, the precision for stems with 54 % was rather lower. The major advantages over published models are: i) the exclusion of weeds from the wheat canopy, ii) the detection of all wheat features including necrotic and senescent tissues and its separation from crop residues. This facilitates further development in classifying healthy vs. unhealthy tissue to address the increasing need for accurate quantification of senescence and diseases in wheat canopies.
Why it matches plant phenotyping methods小麦器官の画素レベルセグメンテーション用データセットを構築し、モデル性能を検証する研究であり、植物形質抽出のための画像解析手法が中心です。
abstractThe labelled set was used to train segmentation models based on DeepLabV3Plus and Segformer.
Reproduction assets foundThe paper's GWFSS wheat organ segmentation dataset (1096 pixel-labelled images plus 52,078 unlabelled images, subset/imaging-setup metadata) and the benchmark segmentation model are publicly deposited in the ETH Research Collection and mirrored on Hugging Face, with links also listed on the Global Wheat site.Dataset · publicThe full dataset (GWFSS_v1.0_full) including the 1096 ground-truth labelled images (GWFSS_v1.0_labelled), the descriptions of the datasets (GWFSS_v1.0_subsets.csv) and imaging setups (GWFSS_v1.0_imaging_setups.csv) is available in the ETH research collection (https://doi.org/10.3929/ethz-b-000734546)Open asset ↗ETH research collection · 10.3929/ethz-b-000734546html-lines:1006-1041Dataset · publicTo facilitate access, the labelled data and the benchmark model will also be available at (https://huggingface.co/datasets/GlobalWheat/GWFSS_v1.0).Open asset ↗huggingface · GlobalWheat/GWFSS_v1.0html-lines:1129-1192Dataset · publicLinks to these datasets can be found at: https://www.global-wheat.com/gwfss.html.Open asset ↗html-lines:1006-1041Code / dataset availability confirmedOpenAlex · Crossref · checked 15 Sept 2026
The architecture of rice tillers plays a pivotal role in yield potential, yet conventional phenotyping methods have struggled to capture these intricate three-dimensional (3D) structures with high fidelity. In this study, a 3D model reconstruction method was developed specifically for rice tillers to overcome the challenges posed by their slender, feature-poor morphology in multi-view stereo-based 3D reconstruction. By applying strategically designed colorful reference markers, high-resolution 3D tiller models of 231 rice landraces were reconstructed. Accurate phenotyping was achieved by introducing ScaleCalculator, a software tool that integrated depth images from a depth camera to calibrate the physical sizes of the 3D models. The high efficiency of the 3D model-based phenotyping pipeline was demonstrated by extracting the following seven key agronomic traits: flag leaf length, panicle length, first internode length below the panicle, stem length, flag leaf angle, second leaf angle from the panicle, and third leaf angle. Genome-wide association studies (GWAS) performed with these 3D traits identified numerous candidate genes, nine of which had been previously confirmed in the literature. This work provides a 3D phenomics solution tailored for slender organs and offers novel insights into the genetic regulation of complex morphological traits in rice.
Why it matches plant phenotyping methodsイネ分げつの3D再構成とScaleCalculatorによるスケール校正を開発し、7つの形態形質を抽出するフェノタイピング手法が研究の中心であるため。
abstracta 3D model reconstruction method was developed specifically for rice tillers
Reproduction assets foundThe paper's 3D tiller models for 231 rice landraces are publicly deposited on Zenodo, and the authors' ScaleCalculator phenotyping source code is publicly available on GitHub, both explicitly stated in the Data Availability Statement. SNP genotype data are unpublished and excluded.Code · publicvelopment Co. LTD, and
Jiangsu Collaborative Innovation Center for Modern Crop Production.
Data Availability Statement: The 3D tiller models created in this study are available for research pur-
poses at https://zenodo.org/records/16080993 (accessed on 18 July 2025).The source code of ScaleCal-
culator is available on GitHub at https://github.com/ganlab/OSTRA/tree/master/ScaleCalculator
(accessed on 18 July 2025).
Acknowledgments: We thank Jianmin Wan for their valuable suggestions and Jiaqi Deng for their
technical help.
Conflicts of Interest: The authors declare that there are no conflicts of interest regarding the publica-
tion of this article.
References
1. Food and Agriculture OrganizatOpen asset ↗github · ganlab/OSTRApdf-raw-page:16 lines:1-50Code / dataset availability confirmedarXiv · checked 6 Sept 2026
Observer bias and inconsistencies in traditional plant phenotyping methods limit the accuracy and reproducibility of fine-grained plant analysis. To overcome these challenges, we developed TomatoMAP, a comprehensive dataset for Solanum lycopersicum using an Internet of Things (IoT) based imaging system with standardized data acquisition protocols. Our dataset contains 64,464 RGB images that capture 12 different plant poses from four camera elevation angles. Each image includes manually annotated bounding boxes for seven regions of interest (ROIs), including leaves, panicle, batch of flowers, batch of fruits, axillary shoot, shoot and whole plant area, along with 50 fine-grained growth stage classifications based on the BBCH scale. Additionally, we provide 3,616 high-resolution image subset with pixel-wise semantic and instance segmentation annotations for fine-grained phenotyping. We validated our dataset using a cascading model deep learning framework combining MobileNetv3 for classification, YOLOv11 for object detection, and MaskRCNN for segmentation. Through AI vs. Human analysis involving five domain experts, we demonstrate that the models trained on our dataset achieve accuracy and speed comparable to the experts. Cohen's Kappa and inter-rater agreement heatmap confirm the reliability of automated fine-grained phenotyping using our approach.
Why it matches plant phenotyping methods植物の多視点画像取得、アノテーション付きデータセット、深層学習による分類・検出・セグメンテーションを中心に開発・検証した、明確な植物フェノタイピング手法研究です。
abstractwe developed TomatoMAP, a comprehensive dataset for Solanum lycopersicum using an Internet of Things (IoT) based imaging system with standardized data acquisition protocols.
Reproduction assets foundThe paper's TomatoMAP dataset (images, annotations) is publicly deposited in e!DAL at IPK with an explicit DOI URL given in the Data Records section.Dataset · publicDataset is deposited in e!DAL (electronic data archive library) of IPK (Leibniz Institute of Plant Genetics
and Crop Plant Research): https://doi.ipk-gatersleben.de/DOI/10bb9f14-ce90-4747-836f-cf61dfb5eea1/Open asset ↗e!DAL · 10bb9f14-ce90-4747-836f-cf61dfb5eea1pdf-page:7 lines:1-73Code / dataset availability confirmedOpenAlex · checked 6 Sept 2026
Rice panicle detection is a key technology for improving rice yield and agricultural management levels. Traditional manual counting methods are labor-intensive and inefficient, making them unsuitable for large-scale farmlands. This paper proposes FRPNet, a novel lightweight convolutional neural network optimized for multi-altitude rice panicle detection in UAV images. The architecture integrates three core innovations: a CSP-ScConv backbone with self-calibrating convolutions for efficient multi-scale feature extraction; a Feature Pyramid Shared Convolution (FPSC) module that replaces pooling with multi-branch dilated convolutions to preserve fine-grained spatial information; and a Dynamic Bidirectional Feature Pyramid Network (DynamicBiFPN) employing input-adaptive kernels to optimize cross-scale feature fusion. The model was trained and evaluated on the open-access Dense Rice Panicle Detection (DRPD) dataset, which comprises UAV images captured at 7 m, 12 m, and 20 m altitudes. Experimental results demonstrate that our method significantly outperforms existing advanced models, achieving an AP50 of 0.8931 and an F2 score of 0.8377 on the test set. While ensuring model accuracy, the parameters of the proposed model decreased by 42.87% and the GFLOPs by 48.95% compared to Panicle-AI. Grad-CAM visualizations reveal that FRPNet exhibits superior background noise suppression in 20 m altitude images compared to mainstream models. This work establishes an accuracy-efficiency balanced solution for UAV-based field phenotyping.
Why it matches plant phenotyping methodsUAV画像からイネ穂の検出・計数という植物形質を抽出する軽量深層学習手法を開発し、公開データセットで評価しており、表現型取得手法が中心である。
abstractThis paper proposes FRPNet, a novel lightweight convolutional neural network optimized for multi-altitude rice panicle detection in UAV images.
Reproduction assets foundThe paper states its data (the DRPD rice panicle UAV dataset used for training/evaluation) is publicly available via a GitHub release URL, which matches an allowed URL.Dataset · publicData Availability Statement: Data is available at https://github.com/changcaiyang/Panicle-AI/
releases/tag/v1.0.Open asset ↗Panicle-AI · v1.0pdf-page:22 lines:1-59Code / dataset availability confirmedOpenAlex · Crossref · Europe PMC · checked 6 Sept 2026
BACKGROUND: Plant phenotyping has become increasingly important for advancing plant science, agriculture, and biotechnology. Classic manual methods are labor-intensive and time-consuming, while existing computational tools often require advanced coding skills, high-performance hardware, or PC-based environments, making them inaccessible to non-experts, to resource-constrained users, and to field technicians. RESULTS: To respond to these challenges, we introduce OpenPheno, an open-access, user-friendly, and smartphone-based platform encapsulated within a WeChat Mini-Program for instant plant phenotyping. The platform is designed for ease of use, enabling users to phenotype plant traits quickly and efficiently with only a smartphone at hand. We currently instantiate the use of the platform with tools such as SeedPheno, WheatHeadPheno, LeafAnglePheno, SpikeletPheno, CanopyPheno, TomatoPheno, and CornPheno; each offering specific functionalities such as seed size and count analysis, wheat head detection, leaf angle measurement, spikelet counting, canopy structure analysis, and tomato fruit measurement. In particular, OpenPheno allows developers to contribute new algorithmic tools, further expanding its capabilities to continuously facilitate the plant phenotyping community. CONCLUSIONS: By leveraging cloud computing and a widely accessible interface, OpenPheno democratizes plant phenotyping, making advanced tools available to a broader audience, including plant scientists, breeders, and even amateurs. It can function as a role in AI-driven breeding by providing the necessary data for genotype-phenotype analysis, thereby accelerating breeding programs. Its integration with smartphones also positions OpenPheno as a powerful tool in the growing field of mobile-based agricultural technologies, paving the way for more efficient, scalable, and accessible agricultural research and breeding.
Why it matches plant phenotyping methodsスマートフォンで植物形質を取得・解析するソフトウェアプラットフォームの開発が中心であり、複数の具体的な表現型解析ツールを提供している。
abstractwe introduce OpenPheno, an open-access, user-friendly, and smartphone-based platform encapsulated within a WeChat Mini-Program for instant plant phenotyping.
Reproduction assets foundThe paper's authors publicly release the OpenPheno platform code (GitHub repository) and the evaluation sample data used for algorithm validation and demonstration (dataset subdirectory). Both are paper-specific, public, and actionable.Dataset · publicEvaluation sample data used for algorithm validation and demonstration has been made publicly available at out GitHub repository: https://github.com/openpheno/OpenPheno/tree/main/dataset .Open asset ↗openpheno/OpenPheno · tree/main/datasetlines:171-191Code / dataset availability confirmedEurope PMC · checked 6 Sept 2026
The spike number (SN) is an important trait that significantly impacts grain yield in wheat. Manual counting of SN is time-consuming, hindering large-scale breeding efforts. Hence, there is an urgent need to develop efficient and accurate methodologies for SN counting. A YOLOX algorithm was used to determine the optimal growth stage for developing wheat spike detection models among recombinant inbred lines (RILs) across Zhongmai 175 × Lunxuan 987 and a diverse panel of 166 cultivars. We subsequently increased the precision of spike identification by developing a new YOLOX-P algorithm that incorporates the convolutional block attention module and increasing the resolution of the input images. We also used these SN data to identify underlying loci in the Zhongmai 578 × Jimai 22 RIL population. The results revealed that the late grain-filling stage presented the highest precision among the SN detection models, with accuracies ranging from 91.8 to 95.02 %. The improved YOLOX-P algorithm demonstrated higher mean average precision scores (5.30-5.99 %) and F1 scores (0.06) than did the YOLOX algorithm when it was applied to the same subsets. Three new SN loci, namely, QSN . caas-4A2, QSN . caas-4D and QSN . caas-5B2 , were identified using the 50k SNP arrays. Two kompetitive allele-specific PCR markers linked with QSN . caas-4A2 and QSN . caas-5B2 were developed, and their genetic effects were validated in a diverse panel of 166 cultivars. These findings provide useful tools for high-throughput identification of SNs and novel loci in wheat.
Why it matches plant phenotyping methodsRGB画像とコンピュータビジョンによりコムギの穂数を自動推定する手法を開発・比較し、精度を評価しているため、植物フェノタイピング手法が中心である。
abstractHence, there is an urgent need to develop efficient and accurate methodologies for SN counting.
Reproduction assets foundThe paper publicly releases two paper-specific assets: (1) a wheat spike number image dataset (subsets CD&DD&XX) on GitHub, and (2) the YOLOX-P analysis code on Google Drive. Both have explicit availability statements with author-provided URLs.Dataset · publicThe image set for CD&DD&XX is publicly available on GitHub ( https://github.com/lileimax/YOLOXP-wheat-spike-identification ).Open asset ↗https://github.com/lileimax/YOLOXP-wheat-spike-identificationlines:223-246Code · publicThe code for YOLOX-P is publicly available on Google Drive ( https://drive.google.com/drive/folders/1urCDUdyrq14FuwG2I3YwCZraUGEEl_8X?usp=sharing ).Open asset ↗lines:247-250Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Field / plotRGB / grayscalePanicle / ear / spikeClassificationObject detectionGrowth / development / phenology
This dataset is an expanded version of a previously published collection of high-resolution RGB images of Urochloa spp. genotypes, initially designed to facilitate automated classification of phenological stages and raceme identification in forage breeding trials. The original dataset included 2400 images of 200 genotypes captured under controlled conditions, supporting the development of computer vision models for High-Throughput Phenotyping (HTP). In this updated release, 139 additional images and 24,983 new annotations have been added, bringing the dataset to a total of 2539 images and 47,323 raceme annotations. This version introduces increased diversity in image-capture conditions, with data collected from two geographic locations (Palmira, Colombia, and Ocozocoautla de Espinosa, Mexico) and a range of image-capture devices, including smartphones (e.g. Realme C53 and Oppo Reno 11), a Nikon D5600 camera, and a Phantom 4 Pro V2 drone. Images now vary in perspective (nadir, high-angle, and frontal) and capture distance (1-3 meters), enhancing the dataset applicability for robust Deep Learning (DL) models. Compared to the original dataset, raceme density per plant has nearly doubled in some samples, offering higher raceme overlap for advanced instance segmentation tasks. This expanded dataset supports deeper exploration of phenotypic variation in Urochloa spp. and offers greater potential for developing adaptable models in crop phenotyping.
Why it matches plant phenotyping methods植物の生育ステージ分類と総状花序の同定を目的とする画像データセットで、注釈付き画像の拡張、撮影条件の多様化、インスタンスセグメンテーション用途が中心であり、再利用可能な表現型解析基盤に該当する。
abstractThis dataset is an expanded version of a previously published collection of high-resolution RGB images of Urochloa spp. genotypes, initially designed to facilitate automated classification of phenological stages and raceme identification in forage breeding trials.
Reproduction assets foundThe paper is a Data in Brief describing a public Harvard Dataverse deposit of the paper's own Urochloa spp. hybrid RGB images and COCO raceme annotations, with a direct DOI URL listed in allowed_urls.Dataset · publicupo Papalotla
City 1: Palmira, Valle del Cauca.
City 2: Ocozocoautla de Espinosa, Chiapas.
Country 1: Colombia.
Country 2: Mexico.
Geolocalization 1: 3°29’N, 76°21’W
Geolocalization 2: 16°45′N 93°28′W
Data accessibility
Repository name: Harvard Dataverse
Data identification number: doi.org/10.7910/DVN/X4LM19
Direct URL to data: https://doi.org/10.7910/DVN/X4LM19Open asset ↗Harvard Dataverse · 10.7910/DVN/X4LM19lines:1-51Code / dataset availability confirmedEurope PMC · checked 6 Sept 2026
Accurate and efficient assessment of highland barley (Hordeum vulgare L.) density is crucial for optimizing cultivation and management practices. However, challenges such as overlapping spikes in unmanned aerial vehicle (UAV) images and the computational requirements for high-resolution image analysis hinder real-time detection capabilities. To address these issues, this study proposes an improved lightweight YOLOv5 model for highland barley spike detection. We chose depthwise separable convolution (DSConv) and ghost convolution (GhostConv) for the backbone and neck networks, respectively, to reduce the parameter and computational complexity. In addition, the integration of convolutional block attention module (CBAM) enhances the model's ability to focus on target object in complex backgrounds. The results show that the improved YOLOv5 model has a significant improvement in detection performance. Precision and recall increased by 3.1% to 92.2% and 86.2%, respectively, with an F1 score of 0.892. The AP0.5 reaches 92.7% and 93.5% for highland barley in the growth and maturation stages, respectively, and the overall mAP0.5 improved to 93.1%. Compared to the baseline YOLOv5n model, the number of parameters and floating-point operations (FLOPs) were reduced by 70.6% and 75.6%, respectively, enabling lightweight deployment without compromising accuracy. In addition,the proposed model outperformed mainstream object detection algorithms such as Faster R-CNN, Mask R-CNN, RetinaNet, YOLOv7, and YOLOv8, in terms of detection accuracy and computational efficiency. Although this study also suffers from limitations such as insufficient generalization under varying lighting conditions and reliance on rectangular annotations, it provides valuable support and reference for the development of real-time highland barley spike detection systems, which can help to improve agricultural management.
Why it matches plant phenotyping methodsUAV画像からハダンオオムギの穂を検出し密度評価に用いる軽量化画像解析モデルを開発・比較しており、植物形質状態の取得手法が中心である。
abstractthis study proposes an improved lightweight YOLOv5 model for highland barley spike detection
Reproduction assets foundThe paper's Data availability statement explicitly provides the authors' highland barley UAV spike-detection dataset on ModelScope and their analysis code on GitHub, both paper-specific and publicly actionable.Dataset · publicThe dataset can be available from https://modelscope.cn/datasets/Cai121/highland_barley and the code can be available from https://github.com/trangle666ddd/YOLOv5-highland-barley-detection .Open asset ↗Cai121/highland_barleylines:182-211Code · publicThe dataset can be available from https://modelscope.cn/datasets/Cai121/highland_barley and the code can be available from https://github.com/trangle666ddd/YOLOv5-highland-barley-detection .Open asset ↗trangle666ddd/YOLOv5-highland-barley-detectionlines:182-211Code / dataset availability confirmedOpenAlex · Europe PMC · checked 6 Sept 2026
Machine learning models for crop image analysis and phenomics are highly important for precision agriculture and breeding and have been the subject of intensive research. However, the lack of publicly available high-quality image datasets with detailed annotations has severely hindered the development of these models. In this work, we present a comprehensive multicultivar and multiview rice plant image dataset (CVRP) created from 231 landraces and 50 modern cultivars grown under dense planting in paddy fields. The dataset includes images capturing rice plants in their natural environment, as well as indoor images focusing specifically on panicles, allowing for a detailed investigation of cultivar-specific differences. A semiautomatic annotation process using deep learning models was designed for annotations, followed by rigorous manual curation. We demonstrated the utility of the CVRP by evaluating the performance of four state-of-the-art (SOTA) semantic segmentation models. We also conducted 3D plant reconstruction with organ segmentation via images and annotations. The database not only facilitates general-purpose image-based panicle identification and segmentation but also provides valuable resources for challenging tasks such as automatic rice cultivar identification, panicle and grain counting, and 3D plant reconstruction. The database and the model for image annotation are available at https://bic.njau.edu.cn/CVRP.html.
Why it matches plant phenotyping methodsイネ画像データセットとアノテーションモデルを開発・評価し、セグメンテーション、器官再構成、穂・粒数計測などの再利用可能な表現型解析を中心に扱っているため。
abstractwe present a comprehensive multicultivar and multiview rice plant image dataset (CVRP)
Reproduction assets foundThe paper's own CVRP rice image dataset (images + annotations), accompanying code, and trained Mask2Former annotation model are explicitly stated as publicly available on Hugging Face and the authors' NJAU site.Dataset · publicThe CVRP dataset is publicly available on Hugging Face at https://huggingface.co/datasets/CVRPDataset/CVRP for academic use under the specified license.Open asset ↗CVRPDataset/CVRPhtml-lines:236-252Code · publicThe accompanying code and trained models are available at https://huggingface.co/CVRPDataset/Model.Open asset ↗CVRPDataset/Modelhtml-lines:236-252Code / dataset availability confirmedEurope PMC · checked 6 Sept 2026
Location-based methods for counting rice panicles have often been underestimated, primarily due to their perceived inferior performance when compared to detection-based techniques. However, we argue that the potential of these location-based methods has not been fully realized, largely owing to the limitations of existing model architectures. In response to this challenge, we introduce LKNet, an innovative model developed on the foundation of the location-based framework P2Pnet. To enhance the performance of panicle counting across diverse types and growth stages, we implemented several key strategies. Firstly, we reconstructed the localization loss function as a predictive probability distribution to reduce the influence of manual labeling. Additionally, we dynamically adapted the receptive field to better accommodate different panicle types through the use of large kernel convolutional blocks. We evaluated LKNet on several publicly available counting task datasets and achieved state-of-the-art performance on the Diverse Rice Panicle Detection dataset. Furthermore, we employed a rice panicle dataset collected at an altitude of 7 m, which includes various panicle types and growth stages for model training and evaluation. The results showed that LKNet effectively accommodates variations in panicle morphology, with R 2 values ranging from 0.903 to 0.989. These findings highlight LKNet's potential to enhance precision in panicle counting in rice breeding programs.
Why it matches plant phenotyping methodsイネ穂の画像ベース計数モデルを開発し、複数データセットで評価しており、植物表現型取得・抽出手法が中心である。
abstractwe introduce LKNet, an innovative model developed on the foundation of the location-based framework P2Pnet.
Reproduction assets foundThe paper's authors explicitly state that the LKNet analysis code is publicly available on GitHub, matching an allowed URL. No separate phenotype dataset deposit by the authors is stated (the 7 m rice panicle dataset and public benchmarks like DPRD/MTC/SHTech are described but no authors' dataset URL is given).Code · publicCode is available at https://github.com/L129921/LKnet .Open asset ↗LKnetlines:297-319Code / dataset availability confirmedOpenAlex · checked 6 Sept 2026
Dissecting the drought resistance (DR) mechanism and designing drought-resistant rice varieties are promising strategies to address the challenge of climate change. Here, we selected a typical drought-avoidant (DA) variety IRAT109 and drought-tolerant (DT) variety Hanhui15 as the parents to develop a stable recombinant inbred line (RIL) population (F 8 , 1,262 lines). The de novo assembled genomes of both parents were released. Through re-sequencing of the RIL population, a set of 1,189,216 reliable SNPs were obtained and used for constructing a dense genetic map. Using both aboveground and underground phenomic platforms and multimodal cameras, we captured 139,040 image-based traits (i-traits) of whole plant’s phenotypes in response to drought stress throughout entire rice growth period and identified 32,586 drought-responsive quantitative trait loci (QTLs) including 2,097 unique QTLs. The QTLs related to panicle i-traits occurred on the middle of chromosome 8 over 600 times, while the QTLs related to leaf i-traits on the 5’ end of chromosome 3 over 800 times, indicating potential effect of these QTLs on plant phenotypes. We chose three candidate genes ( OsMADS50, OsGhd8, OsSAUR11 ) related to leaf, panicle, and root traits respectively and verified their functions in resisting drought. Gene OsMADS50 was found to negatively regulate DR by modulating leaf dehydration, grain size, and root downward growth. Furthermore, a total of 18 and 21 composite QTLs significantly related to grain weight and plant biomass were screened from 597 lines in RIL population under drought conditions in field experiments, and composite QTL region was highly overlapped (76.9%) with known DR gene region. Based on three candidate DR genes, we proposed the haplotype design suitable for different environments and breeding objectives. This study provides a valuable reference for multi-modal and time-series phenomic analyses, deciphers the genetic mechanism of DA and DT rice varieties, and offers a molecular navigation map for breeding DR variety.
Why it matches plant phenotyping methods地下・地上フェノミックプラットフォームとマルチモーダルカメラで全生育期間の画像形質を大量取得しており、フェノタイピング手法の適用と技術的ワークフローが研究の中核です。
abstractUsing both aboveground and underground phenomic platforms and multimodal cameras, we captured 139,040 image-based traits (i-traits) of whole plant’s phenotypes in response to drought stress throughout entire rice growth period
Reproduction assets foundThe paper's phenome data (aboveground and belowground rice images/i-traits) and the authors' data-handling code and deep-learning model are explicitly deposited at public URLs listed in the Data Availability Statement. Genome data (riceome.hzau.edu.cn) is molecular omics and excluded.Code · publicAll the phenome data and core data-handling code have been deposited online.Open asset ↗lines:140-175Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
The spike shape and morphometric characteristics are among the key characteristics of cultivated cereals, being associated with their productivity. These traits are often used for the plant taxonomy and authenticity of hexaploid wheat species. Manual measurement of spike characteristics is tedious and not precise. Recently, the authors of this study developed a method for wheat spike morphometry utilizing 2D image analysis. Here, this method is applied to study variations in spike size and shape for 190 plants of seven hexaploid (2 n = 6 x = 42) species and one artificial amphidiploid of wheat. Five manually estimated spike traits and 26 traits obtained from digital image analysis were analyzed. Image-based traits describe the characteristics of the base, center and apex of the spike and common parameters (circularity, roundness, perimeter, etc.). Estimates of similar traits by manual measurement and image analysis were shown to be highly correlated, suggesting the practical importance of digital spike phenotyping. The utility of spike traits for classification into types (spelt, normal and compact) and species or amphidiploid is shown. It is also demonstrated that the estimates obtained made it possible to identify the spike characteristics differing significantly between species or between accessions within the same species. The present work suggests the usefulness of wheat spike shape analysis using an approach based on characteristics obtained by digital image analysis.
Why it matches plant phenotyping methods小麦穂の2D画像解析による形態計測法を実際に適用し、手動測定との相関検証とデジタル形質の有用性評価を行っており、植物フェノタイピング手法が中心である。
abstractRecently, the authors of this study developed a method for wheat spike morphometry utilizing 2D image analysis.
Reproduction assets foundThe paper's spike image dataset (the 2D images used for quadrangle-model phenotyping of 190 wheat plants) is publicly deposited on Zenodo, explicitly linked in the Data Availability Statement. The supplementary files contain statistical results (normality tests, ANOVA tables, confusion matrices, specimen descriptions)衍Dataset · publicThe spike image dataset is available at https://zenodo.org/records/13837454 , accessed on 27 September 2024.Open asset ↗Zenodo · 13837454lines:895-912Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Urochloa grasses are widely used forages in the Neotropics and are gaining importance in other regions due to their role in meeting the increasing global demand for sustainable agricultural practices. High-throughput phenotyping (HTP) is important for accelerating Urochloa breeding programs focused on improving forage and seed yield. While RGB imaging has been used for HTP of vegetative traits, the assessment of phenological stages and seed yield using image analysis remains unexplored in this genus. This work presents a dataset of 2,400 high-resolution RGB images of 200 Urochloa hybrid genotypes, captured over seven months and covering both vegetative and reproductive stages. Images were manually labelled as vegetative or reproductive, and a subset of 255 reproductive stage images were annotated to identify 22,340 individual racemes. This dataset enables the development of machine learning and deep learning models for automated phenological stage classification and raceme identification, facilitating HTP and accelerated breeding of Urochloa spp. hybrids with high seed yield potential.
Why it matches plant phenotyping methods植物のフェノロジー段階と穂状花序を画像から識別するための高解像度データセットであり、植物表現型取得・抽出を中心とする研究。
abstractThis work presents a dataset of 2,400 high-resolution RGB images of 200 Urochloa hybrid genotypes, captured over seven months and covering both vegetative and reproductive stages.
Reproduction assets foundThe paper is itself a data descriptor whose core asset is a public Harvard Dataverse dataset of 2,400 RGB images of Urochloa hybrids with phenological stage labels and COCO-format raceme polygon annotations, directly reproducing the paper's phenotyping data.Dataset · publict diffuser to ensure uniform lighting.
Data source location
Institution: Alliance Bioversity International & CIAT.
City: Palmira, Valle del Cauca.
Country: Colombia.
Geolocalization: 3°29′N, 76°21′W .
Data accessibility
Repository name: Harvard Dataverse
Data identification number: doi.org/10.7910/dvn/u0kl6y
Direct URL to data: https://doi.org/10.7910/dvn/u0kl6y
Instructions for accessing these data: The dataset [ 1 ] is licensed under the Creative Commons Attribution 4.0 International, which allows using, sharing, adapting, distribution and reproduction in any medium or format if attribution is given to the creator.
Related research article
None .
1
Value of the Data
•
The dataset offOpen asset ↗Harvard Dataverselines:1-58Code / dataset availability confirmedCrossref · checked 14 Sept 2026
Published13 Sept 2024Tenth International Conference on Remote Sensing and Geoinformation of the Environment (RSCy2024)Cited by 1 · OpenAlex ↗
Precision agriculture is the application of correct amount of fertilizers and water pesticide to achieve higher agricultural productivity. Furthermore, under the framework of precision agriculture is the automated estimation of yield with advanced technologies including Artificial Intelligence (AI) and Remote Sensing (RS). The use of RS has advanced crop yield estimations and predictions in recent years. However, to validate RS-based models it is important to perform in-situ exercises such as fruit counting, which is a time-consuming task that increases the production costs. Drones, robots, and in-situ cameras in combination with AI algorithms are widely used to efficiently address these issues. The recent advancement in computational resources and power available has enabled the utilization of Deep Learning AI models. One of the best-performing models for object detection is the You-Only-Look-Once (YOLO). In this study, the YOLOv5s is used for object detection, which is the second smallest and fastest YOLOv5 architecture, on two different benchmark datasets collected from AgML. The first dataset consists of 1730 images of mango trees in Australia during night, and the second dataset consists of 6512 images of wheat heads collected from different regions around the world. The main objective of this work is to demonstrate the capabilities of light AI models for object detection and to evaluate their performance, which will serve as a benchmark for future comparison with the on-board environment.
Why it matches plant phenotyping methods植物器官の検出・カウントによる収量推定を対象とし、YOLOv5sの性能評価とベンチマーク化が主目的であるため、計算画像フェノタイピング手法として採用。
abstractIn this study, the YOLOv5s is used for object detection, which is the second smallest and fastest YOLOv5 architecture, on two different benchmark datasets collected from AgML.
Reproduction assets foundThe paper evaluates YOLOv5s on two public benchmark datasets. The MangoYOLO dataset is explicitly cited with public access URLs and was directly used for the paper's mango yield-estimation experiments, qualifying as a paper-specific public asset. The Global Wheat Head Detection dataset is also used but its Zenodo URL (Dataset · publicAnand Koirala, C McCarthy, Kerry Walsh, and Z Wang, ‘MangoYOLO data set’. Central Queensland University,
2021. Accessed: May 23, 2024. [Online]. Available: http://hdl.handle.net/10018/1261224,
https://researchdata.edu.au/mangoyolo-setOpen asset ↗pdf-page:7 lines:1-50Code / dataset availability confirmedEurope PMC · OpenAlex · checked 7 Sept 2026
High-throughput phenotyping is the bottleneck for advancing field trait characterization and yield improvement in major field crops. Specifically for sorghum ( Sorghum bicolor L.), rapid plant-level yield estimation is highly dependent on characterizing the number of grains within a panicle. In this context, the integration of computer vision and artificial intelligence algorithms with traditional field phenotyping can be a critical solution to reduce labor costs and time. Therefore, this study aims to improve sorghum panicle detection and grain number estimation from smartphone-capture images under field conditions. A preharvest benchmark dataset was collected at field scale (2023 season, Kansas, USA), with 648 images of sorghum panicles retrieved via smartphone device, and grain number counted. Each sorghum panicle image was manually labeled, and the images were augmented. Two models were trained using the Detectron2 and Yolov8 frameworks for detection and segmentation, with an average precision of 75% and 89%, respectively. For the grain number, 3 models were trained: MCNN (multiscale convolutional neural network), TCNN-Seed (two-column CNN-Seed), and Sorghum-Net (developed in this study). The Sorghum-Net model showed a mean absolute percentage error of 17%, surpassing the other models. Lastly, a simple equation was presented to relate the count from the model (using images from only one side of the panicle) to the field-derived observed number of grains per sorghum panicle. The resulting framework obtained an estimation of grain number with a 17% error. The proposed framework lays the foundation for the development of a more robust application to estimate sorghum yield using images from a smartphone at the plant level.
Why it matches plant phenotyping methodsスマートフォン画像からソルガム穂の検出・分割と粒数推定を開発・検証しており、植物形質取得手法が研究の中心である。
abstractthis study aims to improve sorghum panicle detection and grain number estimation from smartphone-capture images under field conditions.
Reproduction assets foundThe paper's authors explicitly state that the code used to train, test, and analyze the data is publicly available on GitHub. The phenotype image datasets are only available upon request.Code · publicThe code used to train, test, and analyze the data is available at https://github.com/GustavoSantiago113/Sorghum_Grain_Counter .Open asset ↗GustavoSantiago113/Sorghum_Grain_Counterlines:169-296Code / dataset availability confirmedCrossref · checked 15 Sept 2026
Fusarium head blight (FHB) is one of the most significant diseases affecting wheat and other small-grain cereals worldwide. Developing FHB-resistant cultivars is critical but requires field and greenhouse disease assessment, which are typically laborious and time consuming. In this work, we developed automated applications based on three-dimensional (3D) convolutional neural networks (CNNs) that detect FHB symptoms expressed in wheat, estimate the total number of spikelets versus the total number of infected spikelets on a wheat head, and subsequently calculate FHB severity index. Such tools are an important step toward the creation of automated and efficient phenotyping methods. The data used to generate the results are 3D point clouds consisting of four colour channels—red, green, blue (RGB), and near-infrared (NIR)—collected using a multispectral 3D scanner. Our 3D CNN models for FHB detection achieved 100% accuracy. The influence of the multispectral information on performance was evaluated; the results showed the dominance of the RGB channels over both the NIR (720 nm peak wavelength) and the NIR plus RGB channels combined. Our best 3D CNN models for estimation of total and infected number of spikelets achieved mean absolute errors (MAEs) of 1.13 and 1.56, respectively. Our best 3D CNN models for FHB severity estimation achieved 8.6 MAE. A linear regression analysis between the visual FHB severity assessment and the FHB severity predicted by our 3D CNN showed a significant correlation.
Why it matches plant phenotyping methods3Dマルチスペクトルスキャンと3D CNNを用いて、コムギのFHB症状、穂の小穂数、感染小穂数、病害重症度を自動推定する手法を開発・評価しており、植物表現型取得が中心である。
abstractwe developed automated applications based on three-dimensional (3D) convolutional neural networks (CNNs) that detect FHB symptoms expressed in wheat, estimate the total number of spikelets versus the total number of infected spikelets on a wheat head, and subsequently calculate FHB severity index.
To study plant organs, it is necessary to investigate the three-dimensional (3D) structures of plants. In recent years, non-destructive measurements through computed tomography (CT) have been used to understand the 3D structures of plants. In this study, we use the Chrysanthemum seticuspe capitulum inflorescence as an example and focus on contact points between the receptacles and florets within the 3D capitulum inflorescence bud structure to investigate the 3D arrangement of the florets on the receptacle. To determine the 3D order of the contact points, we constructed slice images from the CT volume data and detected the receptacles and florets in the image. However, because each CT sample comprises hundreds of slice images to be processed and each C. seticuspe capitulum inflorescence comprises several florets, manually detecting the receptacles and florets is labor-intensive. Therefore, we propose an automatic contact point detection method based on CT slice images using image recognition techniques. The proposed method improves the accuracy of contact point detection using prior knowledge that contact points exist only around the receptacle. In addition, the integration of the detection results enables the estimation of the 3D position of the contact points. According to the experimental results, we confirmed that the proposed method can detect contacts on slice images with high accuracy and estimate their 3D positions through clustering. Additionally, the sample-independent experiments showed that the proposed method achieved the same detection accuracy as sample-dependent experiments.
Why it matches plant phenotyping methodsCT画像から花序内の小花と花托の接触点を自動検出し、3D位置を推定する手法の開発・精度評価が研究の中心であるため、植物フェノタイピング手法に該当する。
abstractTherefore, we propose an automatic contact point detection method based on CT slice images using image recognition techniques.
Reproduction assets foundThe authors publicly deposited the labeled CT slice-image dataset (contact point annotations and receptacle segmentation labels) on Figshare, and a 3D visualization video of the contact point estimation results is available on YouTube. Raw CT volumes are only available on request. No author analysis code repository is.Dataset · publicre task is to automate the clustering parameters, which are currently determined manually. We also plan to develop a mathematical model of the position of the contact point between the receptacle and florets based on the estimation results.
Data availability statement
The labeled data for this study can be found in the Figshare https://doi.org/10.6084/m9.figshare.25388434 . The raw data supporting the conclusions of this article will be made available by the authors, without undue reservation.
Author contributionsOpen asset ↗Figshare · 10.6084/m9.figshare.25388434lines:513-540Code / dataset availability confirmedEurope PMC · checked 15 Sept 2026
Accurate wheat ear counting is one of the key indicators for wheat phenotyping. Convolutional neural network (CNN) algorithms for counting wheat have evolved into sophisticated tools, however because of the limitations of sensory fields, CNN is unable to simulate global context information, which has an impact on counting performance. In this study, we present a hybrid attention network (CTHNet) for wheat ear counting from RGB images that combines local features and global context information. On the one hand, to extract multi-scale local features, a convolutional neural network is built using the Cross Stage Partial framework. On the other hand, to acquire better global context information, tokenized image patches from convolutional neural network feature maps are encoded as input sequences using Pyramid Pooling Transformer. Then, the feature fusion module merges the local features with the global context information to significantly enhance the feature representation. The Global Wheat Head Detection Dataset and Wheat Ear Detection Dataset are used to assess the proposed model. There were 3.40 and 5.21 average absolute errors, respectively. The performance of the proposed model was significantly better than previous studies.
Why it matches plant phenotyping methods小麦穂数という植物形質をRGB画像から推定する深層学習手法を開発し、複数データセットで性能評価しており、表現型取得・抽出法が中心である。
abstractAccurate wheat ear counting is one of the key indicators for wheat phenotyping.
Reproduction assets foundThe paper uses two publicly available wheat ear image datasets (GWHD and WEDD) as its phenotyping inputs, with explicit public URLs in the data availability statement. No authors' analysis code or trained model is deposited.Dataset · publics generalization ability. This will provide real-time and accurate information for agricultural production, help farmers make scientific decisions, and improve crop management and yield.
Data availability statement
Publicly available datasets were analyzed in this study. This data can be found here: http://www.global-wheat.com/
https://github.com/simonMadec .
Author contributions
QH: Conceptualization, Formal analysis, Investigation, Methodology, Validation, Visualization, Writing – review & editing. WL: Conceptualization, Formal analysis, Investigation, Methodology, Software, Validation, Visualization, Writing – original draft. YZ: Software, Writing – review & editing. TR: SoftwaOpen asset ↗https://github.com/simonMadeclines:388-410Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Grape cluster architecture and compactness are complex traits influencing disease susceptibility, fruit quality, and yield. Evaluation methods for these traits include visual scoring, manual methodologies, and computer vision, with the latter being the most scalable approach. Most of the existing computer vision approaches for processing cluster images often rely on conventional segmentation or machine learning with extensive training and limited generalization. The Segment Anything Model (SAM), a novel foundation model trained on a massive image dataset, enables automated object segmentation without additional training. This study demonstrates out-of-the-box SAM's high accuracy in identifying individual berries in 2-dimensional (2D) cluster images. Using this model, we managed to segment approximately 3,500 cluster images, generating over 150,000 berry masks, each linked with spatial coordinates within their clusters. The correlation between human-identified berries and SAM predictions was very strong (Pearson's r 2 = 0.96). Although the visible berry count in images typically underestimates the actual cluster berry count due to visibility issues, we demonstrated that this discrepancy could be adjusted using a linear regression model (adjusted R 2 = 0.87). We emphasized the critical importance of the angle at which the cluster is imaged, noting its substantial effect on berry counts and architecture. We proposed different approaches in which berry location information facilitated the calculation of complex features related to cluster architecture and compactness. Finally, we discussed SAM's potential integration into currently available pipelines for image generation and processing in vineyard conditions.
Why it matches plant phenotyping methodsSAMを用いたブドウ房画像からの個別果粒セグメンテーション、検証、補正、および房構造・コンパクトネス形質の算出が研究の中心であるため。
abstractThis study demonstrates out-of-the-box SAM's high accuracy in identifying individual berries in 2-dimensional (2D) cluster images.
Reproduction assets foundThe authors state that all data and code to reproduce the study's grapevine cluster segmentation and architecture analysis are publicly available in their GitHub repository. Other URLs (SAM checkpoint, pycocotools, RMBG, arXiv refs) are generic third-party resources, not paper-specific assets.Code · publicAll the data and code to reproduce the results of this study are available at https://github.com/diazgarcialab/SAM-cluster-segmentation .Open asset ↗diazgarcialab/SAM-cluster-segmentationlines:105-230Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Deep learning models have been used for a variety of image processing tasks. However, most of these models are developed through supervised learning approaches, which rely heavily on the availability of large-scale annotated datasets. Developing such datasets is tedious and expensive. In the absence of an annotated dataset, synthetic data can be used for model development; however, due to the substantial differences between simulated and real data, a phenomenon referred to as domain gap, the resulting models often underperform when applied to real data. In this research, we aim to address this challenge by first computationally simulating a large-scale annotated dataset and then using a generative adversarial network (GAN) to fill the gap between simulated and real images. This approach results in a synthetic dataset that can be effectively utilized to train a deep-learning model. Using this approach, we developed a realistic annotated synthetic dataset for wheat head segmentation. This dataset was then used to develop a deep-learning model for semantic segmentation. The resulting model achieved a Dice score of 83.4% on an internal dataset and Dice scores of 79.6% and 83.6% on two external datasets from the Global Wheat Head Detection datasets. While we proposed this approach in the context of wheat head segmentation, it can be generalized to other crop types or, more broadly, to images with dense, repeated patterns such as those found in cellular imagery.
Why it matches plant phenotyping methodsコムギ穂の画像セグメンテーション手法と合成データセットを開発し、内部・外部データセットで性能検証しており、植物フェノタイピング手法が中心である。
abstractwe developed a realistic annotated synthetic dataset for wheat head segmentation.
Reproduction assets foundThe paper's wheat head segmentation datasets (synthetic, GAN-generated, and evaluation sets) are publicly available at the authors' stated URL; the analysis code is only available on request.Dataset · publicPublicly available datasets were utilized in this study. These data can be found here: https://www.cs.usask.ca/ftp/pub/whs/ (accessed on 1 June 2023). The code used to generate synthetic data presented in this study are available on request.Open asset ↗lines:74-261Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Capitalizing on the widespread adoption of smartphones among farmers and the application of artificial intelligence in computer vision, a variety of mobile applications have recently emerged in the agricultural domain. This paper introduces GranoScan, a freely available mobile app accessible on major online platforms, specifically designed for the real-time detection and identification of over 80 threats affecting wheat in the Mediterranean region. Developed through a co-design methodology involving direct collaboration with Italian farmers, this participatory approach resulted in an app featuring: (i) a graphical interface optimized for diverse in-field lighting conditions, (ii) a user-friendly interface allowing swift selection from a predefined menu, (iii) operability even in low or no connectivity, (iv) a straightforward operational guide, and (v) the ability to specify an area of interest in the photo for targeted threat identification. Underpinning GranoScan is a deep learning architecture named efficient minimal adaptive ensembling that was used to obtain accurate and robust artificial intelligence models. The method is based on an ensembling strategy that uses as core models two instances of the EfficientNet-b0 architecture, selected through the weighted F1-score. In this phase a very good precision is reached with peaks of 100% for pests, as well as in leaf damage and root disease tasks, and in some classes of spike and stem disease tasks. For weeds in the post-germination phase, the precision values range between 80% and 100%, while 100% is reached in all the classes for pre-flowering weeds, except one. Regarding recognition accuracy towards end-users in-field photos, GranoScan achieved good performances, with a mean accuracy of 77% and 95% for leaf diseases and for spike, stem and root diseases, respectively. Pests gained an accuracy of up to 94%, while for weeds the app shows a great ability (100% accuracy) in recognizing whether the target weed is a dicot or monocot and 60% accuracy for distinguishing species in both the post-germination and pre-flowering stage. Our precision and accuracy results conform to or outperform those of other studies deploying artificial intelligence models on mobile devices, confirming that GranoScan is a valuable tool also in challenging outdoor conditions.
Why it matches plant phenotyping methods小麦の葉・穂・茎・根の病害や損傷を画像から認識するAIモバイルアプリの開発・性能評価が中心であり、植物の病害状態を直接推定するフェノタイピング手法に該当する。害虫・雑草識別も含むが、病害認識の技術的評価が明示されている。
abstractThis paper introduces GranoScan, a freely available mobile app accessible on major online platforms, specifically designed for the real-time detection and identification of over 80 threats affecting wheat in the Mediterranean region.
Reproduction assets foundThe article's data availability statement explicitly states that the authors' weed phenotyping image dataset is publicly available on Zenodo (DOI 10.5281/zenodo.7598372), a paper-specific public asset. No author analysis code or trained model checkpoints are described with a public URL.Dataset · publicThe original contributions presented in the study are publicly available (see the weed phenotyping image dataset). This data can be found here: https://doi.org/10.5281/zenodo.7598372 .Open asset ↗Zenodo · 10.5281/zenodo.7598372lines:460-508Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Wheat head detection and counting using deep learning techniques has gained considerable attention in precision agriculture applications such as wheat growth monitoring, yield estimation, and resource allocation. However, the accurate detection of small and dense wheat heads remains challenging due to the inherent variations in their size, orientation, appearance, aspect ratios, density, and the complexity of imaging conditions. To address these challenges, we propose a novel approach called the Oriented Feature Pyramid Network (OFPN) that focuses on detecting rotated wheat heads by utilizing oriented bounding boxes. In order to facilitate the development and evaluation of our proposed method, we introduce a novel dataset named the Rotated Global Wheat Head Dataset (RGWHD). This dataset is constructed by manually annotating images from the Global Wheat Head Detection (GWHD) dataset with oriented bounding boxes. Furthermore, we incorporate a Path-aggregation and Balanced Feature Pyramid Network into our architecture to effectively extract both semantic and positional information from the input images. This is achieved by leveraging feature fusion techniques at multiple scales, enhancing the detection capabilities for small wheat heads. To improve the localization and detection accuracy of dense and overlapping wheat heads, we employ the Soft-NMS algorithm to filter the proposed bounding boxes. Experimental results indicate the superior performance of the OFPN model, achieving a remarkable mean average precision of 85.77% in oriented wheat head detection, surpassing six other state-of-the-art models. Moreover, we observe a substantial improvement in the accuracy of wheat head counting, with an accuracy of 93.97%. This represents an increase of 3.12% compared to the Faster R-CNN method. Both qualitative and quantitative results demonstrate the effectiveness of the proposed OFPN model in accurately localizing and counting wheat heads within various challenging scenarios.
Why it matches plant phenotyping methods小麦穂の検出・計数という植物器官形質の画像ベース推定手法を開発し、専用データセットを構築して性能評価しているため、方法が中心的である。
abstractwe propose a novel approach called the Oriented Feature Pyramid Network (OFPN) that focuses on detecting rotated wheat heads by utilizing oriented bounding boxes.
Reproduction assets foundThe paper introduces the RGWHD dataset (oriented-bounding-box annotations of GWHD wheat images), publicly released via Baidu pan with extraction code, and makes its experiment scripts publicly available on GitHub. The underlying GWHD image dataset (public on Kaggle) is the image source used for the paper's phenotyping.Dataset · publiction, Validation, Writing—original draft preparation. N.L.: Formal analysis, Resources, Project ad-ministration.C .F.: Investigation, Data curation. All authors have read and agreed to the published version of the manuscript.
Data availability
The datasets generated and analysed during the current study are available in RGWHD ( https://pan.baidu.com/s/1Fy3HpIfAeQhRef_ZuKu4iw ) and the extraction code is vbiy. The datasets generated during and/or analyzed during the current study areavailable from the corresponding author on reasonable request. The scripts to run all experiments are publicly available through our GitHub page https://github.com/cwr0821/OFPN .
Competing interests
The authors deOpen asset ↗RGWHDlines:445-520Code · publicdy are available in RGWHD ( https://pan.baidu.com/s/1Fy3HpIfAeQhRef_ZuKu4iw ) and the extraction code is vbiy. The datasets generated during and/or analyzed during the current study areavailable from the corresponding author on reasonable request. The scripts to run all experiments are publicly available through our GitHub page https://github.com/cwr0821/OFPN .
Competing interests
The authors declare no competing interests.
Footnotes
Publisher's note
Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
References
1. Sharma, S., Kooner, R., Arora, R., Insect pests and crop losses. Breeding insect resistant crops for suOpen asset ↗cwr0821/OFPNlines:445-520Dataset · public. The GWHD dataset is a comprehensive collection of well-annotated wheat head images, compiled by nine research institutions across seven countries. It serves as a valuable resource for training robust models to accurately estimate the location and density of wheat heads in seven categories. The GWHD dataset can be accessed at https://www.kaggle.com/competitions/global-wheat-detection/data . The SPIKE dataset comprises 335 images captured at three distinct growth stages, covering ten different wheat varieties. The UWHD dataset consists of 550 images captured by a drone at an altitude of 10 m. The ACID dataset consists of 520 images taken in controlled greenhouse conditions, featuring 4158 laOpen asset ↗lines:52-149Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Unmanned aerial vehicle (UAV)-based imagery has become widely used to collect time-series agronomic data, which are then incorporated into plant breeding programs to enhance crop improvements. To make efficient analysis possible, in this study, by leveraging an aerial photography dataset for a field trial of 233 different inbred lines from the maize diversity panel, we developed machine learning methods for obtaining automated tassel counts at the plot level. We employed both an object-based counting-by-detection (CBD) approach and a density-based counting-by-regression (CBR) approach. Using an image segmentation method that removes most of the pixels not associated with the plant tassels, the results showed a dramatic improvement in the accuracy of object-based (CBD) detection, with the cross-validation prediction accuracy ( r 2 ) peaking at 0.7033 on a detector trained with images with a filter threshold of 90. The CBR approach showed the greatest accuracy when using unfiltered images, with a mean absolute error (MAE) of 7.99. However, when using bootstrapping, images filtered at a threshold of 90 showed a slightly better MAE (8.65) than the unfiltered images (8.90). These methods will allow for accurate estimates of flowering-related traits and help to make breeding decisions for crop improvement.
Why it matches plant phenotyping methodsトウモロコシ雄穂を画像から自動計数し、画像セグメンテーションと2種類の機械学習手法の精度を検証する研究であり、植物表現型取得法が中心である。
abstractwe developed machine learning methods for obtaining automated tassel counts at the plot level.
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Supplement · publicThe following supporting information can be downloaded at: https://www.mdpi.com/article/10.3390/s24072172/s1 , Data S1 containing training images and annotations, Figures S1–S7.Open asset ↗10.3390/s24072172/s1lines:127-146Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
The Burkholderia glumae bacterium causes bacterial grain rot in rice, posing significant threats to the crop's yield, particularly thriving during the rice flowering and grain filling stages. This disease is especially evident in rice grains before harvest, presenting challenges in the detection and classification of rice panicles. Firstly, diseased grains may mix with healthy ones, complicating their separation. Secondly, the size of grains on a panicle varies from small to large, which can be problematic when detected using object detection methods. Thirdly, disease classification can be conducted by evaluating the extent of infection on rice panicles to assess its impact on yield. Finally, the challenges in detection, classification, and preprocessing for disease identification and management necessitate the adoption of diverse approaches in machine learning and deep learning to develop optimal methods and support smart agriculture.
Why it matches plant phenotyping methodsイネ穂・粒の病徴を画像で検出・分類するデータセットであり、植物の病害状態を推定するフェノタイピング用途が中心です。
titleGrain rot dataset caused by Burkholderia Glumae Bacteria.
Reproduction assets foundThis Data in Brief article describes its own publicly deposited rice grain rot image dataset (1528 annotated images, YOLO format) on Zenodo, with explicit direct URL and DOI, qualifying as a paper-specific public phenotyping image dataset.Dataset · publicrice fields in the Mekong Delta region using a mobile phone.
Data source location
Provinces in the Mekong Delta
Latitude: 10.063363, Longitude: 105.594339
Data accessibility
Repository name: Bacterial Grain Rot Dataset Caused by Burkholderia Glumae Bacteria
Data identification number: 10.5281/zenodo.10805462
Direct URL to data: https://zenodo.org/records/10805462
Guidance on retrieving this dataset: Individuals may obtain the dataset by downloading it from the provided link and then unzipping the files for use.
Related research article
Quach, Luyl-Da, et al. “Evaluating the Effectiveness of YOLO Models in Different Sized Object Detection and Feature-Based Classification of Small ObjectsOpen asset ↗zenodo · 10.5281/zenodo.10805462lines:1-57Code / dataset availability confirmedOpenAlex · Europe PMC · checked 7 Sept 2026
Introduction: ) serves as a vital staple crop that feeds over half the world's population. Optimizing rice breeding for increasing grain yield is critical for global food security. Heading-date-related or Flowering-time-related traits, is a key factor determining yield potential. However, traditional manual phenotyping methods for these traits are time-consuming and labor-intensive. Method: Here we show that aerial imagery from unmanned aerial vehicles (UAVs), when combined with deep learning-based panicle detection, enables high-throughput phenotyping of heading-date-related traits. We systematically evaluated various state-of-the-art object detectors on rice panicle counting and identified YOLOv8-X as the optimal detector. Results: Applying YOLOv8-X to UAV time-series images of 294 rice recombinant inbred lines (RILs) allowed accurate quantification of six heading-date-related traits. Utilizing these phenotypes, we identified quantitative trait loci (QTL), including verified loci and novel loci, associated with heading date. Discussion: Our optimized UAV phenotyping and computer vision pipeline may facilitate scalable molecular identification of heading-date-related genes and guide enhancements in rice yield and adaptation.
Why it matches plant phenotyping methodsUAV画像と深層学習によるイネ穂検出・計数を中核とし、出穂関連形質を高スループットに定量するフェノタイピング手法およびワークフローを評価・適用している。
abstractaerial imagery from unmanned aerial vehicles (UAVs), when combined with deep learning-based panicle detection, enables high-throughput phenotyping of heading-date-related traits
Reproduction assets foundThe article states that all relevant code for the UAV phenotyping and panicle detection pipeline is publicly available in the authors' GitHub repository r1cheu/phenocv. Other URLs (Ultralytics, COCO, WinQTLCart) are generic third-party tools, not paper-specific assets.Code · publicAll relevant code can be accessed at https://github.com/r1cheu/phenocv .Open asset ↗r1cheu/phenocvlines:317-328Code / dataset availability confirmedOpenAlex · Europe PMC · checked 7 Sept 2026
Abstract It is of great significance to study the plant morphological structure for improving crop yield and achieving efficient use of resources. Three dimensional (3D) information can more accurately describe the morphological and structural characteristics of crop plants. Automatic acquisition of 3D information is one of the key steps in plant morphological structure research. Taking wheat as the research object, we propose a point cloud data-driven 3D reconstruction method that achieves 3D structure reconstruction and plant morphology parameterization at the phytomer scale. Specifically, we use the MVS-Pheno platform to reconstruct the point cloud of wheat plants and segment organs through the deep learning algorithm. On this basis, we automatically reconstructed the 3D structure of leaves and tillers and extracted the morphological parameters of wheat. The results show that the semantic segmentation accuracy of organs is 95.2%, and the instance segmentation accuracy AP50 is 0.665. The R2 values for extracted leaf length, leaf width, leaf attachment height, stem leaf angle, tiller length, and spike length were 0.97, 0.80, 1.00, 0.95, 0.99, and 0.95, respectively. This method can significantly improve the accuracy and efficiency of 3D morphological analysis of wheat plants, providing strong technical support for research in fields such as agricultural production optimization and genetic breeding.
Why it matches plant phenotyping methods小麦の3D形態情報をMVS-Phenoと点群・深層学習で取得し、器官分割、形態パラメータ抽出、精度評価を行う手法研究であり、フェノタイピング手法が中心です。
abstractwe propose a point cloud data-driven 3D reconstruction method that achieves 3D structure reconstruction and plant morphology parameterization at the phytomer scale.
Reproduction assets foundThe paper's Data Availability statement explicitly states that the data and code used in the article are publicly available on GitHub at the authors' repository, which matches an allowed URL. This qualifies as a paper-specific public asset covering the wheat 3D reconstruction/phenotyping analysis.Code · publicThe data and code used in this article are available on GitHub, at https://github.com/lwlwr99/reconstruct-the-3D-morphological-structure-of-wheatOpen asset ↗lwlwr99/reconstruct-the-3D-morphological-structure-of-wheatlines:280-436Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Background Inflorescence properties such length, spikelet number, and their spatial distribution across the rachis, are fundamental indicators of seed productivity in grasses and have been a target of selection throughout domestication and crop improvement. However, quantifying such complex morphology is laborious, time-consuming, and commonly limited to human-perceived traits. These limitations can be exacerbated by unfavorable trait correlations between inflorescence architecture and seed yield that can be unconsciously selected for. Computer vision offers an alternative to conventional phenotyping, enabling higher throughput and reducing subjectivity. These approaches provide valuable insights into the determinants of seed yield, and thus, aid breeding decisions. Results Here, we described SpykProps, an inexpensive Python-based imaging system to quantify morphological properties in unilateral inflorescences, that was developed and tested on images of perennial grass (Lolium perenne L.) spikes. SpykProps is able to rapidly and accurately identify spikes (RMSE 2 = 0.96), and number of spikelets (R 2 = 0.61). It also quantifies color and shape from hundreds of interacting descriptors that are accurate predictors of architectural and agronomic traits such as seed yield potential (R 2 = 0.94), rachis weight (R 2 = 0.83), and seed shattering (R 2 = 0.85). Conclusions SpykProps is an open-source platform to characterize inflorescence architecture in a wide range of grasses. This imaging tool generates conventional and latent traits that can be used to better characterize developmental and agronomic traits associated with inflorescence architecture, and has applications in fields that include breeding, physiology, evolution, and development biology.
Why it matches plant phenotyping methodsイネ科花序の形態を画像から定量化するPythonベースの表現型解析パイプラインを開発・検証しており、植物表現型の取得・抽出が研究の中心である。
abstractHere, we described SpykProps, an inexpensive Python-based imaging system to quantify morphological properties in unilateral inflorescences
Reproduction assets foundThe paper's SpykProps Python pipeline is openly available on GitHub, and the original/processed spike images, data files, and analysis code are deposited in the University of Minnesota DRUM repository. Both are paper-specific, public, and actionable.Code · publicSpykProps is an open-source program that can be accessed from https://github.com/joanmanbar/SpykProps along with detailed instructions to analyze single spikes using a Python integrated development environment, or to automate it on a set of images using Bash and the SpykBatch.py function.Open asset ↗joanmanbar/SpykPropslines:69-75Dataset · publicAll the original and processed images, along with the data files and code to analyze them, can be accessed through the Data Repository for University of Minnesota (DRUM) at https://hdl.handle.net/11299/256105 .Open asset ↗Data Repository for University of Minnesota (DRUM) · 11299/256105lines:134-257Code / dataset availability confirmedOpenAlex · Europe PMC · checked 7 Sept 2026
BACKGROUND: Spike is the grain-bearing organ in cereal crops, which is a key proxy indicator determining the grain yield and quality. Machine learning methods for image analysis of spike-related phenotypic traits not only hold the promise for high-throughput estimating grain production and quality, but also lay the foundation for better dissection of the genetic basis for spike development. Barley (Hordeum vulgare L.) is one of the most important crops globally, ranking as the fourth largest cereal crop in terms of cultivated area and total yield. However, image analysis of spike-related traits in barley, especially based on CT-scanning, remains elusive at present. RESULTS: In this study, we developed a non-invasive, high-throughput approach to quantitatively measuring the multitude of spike architectural traits in barley through combining X-ray computed tomography (CT) and a deep learning model (UNet). Firstly, the spikes of 11 barley accessions, including 2 wild barley, 3 landraces and 6 cultivars were used for X-ray CT scanning to obtain the tomographic images. And then, an optimized 3D image processing method was used to point cloud data to generate the 3D point cloud images of spike, namely 'virtual' spike, which is then used to investigate internal structures and morphological traits of barley spikes. Furthermore, the virtual spike-related traits, such as spike length, grain number per spike, grain volume, grain surface area, grain length and grain width as well as grain thickness were efficiently and non-destructively quantified. The virtual values of these traits were highly consistent with the actual value using manual measurement, demonstrating the accuracy and reliability of the developed model. The reconstruction process took 15 min approximately, 10 min for CT scanning and 5 min for imaging and features extraction, respectively. CONCLUSIONS: This study provides an efficient, non-invasive and useful tool for dissecting barley spike architecture, which will contribute to high-throughput phenotyping and breeding for high yield in barley and other crops.
Why it matches plant phenotyping methodsX線CT、深層学習、3D画像処理を組み合わせ、オオムギ穂の形態・構造形質を定量化する高スループット表現型計測法を開発し、手動測定で検証しているため。
abstractwe developed a non-invasive, high-throughput approach to quantitatively measuring the multitude of spike architectural traits in barley through combining X-ray computed tomography (CT) and a deep learning model (UNet).
Reproduction assets foundThe authors explicitly state that all code and datasets for deep learning segmentation, prediction, and barley spike trait extraction are open-sourced on GitHub at the authors' repository, which is an allowed URL.Code · publicAll code and datasets pertaining to deep learning segmentation training, predicting and barley spike traits extraction is open-sourced on Github at https://github.com/zerosky010/CT_barley_spike_detection .Open asset ↗zerosky010/CT_barley_spike_detectionlines:160-268Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Rice ( Oryza sativa ) is an essential stable food for many rice consumption nations in the world and, thus, the importance to improve its yield production under global climate changes. To evaluate different rice varieties' yield performance, key yield-related traits such as panicle number per unit area (PNpM 2 ) are key indicators, which have attracted much attention by many plant research groups. Nevertheless, it is still challenging to conduct large-scale screening of rice panicles to quantify the PNpM 2 trait due to complex field conditions, a large variation of rice cultivars, and their panicle morphological features. Here, we present Panicle-Cloud, an open and artificial intelligence (AI)-powered cloud computing platform that is capable of quantifying rice panicles from drone-collected imagery. To facilitate the development of AI-powered detection models, we first established an open diverse rice panicle detection dataset that was annotated by a group of rice specialists; then, we integrated several state-of-the-art deep learning models (including a preferred model called Panicle-AI) into the Panicle-Cloud platform, so that nonexpert users could select a pretrained model to detect rice panicles from their own aerial images. We trialed the AI models with images collected at different attitudes and growth stages, through which the right timing and preferred image resolutions for phenotyping rice panicles in the field were identified. Then, we applied the platform in a 2-season rice breeding trial to valid its biological relevance and classified yield production using the platform-derived PNpM 2 trait from hundreds of rice varieties. Through correlation analysis between computational analysis and manual scoring, we found that the platform could quantify the PNpM 2 trait reliably, based on which yield production was classified with high accuracy. Hence, we trust that our work demonstrates a valuable advance in phenotyping the PNpM 2 trait in rice, which provides a useful toolkit to enable rice breeders to screen and select desired rice varieties under field conditions.
Why it matches plant phenotyping methodsイネ穂数という植物形質をドローン画像から定量化するAIプラットフォーム、データセット、検出モデルを開発・検証しており、表現型取得手法が研究の中心である。
abstractwe present Panicle-Cloud, an open and artificial intelligence (AI)-powered cloud computing platform that is capable of quantifying rice panicles from drone-collected imagery.
Reproduction assets foundThe paper's Data Availability statement provides a public GitHub releases page containing the authors' source code and the paper-specific DRPD dataset (5,372 annotated rice panicle subimages), plus a public cloud platform URL for panicle detection. These directly reproduce the paper's phenotyping measurements and are,Code · publicRelease page and source code can be found via https://github.com/changcaiyang/Panicle-AI/releases/; the DRPD dataset: 5,372 RGB subimages with annotate 259,498 panicles collected from 229 rice varieties can also be downloaded for the GitHub repository.Open asset ↗https://github.com/changcaiyang/Panicle-AI/releases/lines:230-241Dataset · publicthe DRPD dataset: 5,372 RGB subimages with annotate 259,498 panicles collected from 229 rice varieties can also be downloaded for the GitHub repositoryOpen asset ↗DRPDlines:230-241Code / dataset availability confirmedEurope PMC · Crossref · checked 7 Sept 2026
Rice is a vital food crop that feeds most of the global population. Cultivating high-yielding and superior-quality rice varieties has always been a critical research direction. Rice grain-related traits can be used as crucial phenotypic evidence to assess yield potential and quality. However, the analysis of rice grain traits is still mainly based on manual counting or various seed evaluation devices, which incur high costs in time and money. This study proposed a high-precision phenotyping method for rice panicles based on visible light scanning imaging and deep learning technology, which can achieve high-throughput extraction of critical traits of rice panicles without separating and threshing rice panicles. The imaging of rice panicles was realized through visible light scanning. The grains were detected and segmented using the Faster R-CNN-based model, and an improved Pix2Pix model cascaded with it was used to compensate for the information loss caused by the natural occlusion between the rice grains. An image processing pipeline was designed to calculate fifteen phenotypic traits of the on-panicle rice grains. Eight varieties of rice were used to verify the reliability of this method. The R 2 values between the extraction by the method and manual measurements of the grain number, grain length, grain width, grain length/width ratio and grain perimeter were 0.99, 0.96, 0.83, 0.90 and 0.84, respectively. Their mean absolute percentage error (MAPE) values were 1.65%, 7.15%, 5.76%, 9.13% and 6.51%. The average imaging time of each rice panicle was about 60 seconds, and the total time of data processing and phenotyping traits extraction was less than 10 seconds. By randomly selecting one thousand grains from each of the eight varieties and analyzing traits, it was found that there were certain differences between varieties in the number distribution of thousand-grain length, thousand-grain width, and thousand-grain length/width ratio. The results show that this method is suitable for high-throughput, non-destructive, and high-precision extraction of on-panicle grains traits without separating. Low cost and robust performance make it easy to popularize. The research results will provide new ideas and methods for extracting panicle traits of rice and other crops.
Why it matches plant phenotyping methodsイネ穂上粒の形態形質を画像・深層学習で抽出する手法を開発し、手動測定との比較で検証しており、表現型取得が研究の中心である。
abstractThis study proposed a high-precision phenotyping method for rice panicles based on visible light scanning imaging and deep learning technology
Reproduction assets foundThe paper's data availability statement explicitly points to a public GitHub repository (BME-PhenoTeam/Method-for-on-panicle-rice-grain-detection) hosting the study's datasets, which per the statement contain the paper's rice panicle images and phenotyping resources. No separate trained-model checkpoint or analysis URLDataset · publicThe datasets presented in this study can be found in online repositories. The names of the repository/repositories and accession number(s) can be found below: https://github.com/BME-PhenoTeam/Method-for-on-panicle-rice-grain-detection .Open asset ↗BME-PhenoTeam/Method-for-on-panicle-rice-grain-detectionlines:521-553Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
On-farm food loss (i.e., grade-out vegetables) is a difficult challenge in sustainable agricultural systems. The simplest method to reduce the number of grade-out vegetables is to monitor and predict the size of all individuals in the vegetable field and determine the optimal harvest date with the smallest grade-out number and highest profit, which is not cost-effective by conventional methods. Here, we developed a full pipeline to accurately estimate and predict every broccoli head size ( n > 3,000) automatically and nondestructively using drone remote sensing and image analysis. The individual sizes were fed to the temperature-based growth model and predicted the optimal harvesting date. Two years of field experiments revealed that our pipeline successfully estimated and predicted the head size of all broccolis with high accuracy. We also found that a deviation of only 1 to 2 days from the optimal date can considerably increase grade-out and reduce farmer's profits. This is an unequivocal demonstration of the utility of these approaches to economic crop optimization and minimization of food losses.
Why it matches plant phenotyping methodsドローンリモートセンシングと画像解析により、個々のブロッコリー頭部サイズを自動・非破壊推定するパイプラインを開発・検証しており、植物形質取得が中心的です。
abstractwe developed a full pipeline to accurately estimate and predict every broccoli head size ( n > 3,000) automatically and nondestructively using drone remote sensing and image analysis.
Reproduction assets foundThe authors' full phenotyping/analysis pipeline source code is publicly available on GitHub (UAVbroccoli). Original drone image data (224 GB for 2020, 72 GB for 2021) exist but are only available upon request via Google Drive. Generic tools (YOLOv5, BiSeNet, labelme, EasyIDP, scikit-image) are third-party libraries, soCode · publicurvey powered by ML/DL for sustainable agricultural development, there are some limitations to its use. First, our system is neither fully automated nor app-based; therefore, farmers without computer science backgrounds cannot use this system directly in their own fields. However, because the source code is open to the public ( https://github.com/UTokyo-FieldPhenomics-Lab/UAVbroccoli ), local agricultural institutes and agricultural companies are able to modify and use the system according to their target. This study is definitely not a one-stop solution, but is a pioneer in real agriculture applications. Second, unlike traditional manual methods with limited throughput, the proposed method Open asset ↗UTokyo-FieldPhenomics-Lab/UAVbroccolilines:291-292Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Phenotyping is used in plant breeding to identify genotypes with desirable characteristics, such as drought tolerance, disease resistance, and high-yield potentials. It may also be used to evaluate the effect of environmental circumstances, such as drought, heat, and salt, on plant growth and development. Wheat spike density measure is one of the most important agronomic factors relating to wheat phenotyping. Nonetheless, due to the diversity of wheat field environments, fast and accurate identification for counting wheat spikes remains one of the challenges. This study proposes a meticulously curated and annotated dataset, named as SPIKE-segm, taken from the publicly accessible SPIKE dataset, and an optimal instance segmentation approach named as WheatSpikeNet for segmenting and counting wheat spikes from field imagery. The proposed method is based on the well-known Cascade Mask RCNN architecture with model enhancements and hyperparameter tuning to provide state-of-the-art detection and segmentation performance. A comprehensive ablation analysis incorporating many architectural components of the model was performed to determine the most efficient version. In addition, the model's hyperparameters were fine-tuned by conducting several empirical tests. ResNet50 with Deformable Convolution Network (DCN) as the backbone architecture for feature extraction, Generic RoI Extractor (GRoIE) for RoI pooling, and Side Aware Boundary Localization (SABL) for wheat spike localization comprises the final instance segmentation model. With bbox and mask mean average precision (mAP) scores of 0.9303 and 0.9416, respectively, on the test set, the proposed model achieved superior performance on the challenging SPIKE datasets. Furthermore, in comparison with other existing state-of-the-art methods, the proposed model achieved up to a 0.41% improvement of mAP in spike detection and a significant improvement of 3.46% of mAP in the segmentation tasks that will lead us to an appropriate yield estimation from wheat plants.
Why it matches plant phenotyping methods小麦穂の圃場画像から穂をセグメンテーション・計数する画像解析手法と注釈付きデータセットを開発・評価しており、植物形質取得が研究の中心である。
abstractThis study proposes a meticulously curated and annotated dataset, named as SPIKE-segm, taken from the publicly accessible SPIKE dataset, and an optimal instance segmentation approach named as WheatSpikeNet for segmenting and counting wheat spikes from field imagery.
Reproduction assets foundThe paper's data availability statement explicitly deposits the authors' codebase and the curated SPIKE-segm wheat spike segmentation dataset in a public Figshare project, which qualifies as a paper-specific public asset. The Roboflow URL is only a cited generic tool and does not qualify.Dataset · publicThe codebase developed and the datasets presented in this study can be found in online repositories. The names of the repository/repositories and accession number(s) can be found below: https://figshare.com/projects/WheatSpikeNet_An_Improved_Wheat_Spike_Segmentation_Model_for_Accurate_Counting_from_Field_Imaging/163225 .Open asset ↗figshare · 163225lines:914-939Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Background: Inflorescence properties such length, spikelet number, and their spatial distribution across the rachis, are fundamental indicators of fitness and seed productivity in grasses, and have been a target of selection throughout domestication and crop improvement. However, quantifying such complex morphology is laborious, time-consuming, and commonly limited to human-perceived traits. These limitations can be exacerbated by unfavorable trait correlations between inflorescence architecture and seed yield that can be unconsciously selected for. Computer vision offers an alternative to conventional phenotyping, enabling higher throughput and reducing subjectivity. These approaches provide valuable insights into the determinants of seed yield, and thus, aid breeding decisions. Results Here, we described SpykProps, an inexpensive Python-based imaging system to quantify morphological properties in unilateral inflorescences, that was developed and tested on images of perennial grass ( Lolium perenne L.) spikes. SpykProps is able to rapidly and accurately identify spikes (RMSE < 1), estimate their length (R 2 = 0.96), and number of spikelets (R 2 = 0.61). It also quantifies color and shape from hundreds of interacting descriptors that are accurate predictors of architectural and agronomic traits such as seed yield potential (R 2 = 0.94), rachis weight (R 2 = 0.83), and seed shattering (R 2 = 0.85). Conclusions SpykProps is an open-source platform to characterize inflorescence architecture in a wide range of grasses. This imaging tool generates conventional and latent traits that can be used to better characterize developmental and agronomic traits associated with inflorescence architecture, and has applications in fields that include breeding, physiology, evolution, and development biology.
Why it matches plant phenotyping methodsイネ科花序の形態形質を画像から抽出するPythonベースの画像解析システムを開発・検証しており、植物フェノタイピング手法が研究の中心である。
abstractHere, we described SpykProps, an inexpensive Python-based imaging system to quantify morphological properties in unilateral inflorescences
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicSpykProps is an open-source program that can be accessed from https://github.com/joanmanbar/SpykProps along with detailed instructions to analyze single spikes using a Python integrated development environment, or to automate it on a set of images using Bash and the SpykBatch.py function.Open asset ↗joanmanbar/SpykPropslines:59-64Code / dataset availability confirmedEurope PMC · checked 15 Sept 2026
Background: Rapid and accurate detection of tassels is of great significance for maize breeding, seed production and the acquisition of key growth stage. To liberate manpower and improve the efficiency of production management, many automatic detection methods with acceptable accuracy have been proposed. However, images acquisition parameters of these methods were quite different, so they cannot provide an operable standard for practical applications. In this study, based on multi-temporal unmanned aerial vehicle (UAV) RGB images with maize flowering stage, we created UAV Maize Tassel Detection (UAVMTD) dataset, and used Faster R-CNN to answer what are the key factors affecting detection accuracy from two aspects of efficient use of samples and data acquisition standards. Based on the detection results, we estimated tasseling date of different plots and analyzed varieties’ differences. Results: The results show that model performance would not be greatly affected before the amount of training data changed by orders of magnitude, but it can be improved effectively by adjusting sub-images’ sizes, and the final model was selected with AP@0.5IOU was 0.916; images obtained at 12 pm were more suitable for tassels detection, AP@0.5IOU, recall and precision were 3%, 2% and 6% higher than that at 8 am; optimal spatial resolution was around 1cm for tassels detection by considering the recognition effect and data acquisition efficiency. Conclusions: This study analyzed key factors affecting maize tassels detection and provided a reasonable reference for future applications, which is helpful to screen out varieties from large-scale breeding materials.
Why it matches plant phenotyping methodsUAV画像によるトウモロコシ雄穂検出のデータセット構築、検出精度の検証、撮影条件の最適化を中心とする植物フェノタイピング研究である。
abstractwe created UAV Maize Tassel Detection (UAVMTD) dataset, and used Faster R-CNN to answer what are the key factors affecting detection accuracy
Reproduction assets foundThe paper's UAV maize tassel detection dataset (UAVMTD: 142 UAV RGB images, 28,182 labeled tassels) is explicitly stated to be publicly available on the authors' GitHub repository, which is an allowed URL. No separate analysis code or trained model checkpoints are explicitly deposited.Dataset · public1 Consent for publication
2 Not applicable.
3 Availability of data and materials
4 The dataset analyzed are available at: https://github.com/Xulizzz/UAVMTD
5 Competing interests
6 The authors declare that they have no known competing financial interests or personal
7 relationships that could have appeared to influence the work reported in this paper.
8 Funding
9 This work was supported by the National Key Research and Development Program of
10 China and Shandong Province, China(20Open asset ↗Xulizzz/UAVMTDpdf-layout-page:33 lines:1-49Code / dataset availability confirmedEurope PMC · checked 10 Sept 2026
Fusarium head blight (FHB) is one of the most prevalent wheat diseases, causing substantial yield losses and health risks. Efficient phenotyping of FHB is crucial for accelerating resistance breeding, but currently used methods are time-consuming and expensive. The present article suggests a noninvasive classification model for FHB severity estimation using red-green-blue (RGB) images, without requiring extensive preprocessing. The model accepts images taken from consumer-grade, low-cost RGB cameras and classifies the FHB severity into 6 ordinal levels. In addition, we introduce a novel dataset consisting of around 3,000 images from 3 different years (2020, 2021, and 2022) and 2 FHB severity assessments per image from independent raters. We used a pretrained EfficientNet (size b0), redesigned as a regression model. The results demonstrate that the interrater reliability (Cohen's kappa, κ ) is substantially lower than the achieved individual network-to-rater results, e.g., 0.68 and 0.76 for the data captured in 2020, respectively. The model shows a generalization effect when trained with data from multiple years and tested on data from an independent year. Thus, using the images from 2020 and 2021 for training and 2022 for testing, we improved the F1w score by 0.14, the accuracy by 0.11, κ by 0.12, and reduced the root mean squared error by 0.5 compared to the best network trained only on a single year's data. The proposed lightweight model and methods could be deployed on mobile devices to automatically and objectively assess FHB severity with images from low-cost RGB cameras. The source code and the dataset are available at https://github.com/cvims/FHB_classification.
Why it matches plant phenotyping methodsRGB画像からコムギ赤かび病の重症度を推定する分類モデルを開発し、複数年データで性能を検証した、中心的な画像ベース植物フェノタイピング研究です。
abstractThe present article suggests a noninvasive classification model for FHB severity estimation using red-green-blue (RGB) images
Reproduction assets foundThe authors explicitly state that the FHB RGB image dataset with annotations and the source code are publicly available via their GitHub repository.Dataset · publicAll images and corresponding annotations can be downloaded from the link provided in our GitHub repository: https://github.com/cvims/FHB_classification .Open asset ↗cvims/FHB_classificationlines:663-678Code · publicThe source code and the dataset are available at https://github.com/cvims/FHB_classification .Open asset ↗cvims/FHB_classificationlines:1-28Code / dataset availability confirmedCrossref · checked 15 Sept 2026
Fusarium ear rot (FER) is a common disease in maize caused by the pathogen Fusarium verticillioides. Because of the quantitative nature of the disease, scoring disease severity is difficult and nuanced, relying on various ways to quantify the damage caused by the pathogen. Towards the goal of designing a system with greater objectivity, reproducibility, and accuracy than subjective scores or estimations of the infected area, a system of semi-automated image acquisition and subsequent image analysis was designed. The tool created for image acquisition, “The Ear Unwrapper”, successfully obtained images of the full exterior of maize ears. A set of images produced from The Ear Unwrapper was then used as an example of how machine learning could be used to estimate disease severity from unannotated images. A high correlation (0.74) was found between the methods estimating the area of disease, but low correlations (0.47 and 0.28) were found between the number of infected kernels and the area of disease, indicating how different methods can result in contrasting severity scores. This study provides an example of how a simplified image acquisition tool can be built and incorporated into a machine learning pipeline to measure phenotypes of interest. We also present how the use of machine learning in image analysis can be adapted from open-source software to estimate complex phenotypes such as Fusarium ear rot.
Why it matches plant phenotyping methodsトウモロコシ雌穂の病徴画像取得装置と画像解析・機械学習による病害重症度推定を開発しており、表現型取得法が研究の中心である。
abstracta system of semi-automated image acquisition and subsequent image analysis was designed
Reproduction assets foundThe authors publicly deposited the codebase for The Ear Unwrapper image acquisition pipeline on GitHub, which is the paper-specific computational/hardware asset for this phenotyping study. The raw phenotype data (Supplemental Table S1) is hosted as an MDPI supplement rather than a separate repository, and the Ilastik/GCode · publiciculture–National Institute of Food and Agriculture Tactical Sciences for Agricultural Biosecurity
Institute of Food and Agricultural Sciences Project 13117320.
Data Availability Statement: The raw dataset used to generate these results can be found in Sup-
plemental Table S1. The codebase for The Ear Unwrapper can be found at (https://github.com/ohudson1/The-Ear-Unwrapper-.git (accessed on 24 May 2023)). All code used is open source and
code bases for both Ilastik (https://github.com/ilastik (accessed on 1 January 2023)).
Acknowledgments: Marcio Resende and the Sweetcorn Lab for assistance with the field trials.
Conflicts of Interest: The authors declare no conflict of interest.
AbbreviatioOpen asset ↗ohudson1/The-Ear-Unwrapper-pdf-raw-page:9 lines:1-50Code / dataset availability confirmedEurope PMC · OpenAlex · checked 14 Sept 2026
Data competitions have become a popular approach to crowdsource new data analysis methods for general and specialized data science problems. Data competitions have a rich history in plant phenotyping, and new outdoor field datasets have the potential to embrace solutions across research and commercial applications. We developed the Global Wheat Challenge as a generalization competition in 2020 and 2021 to find more robust solutions for wheat head detection using field images from different regions. We analyze the winning challenge solutions in terms of their robustness when applied to new datasets. We found that the design of the competition had an influence on the selection of winning solutions and provide recommendations for future competitions to encourage the selection of more robust solutions.
Why it matches plant phenotyping methods圃場画像からコムギ穂を検出・計数するモデルのチャレンジ設計と、異なるデータセットへの頑健性評価を中心に扱うため、画像ベースの表現型解析手法・ベンチマーク研究に該当します。
abstractWe developed the Global Wheat Challenge as a generalization competition in 2020 and 2021 to find more robust solutions for wheat head detection using field images from different regions.
Reproduction assets foundThe paper's wheat head detection analysis relies on two paper-specific public assets: the Global Wheat Head Dataset 2021 (annotated field RGB images used for training/testing the challenge solutions) openly deposited on Zenodo, and the winning challenge solutions' code made open-source on GitHub. Both have explicit, inDataset · publiccquisition. W.G., F.B., and I.S. participated in the design of the challenges and data analysis. All authors participated in the writing of the paper. Competing interes ts: The authors declare that there is no conflict of interest regarding the publication of this article.
Data Availability
The GWHD 2021 can be downloaded here: https://zenodo.org/record/5092309#.YrvsTBXP2Uk
Supplementary Materials
Supplementary 1
Sections S1 to S4
Figs. S1 to S2
Tables S1 to S3
References [ 45 , 46 ]
Click here for additional data file.
References
1.
Gao
H , Barbier
G , Goolsby
R
.
Harnessing the crowdsourcing power of social media for disaster relief
. IEEE Intell Syst . 2011 ; 26 ( 3 ): 10 – 14 .
2.
Prill
Open asset ↗Zenodo · 5092309lines:381-537Code / dataset availability confirmedOpenAlex · Europe PMC · checked 14 Sept 2026
As one of the most consumed stable foods around the world, wheat plays a crucial role in ensuring global food security. The ability to quantify key yield components under complex field conditions can help breeders and researchers assess wheat’s yield performance effectively. Nevertheless, it is still challenging to conduct large-scale phenotyping to analyse canopy-level wheat spikes and relevant performance traits, in the field and in an automated manner. Here, we present CropQuant-Air, an AI-powered software system that combines state-of-the-art deep learning (DL) models and image processing algorithms to enable the detection of wheat spikes and phenotypic analysis using wheat canopy images acquired by low-cost drones. The system includes the YOLACT-Plot model for plot segmentation, an optimised YOLOv7 model for quantifying the spike number per m2(SNpM2) trait, and performance-related trait analysis using spectral and texture features at the canopy level. Besides using our labelled dataset for model training, we also employed the Global Wheat Head Detection dataset to incorporate varietal features into the DL models, facilitating us to perform reliable yield-based analysis from hundreds of varieties selected from main wheat production regions in China. Finally, we employed the SNpM2and performance traits to develop a yield classification model using the Extreme Gradient Boosting (XGBoost) ensemble and obtained significant positive correlations between the computational analysis results and manual scoring, indicating the reliability of CropQuant-Air. To ensure that our work could reach wider researchers, we created a graphical user interface for CropQuant-Air, so that non-expert users could readily use our work. We believe that our work represents valuable advances in yield-based field phenotyping and phenotypic analysis, providing useful and reliable toolkits to enable breeders, researchers, growers, and farmers to assess crop-yield performance in a cost-effective approach.
Why it matches plant phenotyping methodsドローン画像からコムギ穂数や収量関連形質を抽出・検証するAIソフトウェア/表現型解析システムが研究の中心であり、植物フェノタイピング手法に該当する。
abstractwe present CropQuant-Air, an AI-powered software system that combines state-of-the-art deep learning (DL) models and image processing algorithms to enable the detection of wheat spikes and phenotypic analysis using wheat canopy images acquired by low-cost drones.
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicThe testing datasets, Jupyter notebook, and CropQuant-Air software used in this paper are available at the Zhou lab’s GitHub repository: https://github.com/The-Zhou-Lab/CropQuant-Air/releases/tag/v1.0Open asset ↗The-Zhou-Lab/CropQuant-Air · v1.0lines:469-479Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Plant architecture plays a major role in flowering and therefore in crop yield. Attempts to visualize and analyse strawberry plant architecture have been few to date. Here, we developed open-source software combining two- and three-dimensional representations of plant development over time along with statistical methods to explore the variability in spatio-temporal development of plant architecture in cultivated strawberry. We applied this software to six seasonal strawberry varieties whose plants were exhaustively described monthly at the node scale. Results showed that the architectural pattern of the strawberry plant is characterized by a decrease of the module complexity between the zeroth-order module (primary crown) and higher-order modules (lateral branch crowns and extension crowns). Furthermore, for each variety, we could identify traits with a central role in determining yield, such as date of appearance and number of branches. By modeling the spatial organization of axillary meristem fate on the zeroth-order module using a hidden hybrid Markov/semi-Markov mathematical model, we further identified three zones with different probabilities of production of branch crowns, dormant buds, or stolons. This open-source software will be of value to the scientific community and breeders in studying the influence of environmental and genetic cues on strawberry architecture and yield.
Why it matches plant phenotyping methodsイチゴ植物体の時空間的な構造形質を取得・解析するオープンソースソフトウェアを開発しており、表現型取得・解析手法が研究の中心である。
abstractwe developed open-source software combining two- and three-dimensional representations of plant development over time along with statistical methods to explore the variability in spatio-temporal development of plant architecture in cultivated strawberry.
Reproduction assets foundThe paper's strawberry architectural phenotype data (MTG-encoded plant descriptions) are publicly deposited in the authors' GitHub repository, and the OpenAlea.Strawberry analysis/visualization software is open-source on GitHub with a Docker image for deployment. The data.inrae.fr deposits contain only a demonstration,Dataset · publicAll data are available at Github: https://github.com/openalea/strawberry/tree/master/share/dataOpen asset ↗https://github.com/openalea/strawberry/tree/master/share/datalines:406-468Code · publicFirst, OpenAlea.Strawberry is an open-source Python package ( https://github.com/openalea/strawberry ), available in the OpenAlea platformOpen asset ↗https://github.com/openalea/strawberrylines:337-344Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Background: The cereal spike is the main harvested plant organ determining the grain yield and quality, and its dissection provides the basis to estimate yield- and quality-related traits, such as grain number per spike and kernel weight. Phenotypic detection of spike architecture has potential for genetic improvement of yield and quality. However, manual collection and analysis of phenotypic data is laborious, time-consuming, low-throughput and destructive. Results We used a barley model to develop a non-invasive, high-throughput approach through combining X-ray computed tomography (CT) and deep learning model (UNet) to phenotype spike architectural traits. We used an optimized 3D image processing methods by point cloud for analyzing internal structure and quantifying morphological traits of barley spikes. The volume and surface area of grains per spike can be determined efficiently, which is hard to be measured manually. The UNet model was trained based on two types of spikes (wheat cultivar D3 and two-row barley variety S17350), and the best model accurately predicted grain characteristics from CT images. The spikes of ten barley varieties were analyzed and classified into three categories, namely wild barley, barley cultivars and barley landraces. The results showed that modern cultivated barley has shorter but thicker grains with larger volume and higher yield compared to wild barley. The X-ray CT reconstruction and phenotype extraction pipeline needed only 5 minutes per spike for imaging and traits extracting. Conclusions The combination of X-ray CT scans and a deep learning model could be a useful tool in breeding for high yield in cereal crops, and optimized 3D image processing methods could be valuable means of phenotypic traits calculation.
Why it matches plant phenotyping methodsX線CT、深層学習、3D画像処理を組み合わせ、オオムギ穂の内部形態・粒形質を非破壊かつ高スループットに抽出する手法を開発しており、フェノタイピング手法が研究の中心である。
abstractWe used a barley model to develop a non-invasive, high-throughput approach through combining X-ray computed tomography (CT) and deep learning model (UNet) to phenotype spike architectural traits.
Reproduction assets foundThe authors explicitly state that all code and datasets for deep learning segmentation, prediction, and barley spike trait extraction are open-sourced on GitHub at the allowed URL.Code · publicAvailability of data and materials: All code and datasets pertaining to deep learning segmentation training, predicting and barley spike traits extraction is open-sourced on Github at https://github.com/zerosky010/CT_detection_barley_spike_python.Open asset ↗zerosky010/CT_detection_barley_spike_pythonlines:99-131Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Background Phenotypic plasticity is defined as the phenotypic variation of a trait when an organism is exposed to different environments, and it is closely related to genotype. Exploring the genetic basis behind the phenotypic plasticity of ear traits in maize is critical to achieve climate-stable yields, particularly given the unpredictable effects of climate change. Performing genetic field studies in maize requires development of a fast, reliable, and automated system for phenotyping large numbers of samples. Results Here, we develop MAIZTRO as an automated maize ear phenotyping platform for high-throughput measurements in the field. Using this platform, we analyze 15 common ear phenotypes and their phenotypic plasticity variation in 3819 transgenic maize inbred lines targeting 717 genes, along with the wild type lines of the same genetic background, in multiple field environments in two consecutive years. Kernel number is chosen as the primary target phenotype because it is a key trait for improving the grain yield and ensuring yield stability. We analyze the phenotypic plasticity of the transgenic lines in different environments and identify 34 candidate genes that may regulate the phenotypic plasticity of kernel number. Conclusions Our results suggest that as an integrated and efficient phenotyping platform for measuring maize ear traits, MAIZTRO can help to explore new traits that are important for improving and stabilizing the yield. This study indicates that genes and alleles related with ear trait plasticity can be identified using transgenic maize inbred populations.
Why it matches plant phenotyping methodsMAIZTROという自動化・高スループットのトウモロコシ穂形質フェノタイピング基盤の開発と適用が研究の中心であり、複数の穂形質を測定する方法論的貢献が明示されている。
abstractwe develop MAIZTRO as an automated maize ear phenotyping platform for high-throughput measurements in the field.
Reproduction assets foundThe paper deposits its maize ear phenotyping data and analysis code publicly: ear image data on Zenodo (7796696), R scripts on Zenodo (7792895), and scripts/data on GitHub (liumiguo/paper_ear_pp_code) under GPL-3.0.Code · publicThe scripts and data used in this study are available under a GPL-3.0 license in Github: https://github.com/liumiguo/paper_ear_pp_code.git [ 50 ]Open asset ↗GitHub · liumiguo/paper_ear_pp_codelines:145-221Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Background The flowering period is a critical time for the growth of rape plants. Counting rape flower clusters can help farmers to predict the yield information of the corresponding rape fields. However, counting in-field is a time-consuming and labor-intensive task. To address this, we explored a deep learning counting method based on unmanned aircraft vehicle (UAV). The proposed method developed the in-field counting of rape flower clusters as a density estimation problem. It is different from the object detection method of counting the bounding boxes. The crucial step of the density map estimation using deep learning is to train a deep neural network that maps from an input image to the corresponding annotated density map. Results We explored a rape flower cluster counting network series: RapeNet and RapeNet+. A rectangular box labeling-based rape flower clusters dataset (RFRB) and a centroid labeling-based rape flower clusters dataset (RFCP) were used for network model training. To verify the performance of RapeNet series, the paper compares the counting result with the real values of manual annotation. The average accuracy (Acc), relative root mean square error (rrMSE) and [Formula: see text] of the metrics are up to 0.9062, 12.03 and 0.9635 on the dataset RFRB, and 0.9538, 5.61 and 0.9826 on the dataset RFCP, respectively. The resolution has little influence for the proposed model. In addition, the visualization results have some interpretability. Conclusions Extensive experimental results demonstrate that the RapeNet series outperforms other state-of-the-art counting approaches. The proposed method provides an important technical support for the crop counting statistics of rape flower clusters in field.
Why it matches plant phenotyping methodsUAV-RGB画像から菜種の花房数という植物器官形質を推定する深層学習手法を開発・評価しており、フェノタイピング手法が中心である。
abstractwe explored a deep learning counting method based on unmanned aircraft vehicle (UAV).
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicThe codes, datasets RFRB and RFCP used in the study are available online at: https://github.com/CV-Wang/RapeNet .Open asset ↗CV-Wang/RapeNetlines:216-232Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Background: To successfully breed any plant for disease resistance, an accurate method of phenotyping disease severity is crucial. Fusarium ear rot (FER) is a common disease of maize ( Zea mays ) caused by the pathogen Fusarium verticillioides (Sacc.) Nirenberg (synonym F. moniliforme Sheldon, teleomorph Gibberella moniliformis Wineland). Because of the quantitative nature of the disease, scoring disease severity is difficult and nuanced, relying on various ways to quantify damage caused by the pathogen. Towards the goal of designing a system with greater objectivity, reproducibility, and accuracy than subjective scores or estimations of area damaged, a system of semi-automated image acquisition and subsequent image analysis was designed. Results The tool created for image acquisition, “The Ear Unwrapper”, successfully obtains images of the full exterior of maize ears in roughly 10 seconds. To “unwrap” each ear of maize, the approach was to rotate the ear around its axis (the cob) and using a camera, take a continuous set of images of a single row of pixels and merge them to form one image. A set of images produced from The Ear Unwrapper were used to produce a probabilistic pixel classification model for predicting disease severity from unannotated images. The system was deliberately constructed using open-source software and off-the-shelf parts so that the image acquisition and analysis pipeline is adaptable for quantifying other maize ear pathogens, morphologies, and phenotypes. The data obtained from The Ear Unwrapper was correlated with two other phenotyping methods for validation and comparison and showed that the output from the system was reasonably accurate to determine lesion size. Conclusions This study provides an example of how a simplified image acquisition machine can be built and incorporated into a machine learning pipeline to measure phenotypes of interest. Here, The Ear Unwrapper was built to image ears of maize, but other cylindrical objects can also be “unwrapped” to obtain a single image of the object’s exterior. We also present how the use of machine learning in image analysis can be adapted from open-source software to estimate complex phenotypes, here, disease severity of Fusarium Ear Rot.
Why it matches plant phenotyping methodsトウモロコシ雌穂の画像取得と機械学習による病害重症度推定を開発し、他の表現型測定法との検証・比較も行っており、植物フェノタイピング手法が研究の中心である。
abstracta system of semi-automated image acquisition and subsequent image analysis was designed.
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicThe software used to obtain the data used in this study can be found at the Github link: https://github.com/ohudson1/The-Ear-Unwrapper-.gitOpen asset ↗ohudson1/The-Ear-Unwrapper-lines:113-137Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
Deep learning has shown potential in domains with large-scale annotated datasets. However, manual annotation is expensive, time-consuming, and tedious. Pixel-level annotations are particularly costly for semantic segmentation in images with dense irregular patterns of object instances, such as in plant images. In this work, we propose a method for developing high-performing deep learning models for semantic segmentation of such images utilizing little manual annotation. As a use case, we focus on wheat head segmentation. We synthesize a computationally annotated dataset-using a few annotated images, a short unannotated video clip of a wheat field, and several video clips with no wheat-to train a customized U-Net model. Considering the distribution shift between the synthesized and real images, we apply three domain adaptation steps to gradually bridge the domain gap. Only using two annotated images, we achieved a Dice score of 0.89 on the internal test set. When further evaluated on a diverse external dataset collected from 18 different domains across five countries, this model achieved a Dice score of 0.73. To expose the model to images from different growth stages and environmental conditions, we incorporated two annotated images from each of the 18 domains to further fine-tune the model. This increased the Dice score to 0.91. The result highlights the utility of the proposed approach in the absence of large-annotated datasets. Although our use case is wheat head segmentation, the proposed approach can be extended to other segmentation tasks with similar characteristics of irregularly repeating patterns of object instances.
Why it matches plant phenotyping methods植物画像から穂を抽出するセマンティックセグメンテーション手法を開発し、複数データセットで性能検証しているため、植物フェノタイピング手法が中心である。
abstractwe propose a method for developing high-performing deep learning models for semantic segmentation of such images utilizing little manual annotation.
Reproduction assets foundThe paper's wheat head segmentation study provides two paper-specific public assets: the dataset (video frames, synthesized images, manual annotations) hosted on the authors' USask FTP server, and the authors' image synthesis pipeline code on GitHub. Both have explicit availability statements with public URLs.Dataset · publicThe data used for this study is available at https://www.cs.usask.ca/ftp/pub/whs/ .Open asset ↗lines:52-63Code · publicThe code used for image synthesis is available at https://github.com/KeyhanNajafian/ImageSimulatorPipeline .Open asset ↗lines:64-77Code / dataset availability confirmedEurope PMC · checked 7 Sept 2026
There is limited information regarding the morphometric relationships of panicle traits in oat (Avena sativa) and their contribution to phenology and growth, physiology, and pathology traits important for yield. To model panicle growth and development and identify genomic regions associated with corresponding traits, 10 diverse spring oat mapping populations (n = 2,993) were evaluated in the field and 9 genotyped via genotyping-by-sequencing. Representative panicles from all progeny individuals, parents, and check lines were scanned, and images were analyzed using manual and automated techniques, resulting in over 60 unique panicle, rachis, and spikelet variables. Spatial modeling and days to heading were used to account for environmental and phenological variances, respectively. Panicle variables were intercorrelated, providing reproducible archetypal and growth models. Notably, adult plant resistance for oat crown rust was most prominent for taller, stiff stalked plants having a more open panicle structure. Within and among family variance for panicle traits reflected the moderate-to-high heritability and mutual genome-wide associations (hotspots) with numerous high-effect loci. Candidate genes and potential breeding applications are discussed. This work adds to the growing genetic resources for oat and provides a unique perspective on the genetic basis of panicle architecture in cereal crops.
Why it matches plant phenotyping methodsオート麦の穂をスキャンし、手動・自動画像解析で60以上の形態形質を抽出して、再現可能な成長・形態モデルを構築している。遺伝解析を含むが、画像ベースの穂形態計測と解析ワークフローが主要な貢献である。
abstractRepresentative panicles from all progeny individuals, parents, and check lines were scanned, and images were analyzed using manual and automated techniques, resulting in over 60 unique panicle, rachis, and spikelet variables.
Reproduction assets foundThe paper's Data Availability statement deposits the paper-specific phenotype dataset (Supplementary Dataset 1), panicle image dataset (Supplementary Dataset 2), and R analysis code on Zenodo under DOI 10.5281/zenodo.7011302, which is an allowed URL. This directly reproduces the paper's panicle phenotyping measurementsCode · publicSupplementary Dataset 1 (phenotypes), Supplementary Dataset 2 (panicle images), R code, and corresponding metadata are available online at https://zenodo.org/ , registered under: https://doi.org/10.5281/zenodo.7011302 .Open asset ↗zenodo.org · 10.5281/zenodo.7011302lines:747-785Code / dataset availability confirmedEurope PMC · checked 15 Sept 2026
Flowering is a crucial developing stage for rapeseed ( Brassica napus L.) plants. Flowers develop on the main and branch inflorescences of rapeseed plants and then grow into siliques. The seed yield of rapeseed heavily depends on the total flower numbers per area throughout the whole flowering period. The number of rapeseed inflorescences can reflect the richness of rapeseed flowers and provide useful information for yield prediction. To count rapeseed inflorescences automatically, we transferred the counting problem to a detection task. Then, we developed a low-cost approach for counting rapeseed inflorescences using YOLOv5 with the Convolutional Block Attention Module (CBAM) based on unmanned aerial vehicle (UAV) Red-Green-Blue (RGB) imagery. Moreover, we constructed a Rapeseed Inflorescence Benchmark (RIB) to verify the effectiveness of our model. The RIB dataset captured by DJI Phantom 4 Pro V2.0, including 165 plot images and 60,000 manual labels, is to be released. Experimental results showed that indicators R 2 for counting and the mean Average Precision (mAP) for location were over 0.96 and 92%, respectively. Compared with Faster R-CNN, YOLOv4, CenterNet, and TasselNetV2+, the proposed method achieved state-of-the-art counting performance on RIB and had advantages in location accuracy. The counting results revealed a quantitative dynamic change in the number of rapeseed inflorescences in the time dimension. Furthermore, a significant positive correlation between the actual crop yield and the automatically obtained rapeseed inflorescence total number on a field plot level was identified. Thus, a set of UAV- assisted methods for better determination of the flower richness was developed, which can greatly support the breeding of high-yield rapeseed varieties.
Why it matches plant phenotyping methodsUAV RGB画像と深層学習を用いてナタネの花序数を自動計数する手法を開発し、ベンチマークデータセットで検証しているため、植物表現型取得が中心である。
abstractwe developed a low-cost approach for counting rapeseed inflorescences using YOLOv5 with the Convolutional Block Attention Module (CBAM) based on unmanned aerial vehicle (UAV) Red-Green-Blue (RGB) imagery.
Reproduction assets foundThe paper's Rapeseed Inflorescence Benchmark (RIB) — 165 UAV RGB plot images with 60,000 manual inflorescence labels used for the counting model — is stated as publicly available at the authors' GitHub repository. The YOLOv5 repository is a generic third-party library, not a paper-specific asset.Dataset · publicg. Considering the insufficient data of the whole flowering period, we will increase the sampling frequency in flowering period to better fit the change curve of the number of rapeseed inflorescences in future work.
Data availability statement
Publicly available datasets were analyzed in this study. This data can be found here: https://github.com/LYLWYH/Rapeseed-Data .
Author contributions
All authors made significant contributions to this manuscript. JL, YL, and JQ performed field data collection and wrote the manuscript. JQ and LL designed the experiment. JY, XW, and GL provided suggestions on the experiment design. All authors read and approved the final manuscript.
Acknowledgments
A larOpen asset ↗LYLWYH/Rapeseed-Datalines:437-471Code / dataset availability confirmedEurope PMC · checked 8 Sept 2026
Background Virtual plants can simulate the plant growth and development process through computer modeling, which assists in revealing plant growth and development patterns. Virtual plant visualization technology is a core part of virtual plant research. The major limitation of the existing plant growth visualization models is that the produced virtual plants are not realistic and cannot clearly reflect plant color, morphology and texture information. Results This study proposed a novel trait-to-image crop visualization tool named CropPainter, which introduces a generative adversarial network to generate virtual crop images corresponding to the given phenotypic information. CropPainter was first tested for virtual rice panicle generation as an example of virtual crop generation at the organ level. Subsequently, CropPainter was extended for visualizing crop plants (at the plant level), including rice, maize and cotton plants. The tests showed that the virtual crops produced by CropPainter are very realistic and highly consistent with the input phenotypic traits. The codes, datasets and CropPainter visualization software are available online. Conclusion In conclusion, our method provides a completely novel idea for crop visualization and may serve as a tool for virtual crops, which can assist in plant growth and development research.
Why it matches plant phenotyping methods与えられた表現型情報から作物画像を生成するGANベースの手法とソフトウェアを開発しており、植物表現型の可視化・再現が研究の中心である。
abstractThis study proposed a novel trait-to-image crop visualization tool named CropPainter, which introduces a generative adversarial network to generate virtual crop images corresponding to the given phenotypic information.
Reproduction assets foundThe paper explicitly states that supplementary files including datasets, trained models, software, and source code are publicly available at the authors' HZAU plant phenotyping download site and a GitHub repository. These directly reproduce the paper's phenotyping datasets and CropPainter analysis.Code · publicSupplementary files for this article, which include datasets, trained models, software as well as the source codes used in this study, are available on website: http://plantphenomics.hzau.edu.cn/usercrop/Rice/download and https://github.com/zhwang-hzau/CropPainter-master .Open asset ↗zhwang-hzau/CropPainter-masterlines:157-211Code / dataset availability confirmedarXiv · OpenAlex · checked 15 Sept 2026
In this paper, we present a method for creating high-quality 3D models of sorghum panicles for phenotyping in breeding experiments. This is achieved with a novel reconstruction approach that uses seeds as semantic landmarks in both 2D and 3D. To evaluate the performance, we develop a new metric for assessing the quality of reconstructed point clouds without having a ground-truth point cloud. Finally, a counting method is presented where the density of seed centers in the 3D model allows 2D counts from multiple views to be effectively combined into a whole-panicle count. We demonstrate that using this method to estimate seed count and weight for sorghum outperforms count extrapolation from 2D images, an approach used in most state of the art methods for seeds and grains of comparable size.
Why it matches plant phenotyping methodsソルガム穂の3D再構成と種子計数という植物形質取得手法を開発し、再構成品質評価指標と種子数・重量推定を検証しており、フェノタイピング手法が中心である。
abstractwe present a method for creating high-quality 3D models of sorghum panicles for phenotyping in breeding experiments
Reproduction assets foundThe paper's authors publicly release their sorghum panicle stereo-image dataset (camera poses, human-labeled seed segmentations, panicle weights, seed counts) via the CMU AIIRA resources page, which is an allowed URL.Dataset · publicection, some unremoved husks were counted as seeds by the counting machine despite manual efforts to separate seeds from husks. We expect the effect on the ground truth to be small. The stereo images, camera poses, human-labeled seed segmentations, panicle weights, and human-counted seed counts can be found in our dataset 3 3
3
https://labs.ri.cmu.edu/aiira/resources/ .
Figure 8: (a) 100 sorghum panicles from 10 different sorghum species. (b) Our data collection system, a stereo camera attached to the UR5 robot arm. (c) Seeds were manually stripped and (d) counted using a seed counting machine.
IV-B 3D Reconstruction Quality
We assess the effectiveness of our approach with ablation tests usiOpen asset ↗lines:141-165Code / dataset availability confirmedOpenAlex · Europe PMC · checked 14 Sept 2026
Unmanned aerial vehicle (UAV)-based imagery has become widely used in collecting agronomic traits, enabling a much greater volume of data to be generated in a time-series manner. As one of the cutting-edge imagery analysis tools, machine learning-based object detection provides automated techniques to analyze these imagery data. In our previous study, UAVs have been used to collect aerial photography for field trials of 233 diverse inbred lines, grown under different nitrogen treatments. Images were collected during different plant developmental stages throughout the growing season. This dataset of images has here been used in developing machine learning techniques to obtain automated tassel counts at the plot level through the season. To improve detection accuracy, we have developed an image segmentation method to remove non-tassel pixels and then feed these filtered images into machine learning algorithms. As a result, our method showed a significant improvement in the accuracy of maize tassel detection. This method can be used in future research to produce time-series counts of tassels at the plot level, and will allow for accurate estimates of flowering-related traits, such as the earliest detected flowering date and the duration of each plot's flowering period. This phenotypic data and the trait-associated genes provide new opportunities for crop improvement and to facilitate future plant breeding.
Why it matches plant phenotyping methodsUAV画像からトウモロコシの雄穂数と開花関連形質を自動推定する画像分割・機械学習手法の開発が中心であり、植物表現型測定法に該当する。
abstractThis dataset of images has here been used in developing machine learning techniques to obtain automated tassel counts at the plot level through the season.
Reproduction assets foundThe paper's UAV imagery, plot-level images, and metadata are publicly deposited in CyVerse under DOI 10.25739/4t1v-ab64, per the Data Availability Statement. No author analysis code or trained model checkpoints are reported as publicly available.Dataset · publicThe original UAV images, the clipped plot-level images, and the associated metadata used in this study
have been deposited in CyVerse (10.25739/4t1v-ab64).Open asset ↗CyVerse · 10.25739/4t1v-ab64pdf-raw-page:5 lines:1-39Code / dataset availability confirmedEurope PMC · checked 8 Sept 2026
Image processing and analysis based on deep learning are becoming mainstream and increasingly accessible for solving various scientific problems in diverse fields. However, it requires advanced computer programming skills and a basic familiarity with character user interfaces (CUIs). Consequently, programming beginners face a considerable technical hurdle. Because potential users of image analysis are experimentalists, who often use graphical user interfaces (GUIs) in their daily work, there is a need to develop GUI-based easy-to-use deep learning software to support their work. Here, we introduce JustDeepIt, a software written in Python, to simplify object detection and instance segmentation using deep learning. JustDeepIt provides both a GUI and a CUI. It contains various functional modules for model building and inference, and it is built upon the popular PyTorch, MMDetection, and Detectron2 libraries. The GUI is implemented using the Python library FastAPI, simplifying model building for various deep learning approaches for beginners. As practical examples of JustDeepIt, we prepared four case studies that cover critical issues in plant science: (1) wheat head detection with Faster R-CNN, YOLOv3, SSD, and RetinaNet; (2) sugar beet and weed segmentation with Mask R-CNN; (3) plant segmentation with U 2 -Net; and (4) leaf segmentation with U 2 -Net. The results support the wide applicability of JustDeepIt in plant science applications. In addition, we believe that JustDeepIt has the potential to be applied to deep learning-based image analysis in various fields beyond plant science.
Why it matches plant phenotyping methods植物画像の物体検出・インスタンスセグメンテーションを行うソフトウェア自体が中心で、植物科学での検証例も含むため、植物フェノタイピング手法として含める。
abstractHere, we introduce JustDeepIt, a software written in Python, to simplify object detection and instance segmentation using deep learning.
Reproduction assets foundThe paper's authors publicly deposited their analysis software JustDeepIt (the tool used for all four plant phenotyping case studies) on GitHub under an MIT License, and the data availability statement confirms the original contributions are available there.Code · publicThe source code is deposited in GitHub at https://github.com/biunit/JustDeepIt under an MIT License.Open asset ↗biunit/JustDeepItlines:277-285Code / dataset availability confirmedCrossref · checked 13 Sept 2026
Three-dimensional (3D) laser point cloud technology is an important research method in the field of agricultural remote sensing research. The collection and processing technology of terrestrial light detection and ranging (LiDAR) point cloud of crops has greatly promoted the integration of agricultural informatization and intelligence. In a smart farmland based on 3D modern agriculture, the manager can efficiently and conveniently achieve the growth status of crops through the point cloud collection system and processing model integrated in the smart agricultural system. To this end, we took field maize as the research object in this study and processed four sets of field maize point clouds, named Maize-01, Maize-02, Maize-03, and Maize-04, respectively. In this research, we established a field individual maize segmentation model with the density-based clustering algorithm (DBSCAN) as the core, and four groups of field maize were used as research objects. Among them, the value of the overall accuracy (OA) index, which was used to evaluate the comprehensive performance of the model, were 0.98, 0.97, 0.95, and 0.94. Secondly, the multi-condition identification method was used to separate different maize organ point clouds from the individual maize point cloud. In addition, the organ stratification model of field maize was established. In this organ stratification study, we take Maize-04 as the research object and obtained the recognition accuracy rates of four maize organs: tassel, stalk, ear, and leaf at 96.55%, 100%, 100%, and 99.12%, respectively. We also finely segmented the leaf organ obtained from the above-mentioned maize organ stratification model into each leaf individual again. We verified the accuracy of the leaf segmentation method with the leaf length as the representative. In the linear analysis of predicted values of leaf length, R2 was 0.73, RMSE was 0.12 m, and MAE was 0.07 m. In this study, we examined the segmentation of individual crop fields and established 3D information interpretations for crops in the field as well as for crop organs. Results visualized the real scene of the field, which is conducive to analyzing the response mechanism of crop growth and development to various complex environmental factors.
Why it matches plant phenotyping methods圃場トウモロコシのLiDAR点群から個体・器官・葉を分割し、葉長を推定・検証する手法が研究の中心であり、再利用可能な植物表現型抽出ワークフローに該当する。
abstractwe established a field individual maize segmentation model with the density-based clustering algorithm (DBSCAN) as the core
Reproduction assets foundThe paper's Data Availability Statement explicitly deposits the authors' PCL/C++ segmentation and stratification code at a public GitHub repository matching an allowed URL. The maize point cloud dataset is also stated to be online at scidb.cn, but the full dataset URL does not exactly match any allowed_urls entry, so aCode · publicThe main PCL/C++ code in this paper are available online at
https://github.com/1117ismore/HZAU-Segmentation-Stratification-pcd.gitOpen asset ↗HZAU-Segmentation-Stratification-pcdpdf-page:18 lines:1-56Code / dataset availability confirmedEurope PMC · Crossref · checked 8 Sept 2026
Corn is an important human food crop and animal feed source. Purity of corn seed is critical to yield and marketing. Screening of corn ears is an important but time-consuming and labor-intensive task in seed production. In recent years, deep learning has made great achievements in tasks such as image classification, object detection, face recognition, etc. In this paper , a method combining convolutional neural network VGG16 and machine vision to quickly classify different varieties of corn using corn ear images is proposed. By collecting RGB images of corn ears with intact phenotypic traits of 5 varieties, a data set containing 1000 images was constructed, and divided into training set, validation set and test set according to the ratio of 7:2:1. By improving the fully connected layer structure of the VGG16 network, optimizing the training parameters, and using transfer learning and data enhancement techniques, the optimal performance model was obtained after training all layers of the VGG16, and the accuracy rate reached 98.00% on the test set. Under the same experimental conditions, comparing the three methods of training from scratch, pre-feature extraction and only training the fully connected layer, the accuracy rates obtained were 94.00%, 96.88%, and 94.00%, respectively. The improved model achieved the highest classification accuracy rate and stable performance. In the experiments, the effects of network parameters on the model classification results were also discussed. The experiment showed that the phenotypic characteristics of the corn ears could better realize the classification and identification of different varieties of corn, which provides a reference for the intelligent sorting of corn seed production.
Why it matches plant phenotyping methodsトウモロコシ穂の画像から品種を分類・識別する機械視覚とCNN手法の開発が中心で、植物器官の表現型特徴を用いた再利用可能な解析ワークフローである。
abstracta method combining convolutional neural network VGG16 and machine vision to quickly classify different varieties of corn using corn ear images is proposed.
Reproduction assets foundThe preprint's Data Availability Statement deposits the paper's own corn ear image dataset (1000 RGB images of 5 varieties used for VGG16 classification) on Mendeley Data with a public DOI, making it a paper-specific, publicly actionable phenotyping image dataset.Dataset · publicThe datasets generated and/or analysed during the current study are available in the [Xu, jinpu (2022), “five_corn_ears”, Mendeley Data, V2,] repository, http://dx.doi.org/10.17632/hb3hbsz6t9.1Open asset ↗Mendeley Data · 10.17632/hb3hbsz6t9.1lines:382-409Code / dataset availability confirmedEurope PMC · checked 8 Sept 2026
Background Characterizing plant genetic resources and their response to the environment through accurate measurement of relevant traits is crucial to genetics and breeding. Spatial organization of the maize ear provides insights into the response of grain yield to environmental conditions. Current automated methods for phenotyping the maize ear do not capture these spatial features. Results We developed EARBOX, a low-cost, open-source system for automated phenotyping of maize ears. EARBOX integrates open-source technologies for both software and hardware that facilitate its deployment and improvement for specific research questions. The imaging platform consists of a customized box in which ears are repeatedly imaged as they rotate via motorized rollers. With deep learning based on convolutional neural networks, the image analysis algorithm uses a two-step procedure: ear-specific grain masks are first created and subsequently used to extract a range of trait data per ear, including ear shape and dimensions, the number of grains and their spatial organisation, and the distribution of grain dimensions along the ear. The reliability of each trait was validated against ground-truth data from manual measurements. Moreover, EARBOX derives novel traits, inaccessible through conventional methods, especially the distribution of grain dimensions along grain cohorts, relevant for ear morphogenesis, and the distribution of abortion frequency along the ear, relevant for plant response to stress, especially soil water deficit. Conclusions The proposed system provides robust and accurate measurements of maize ear traits including spatial features. Future developments include grain type and colour categorisation. This method opens avenues for high-throughput genetic or functional studies in the context of plant adaptation to a changing environment.
Why it matches plant phenotyping methodsトウモロコシ雌穂の画像取得・深層学習による形質抽出システムを開発し、手動測定との比較で各形質の信頼性を検証しており、植物フェノタイピング手法が研究の中心です。
abstractWe developed EARBOX, a low-cost, open-source system for automated phenotyping of maize ears.
Reproduction assets foundThe authors' full analysis pipeline (MATLAB GUI plus Python deep-learning code for grain segmentation and phenotypic trait extraction) is explicitly stated to be fully available on a public GitHub repository. The phenotype datasets themselves are only available on request, so they do not qualify as public assets.Code · publicThe code for the analysis using a Graphical User Interface in MATLAB is fully available on a public repository ( https://github.com/Phymea-Systems/Earbox ). It is used in combination with a Python code applying the trained neural network to extract the DL2 images, also available in the same public repository.Open asset ↗Phymea-Systems/Earboxlines:104-113Code / dataset availability confirmedOpenAlex · Europe PMC · checked 8 Sept 2026
High-throughput phenotyping of yield-related traits is meaningful and necessary for rice breeding and genetic study. The conventional method for rice yield-related trait evaluation faces the problems of rice threshing difficulties, measurement process complexity, and low efficiency. To solve these problems, a novel intelligent system, which includes an integrated threshing unit, grain conveyor-imaging units, threshed panicle conveyor-imaging unit, and specialized image analysis software has been proposed to achieve rice yield trait evaluation with high throughput and high accuracy. To improve the threshed panicle detection accuracy, the Region of Interest Align, Convolution Batch normalization activation with Leaky Relu module, Squeeze-and-Excitation unit, and optimal anchor size have been adopted to optimize the Faster-RCNN architecture, termed 'TPanicle-RCNN,' and the new model achieved F1 score 0.929 with an increase of 0.044, which was robust to indica and japonica varieties. Additionally, AI cloud computing was adopted, which dramatically reduced the system cost and improved flexibility. To evaluate the system accuracy and efficiency, 504 panicle samples were tested, and the total spikelet measurement error decreased from 11.44 to 2.99% with threshed panicle compensation. The average measuring efficiency was approximately 40 s per sample, which was approximately twenty times more efficient than manual measurement. In this study, an automatic and intelligent system for rice yield-related trait evaluation was developed, which would provide an efficient and reliable tool for rice breeding and genetic research.
Why it matches plant phenotyping methodsイネの収量関連形質を高スループットに取得する統合計測・画像解析システムを開発し、検出精度と測定効率を検証しているため、植物フェノタイピング手法が中心である。
abstracta novel intelligent system, which includes an integrated threshing unit, grain conveyor-imaging units, threshed panicle conveyor-imaging unit, and specialized image analysis software has been proposed to achieve rice yield trait evaluation with high throughput and high accuracy.
Reproduction assets foundThe article explicitly states that all threshed panicle training and testing data (1,072 threshed panicle images with PASCAL VOC annotations, augmented to 3,432 training and 856 testing images) are publicly available via a Baidu Netdisk link with an extraction code for non-commercial research. This is a paper-specific,Dataset · publicAll the training and testing data are available at https://pan.baidu.com/s/1-XawHGseIc5bboVOP48Fkw?pwd=153w with the extraction code ‘153w’ for non-commercial research purposes.Open asset ↗pan.baidu.com · 1-XawHGseIc5bboVOP48Fkw?pwd=153wlines:330-340Code / dataset availability confirmedEurope PMC · checked 8 Sept 2026
Canopy photosynthesis is the sum of photosynthesis of all above-ground photosynthetic tissues. Quantitative roles of nonfoliar tissues in canopy photosynthesis remain elusive due to methodology limitations. Here, we develop the first complete canopy photosynthesis model incorporating all above-ground photosynthetic tissues and validate this model on wheat with state-of-the-art gas exchange measurement facilities. The new model precisely predicts wheat canopy gas exchange rates at different growth stages, weather conditions, and canopy architectural perturbations. Using the model, we systematically study (1) the contribution of both foliar and nonfoliar tissues to wheat canopy photosynthesis and (2) the responses of wheat canopy photosynthesis to plant physiological and architectural changes. We found that (1) at tillering, heading, and milking stages, nonfoliar tissues can contribute ~4, ~32, and ~50% of daily gross canopy photosynthesis ( A cgross ; ~2, ~15, and ~-13% of daily net canopy photosynthesis, A cnet ) and absorb ~6, ~42, and ~60% of total light, respectively; (2) under favorable condition, increasing spike photosynthetic activity, rather than enlarging spike size or awn size, can enhance canopy photosynthesis; (3) covariation in tissue respiratory rate and photosynthetic rate may be a major factor responsible for less than expected increase in daily A cnet ; and (4) in general, erect leaves, lower spike position, shorter plant height, and proper plant densities can benefit daily A cnet . Overall, the model, together with the facilities for quantifying plant architecture and tissue gas exchange, provides an integrated platform to study canopy photosynthesis and support rational design of photosynthetically efficient wheat crops.
Why it matches plant phenotyping methods小麦の葉・非葉器官・群落の光合成と植物体構造を定量する統合モデルを開発し、ガス交換測定施設で検証しているため、植物フェノタイピング手法が研究の中心である。
abstractHere, we develop the first complete canopy photosynthesis model incorporating all above-ground photosynthetic tissues and validate this model on wheat with state-of-the-art gas exchange measurement facilities.
Reproduction assets foundThe paper explicitly states that the source code and user manual for the 3dCAP-wheat framework (used for plant architecture extraction, 3D reconstruction, ray tracing, and canopy photosynthesis computation) are freely available on GitHub at the authors' public URL.Code · publicSource code used for this study, together with the user manual, are freely available for noncommercial use at https://github.com/rootchang/3dCAP-wheat .Open asset ↗rootchang/3dCAP-wheatlines:162-298Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Cauliflower, a winter seasoned vegetable that originated in the Mediterranean region and arrived in Europe at the end of the 15th century, takes the lead in production among all vegetables. It's high in fiber and can keep us hydrated, and have medicinal properties like the chemical glucosinolates, which may help prevent cancer. If proper care is not given to the plants, several significant diseases can affect the plants, reducing production, quantity, and quality. Plant disease monitoring by hand is extremely tough because it demands a great deal of effort and time. Early detection of the diseases allows the agriculture sector to grow cauliflower more efficiently. In this scenario, an insightful and scientific dataset can be a lifesaver for researchers looking to analyze and observe different diseases in cauliflower development patterns. So, in this work, we present a well-organized and technically valuable dataset "VegNet' to effectively recognize conditions in cauliflower plants and fruits. Healthy and disease-affected cauliflower head and leaves by black rot,downy mildew, and bacterial spot rot are included in our suggested dataset. The images were taken manually from December 20th to January 15th, when the flowers were fully blown, and most of the diseases were observed clearly. It is a well-organized dataset to develop and validate machine learning-based automated cauliflower disease detection algorithms. The dataset is hosted by the Institute - National Institute of Textile Engineering and Research (NITER),the Department of Computer Science and Engineering and is available at the link following: https://data.mendeley.com/datasets/t5sssfgn2v/3.
Why it matches plant phenotyping methodsカリフラワーの病害状態を画像で識別するためのデータセットを構築・提供しており、植物の病害表現型取得が研究の中心である。
abstractwe present a well-organized and technically valuable dataset "VegNet' to effectively recognize conditions in cauliflower plants and fruits.
Reproduction assets foundThe paper is a data descriptor for VegNet, a public dataset of cauliflower disease images hosted on Mendeley Data with an explicit permanent identifier and direct link, directly reproducing the paper's plant image measurements.Dataset · publicrly. It is a well-organized dataset to develop and validate machine learning-based automated cauliflower disease detection algorithms. The dataset is hosted by the Institute – National Institute of Textile Engineering and Research (NITER),the Department of Computer Science and Engineering and is available at the link following: https://data.mendeley.com/datasets/t5sssfgn2v/3 .
Keywords: Computer vision system, Agriculture, Feature extraction, Machine learning
status released display-pdf yes is-olf no is-manuscript no is-preprint no is-journal-matter no is-scanned no is-retracted no
Received 2022 May 5; Revised 2022 Jun 8; Accepted 2022 Jun 21; Collection date 2022 Aug.
Specifications Table
SOpen asset ↗lines:1-47Code / dataset availability confirmedEurope PMC · checked 15 Sept 2026
Counting wheat heads is a time-consuming process in agricultural production, which is currently primarily carried out by humans. Manually identifying wheat heads and statistically analyzing the findings has a rigorous requirement for the workforce and is prone to error. With the advancement of machine vision technology, computer vision detection algorithms have made wheat head detection and counting feasible. To accomplish this traditional labor-intensive task and tackle various tricky matters in wheat images, a high-precision wheat head detection model with strong generalizability was presented based on a one-stage network structure. The model's structure was referred to as that of the YOLO network; meanwhile, several modules were added and adjusted in the backbone network. The one-stage backbone network received an attention module and a feature fusion module, and the Loss function was improved. When compared to various other mainstream object detection networks, our model outperforms them, with a mAP of 0.688. In addition, an iOS-based intelligent wheat head counting mobile app was created, which could calculate the number of wheat heads in images shot in an agricultural environment in less than a second.
Why it matches plant phenotyping methodsコムギ穂数という植物器官形質を画像から検出・計数するモデルを開発し、性能比較とモバイルアプリ化まで行っており、表現型取得手法が研究の中心である。
abstracta high-precision wheat head detection model with strong generalizability was presented based on a one-stage network structure.
Reproduction assets foundThe paper's wheat head detection model was trained and evaluated on the public Global Wheat Head Detection dataset hosted on Kaggle, which directly provides the plant-phenotyping images and bounding-box annotations used in this study. No authors' code or trained model repository is disclosed; the Data Availability onlyDataset · publicThe data set used in this study was retrieved from the Global Wheat Head data set (Kaggle, 2020 ).Open asset ↗Kagglelines:40-55Code / dataset availability confirmedEurope PMC · checked 8 Sept 2026
The number of wheat spikes per unit area is one of the most important agronomic traits associated with wheat yield. However, quick and accurate detection for the counting of wheat spikes faces persistent challenges due to the complexity of wheat field conditions. This work has trained a RetinaNet (SpikeRetinaNet) based on several optimizations to detect and count wheat spikes efficiently. This RetinaNet consists of several improvements. First, a weighted bidirectional feature pyramid network (BiFPN) was introduced into the feature pyramid network (FPN) of RetinaNet, which could fuse multiscale features to recognize wheat spikes in different varieties and complicated environments. Then, to detect objects more efficiently, focal loss and attention modules were added. Finally, soft non-maximum suppression (Soft-NMS) was used to solve the occlusion problem. Based on these improvements, the new network detector was created and tested on the Global Wheat Head Detection (GWHD) dataset supplemented with wheat-wheatgrass spike detection (WSD) images. The WSD images were supplemented with new varieties of wheat, which makes the mixed dataset richer in species. The method of this study achieved 0.9262 for mAP50, which improved by 5.59, 49.06, 2.79, 1.35, and 7.26% compared to the state-of-the-art RetinaNet, single-shot multiBox detector (SSD), You Only Look Once version3 (Yolov3), You Only Look Once version4 (Yolov4), and faster region-based convolutional neural network (Faster-RCNN), respectively. In addition, the counting accuracy reached 0.9288, which was improved from other methods as well. Our implementation code and partial validation data are available at https://github.com/wujians122/The-Wheat-Spikes-Detecting-and-Counting.
Why it matches plant phenotyping methods小麦穂の検出・計数という植物形質を対象に、改良した画像解析モデルを開発し、データセット上で性能検証しているため、フェノタイピング手法が中心である。
abstractThis work has trained a RetinaNet (SpikeRetinaNet) based on several optimizations to detect and count wheat spikes efficiently.
Reproduction assets foundThe authors explicitly state that their implementation code and partial validation data for the SpikeRetinaNet wheat spike detection/counting method are publicly available on GitHub. Other referenced repositories (COCO Annotator, YOLOv5, LabelImg) are generic third-party tools, not paper-specific assets.Code · publicOur implementation code and partial validation data are available at https://github.com/wujians122/The-Wheat-Spikes-Detecting-and-Counting .Open asset ↗wujians122/The-Wheat-Spikes-Detecting-and-Countinglines:227-316Code / dataset availability confirmedEurope PMC · checked 8 Sept 2026
Wheat head detection can measure wheat traits such as head density and head characteristics. Standard wheat breeding largely relies on manual observation to detect wheat heads, yielding a tedious and inefficient procedure. The emergence of affordable camera platforms provides opportunities for deploying computer vision (CV) algorithms in wheat head detection, enabling automated measurements of wheat traits. Accurate wheat head detection, however, is challenging due to the variability of observation circumstances and the uncertainty of wheat head appearances. In this work, we propose a simple but effective idea-dynamic color transform (DCT)-for accurate wheat head detection. This idea is based on an observation that modifying the color channel of an input image can significantly alleviate false negatives and therefore improve detection results. DCT follows a linear color transform and can be easily implemented as a dynamic network. A key property of DCT is that the transform parameters are data-dependent such that illumination variations can be corrected adaptively. The DCT network can be incorporated into any existing object detectors. Experimental results on the Global Wheat Detection Dataset (GWHD) 2021 show that DCT can achieve notable improvements with negligible overhead parameters. In addition, DCT plays an important role in our solution participating in the Global Wheat Challenge (GWC) 2021, where our solution ranks the first on the initial public leaderboard, with an Average Domain Accuracy (ADA) of 0.821, and obtains the runner-up reward on the final private testing set, with an ADA of 0.695.
Why it matches plant phenotyping methods小麦穂の画像検出による形質取得を目的とし、照明変動に対応する動的色変換ネットワークを開発・評価しているため、植物フェノタイピング手法が中心である。
abstractIn this work, we propose a simple but effective idea-dynamic color transform (DCT)-for accurate wheat head detection.
Reproduction assets foundThe paper's experiments are performed on the GWHD 2021 wheat head detection dataset, which the authors explicitly state is publicly available at the Zenodo record. This is the phenotyping image/annotation dataset directly used for the paper's measurements. No authors' analysis code or trained model checkpoints are madeDataset · publicThe GWHD 2021 dataset is available at https://zenodo.org/record/5092309 .Open asset ↗zenodo · 5092309lines:327-432Code / dataset availability confirmedEurope PMC · checked 8 Sept 2026
RiceLaboratory / benchtopLiDAR / point cloudPanicle / ear / spikeSegmentation
The automated measurement of crop phenotypic parameters is of great significance to the quantitative study of crop growth. The segmentation and classification of crop point cloud help to realize the automation of crop phenotypic parameter measurement. At present, crop spike-shaped point cloud segmentation has problems such as fewer samples, uneven distribution of point clouds, occlusion of stem and spike, disorderly arrangement of point clouds, and lack of targeted network models. The traditional clustering method can realize the segmentation of the plant organ point cloud with relatively independent spatial location, but the accuracy is not acceptable. This paper first builds a desktop-level point cloud scanning apparatus based on a structured-light projection module to facilitate the point cloud acquisition process. Then, the rice ear point cloud was collected, and the rice ear point cloud data set was made. In addition, data argumentation is used to improve sample utilization efficiency and training accuracy. Finally, a 3D point cloud convolutional neural network model called Panicle-3D was designed to achieve better segmentation accuracy. Specifically, the design of Panicle-3D is aimed at the multiscale characteristics of plant organs, combined with the structure of PointConv and long and short jumps, which accelerates the convergence speed of the network and reduces the loss of features in the process of point cloud downsampling. After comparison experiments, the segmentation accuracy of Panicle-3D reaches 93.4%, which is higher than PointNet. Panicle-3D is suitable for other similar crop point cloud segmentation tasks.
Why it matches plant phenotyping methodsイネ穂の3D点群を取得・データセット化し、器官分割による表現型パラメータ測定のための装置と専用ニューラルネットワークを開発・評価しており、表現型取得・抽出手法が中心である。
abstractThe automated measurement of crop phenotypic parameters is of great significance to the quantitative study of crop growth.
Reproduction assets foundThe authors explicitly state that the Python code of the point cloud dataset and the Panicle-3D model is publicly available on GitHub, providing a paper-specific, actionable asset for the rice panicle point cloud segmentation analysis.Code · publicThe Python code of the point cloud dataset and model is available on Github at https://github.com/gitDux/Panicle-3D .Open asset ↗gitDux/Panicle-3Dlines:86-247Code / dataset availability confirmedEurope PMC · checked 15 Sept 2026
The rice seed setting rate (RSSR) is an important component in calculating rice yields and a key phenotype for its genetic analysis. Automatic calculations of RSSR through computer vision technology have great significance for rice yield predictions. The basic premise for calculating RSSR is having an accurate and high throughput identification of rice grains. In this study, we propose a method based on image segmentation and deep learning to automatically identify rice grains and calculate RSSR. By collecting information on the rice panicle, our proposed image automatic segmentation method can detect the full grain and empty grain, after which the RSSR can be calculated by our proposed rice seed setting rate optimization algorithm (RSSROA). Finally, the proposed method was used to predict the RSSR during which process, the average identification accuracy reached 99.43%. This method has therefore been proven as an effective, non-invasive method for high throughput identification and calculation of RSSR. It is also applicable to soybean yields, as well as wheat and other crops with similar characteristics.
Why it matches plant phenotyping methods画像セグメンテーションと深層学習によりイネ籾の充実・不稔を識別し、種子登熟率という植物形質を自動・高スループット推定する手法が研究の中心である。
abstractThis method has therefore been proven as an effective, non-invasive method for high throughput identification and calculation of RSSR.
Reproduction assets foundThe paper's rice panicle image dataset used for seed setting rate phenotyping is publicly deposited on Kaggle per the Data Availability Statement. No author analysis code or trained model checkpoints are explicitly deposited; supplementary material contains only figures/tables, not datasets or code.Dataset · publicice researchers to obtain RSSR information more efficiently and accurately, which will be a reliable method for further estimating rice yield.
Data Availability Statement
The datasets presented in this study can be found in online repositories. The names of the repository/repositories and accession number(s) can be found below: https://www.kaggle.com/soberguo/riceseedsettingrate .
Author Contributions
YG: formal analysis, investigation, methodology, visualization, and writing—original draft. SL: supervision and validation. YL, ZH, and ZZ: project administration and resources. DX: writing—review and editing and funding acquisition. QC: writing—review and editing, funding acquisition, and resoOpen asset ↗Kaggle · soberguo/riceseedsettingratelines:555-571Code / dataset availability confirmedEurope PMC · checked 9 Sept 2026
Determining the grain yield potential contributed by grain number is a step towards advancing the yield of cereal crops. To achieve this aim, it is pivotal to recognize the maximum yield potential (MYP) of the crop. In barley (Hordeum vulgare L.), the MYP is defined as the maximum spikelet primordia number of a spike. Many barley studies assumed the awn primordium (AP) stage to be the MYP stage regardless of genotypes and growth conditions. From our spikelet-tracking experiments using the two-rowed cultivar Bowman, we found that the MYP stage can be different from the AP stage. Importantly, we find that the occurrence of inflorescence meristem deformation and its loss of activity coincided with the MYP stage, indicating the end of further spikelet initiation. Thus, we recommend validating the barley MYP stage with the shape of the inflorescence meristem and propose this approach (named 'spikelet stop') for MYP staging. To clarify the relevance of AP and MYP stages, we compared the MYP stage and the MYP in 27 barley accessions (two- and six-rowed accessions) grown in the greenhouse and in the field. Our results reveal that the MYP stage can be reached at various developmental stages, which greatly depend on the genotype and growth conditions. Furthermore, we propose that the MYP stage and the time to reach the MYP stage can be used to determine yield potential in barley. Based on our findings, we suggest key steps for the identification of the MYP stage in barley that may also be applied in a related crop such as wheat.
Why it matches plant phenotyping methods花序メリステムの形状と活動停止から最大収量ポテンシャル段階を判定する「spikelet stop」手法を提案・検証しており、植物発達形質の取得法が中心である。
abstractThus, we recommend validating the barley MYP stage with the shape of the inflorescence meristem and propose this approach (named 'spikelet stop') for MYP staging.
Reproduction assets foundThe paper's spikelet-tracking phenotype data (spikelet ridge numbers, Waddington stages, GDDs, grain numbers for Bowman experiments and the 27-accession panel) are openly deposited in the Dryad Digital Repository, as stated in the Data availability statement.Dataset · publicThe data that support the findings of this study are openly available in Dryad Digital Repository at https://doi.org/10.5061/dryad.ffbg79cth ; Thirulogachandar and Schnurbusch, (2021) .Open asset ↗Dryad Digital Repository · 10.5061/dryad.ffbg79cthlines:71-101Code / dataset availability confirmedOpenAlex · Crossref · Europe PMC · checked 14 Sept 2026
Spectroscopic methods can contribute to addressing the field phenotyping bottleneck problem in crop breeding programs. In disease resistance phenotyping, spectral signatures can be analysed to derive infection severity scores and to screen breeding lines. Hyperspectra of winter wheat spikes were acquired in a Fusarium head blight phenotyping trial at the milk- and wax-ripening phenological phases. Disease severity ratings were simultaneously performed by an expert on a 9-point visual scale. Ordinal support vector machine models were then trained to assign hill plots to the individual severity levels. The predictive models' performance was evaluated for data collection timing, spectral pre-processing and permitted rating-error tolerance. The models trained to spectra acquired at the milk-ripening phase were sufficiently accurate to reliably distinguish between low, medium and high symptom severity; with accuracy approaching 100% for two-point error tolerance. However, deterioration in prediction quality was noted for the wax-ripening campaign, presumably due to spike-drying. After aggregation of the spectra using the median function no gain could be associated with further pre-processing. Modest performance improvements obtained with two schemes do not justify the additional data acquisition costs involved, but standard normal variate could be advantageous for some scenarios with mean-aggregated spectra. In addition to phenotyping, the results are discussed in relation to large-scale farming applications. Elevated infection risk detection prior to anthesis is recommended for fungicide treatment, considering the pathogen biology. The study is accompanied by a publicly-available dataset and the computational scripts employed to obtain the results.
Why it matches plant phenotyping methodsスペクトル測定と機械学習によりコムギ赤かび病の感染重症度を推定し、収集時期・前処理・誤差許容度を評価しているため、植物表現型取得法の検証・応用が中心です。
abstractSpectroscopic methods can contribute to addressing the field phenotyping bottleneck problem in crop breeding programs.
Reproduction assets foundThe authors deposited the paper's spectral phenotyping dataset (hyperspectra of winter wheat spikes, visual symptom scores) together with the computational analysis scripts and a GNU Guix environment specification in a public Zenodo repository, explicitly excluding only the unused hyperspectral image cubes.Dataset · publicl., 2018), with the scheme, plant health deterioration is associated with less
_
pre-registration form (Zelazny et al., 2020) hosted by the pronounced features, except for the longest wavelengths,
Center of Open Science. The dataset is available from a Zen- where the relationship is reversed. This pre-processing
odo repository (https://doi.org/10.5281/zenodo.4536881), accentuated the effect of the infection on the left shoulder
excluding the hyperspectral data cubes because of their of the NIR plateau. All of these patterns occurred also after
excessive size and the fact that they were not analysed. transforming mean-aggregated spectra (Supplement S2).
The analysis was coded in the R languOpen asset ↗Zenodo · 10.5281/zenodo.4536881pdf-layout-page:6 lines:1-49Code / dataset availability confirmedOpenAlex · Crossref · Europe PMC · checked 14 Sept 2026
BACKGROUND: Maize cobs are an important component of crop yield that exhibit a high diversity in size, shape and color in native landraces and modern varieties. Various phenotyping approaches were developed to measure maize cob parameters in a high throughput fashion. More recently, deep learning methods like convolutional neural networks (CNNs) became available and were shown to be highly useful for high-throughput plant phenotyping. We aimed at comparing classical image segmentation with deep learning methods for maize cob image segmentation and phenotyping using a large image dataset of native maize landrace diversity from Peru. RESULTS: Comparison of three image analysis methods showed that a Mask R-CNN trained on a diverse set of maize cob images was highly superior to classical image analysis using the Felzenszwalb-Huttenlocher algorithm and a Window-based CNN due to its robustness to image quality and object segmentation accuracy ([Formula: see text]). We integrated Mask R-CNN into a high-throughput pipeline to segment both maize cobs and rulers in images and perform an automated quantitative analysis of eight phenotypic traits, including diameter, length, ellipticity, asymmetry, aspect ratio and average values of red, green and blue color channels for cob color. Statistical analysis identified key training parameters for efficient iterative model updating. We also show that a small number of 10-20 images is sufficient to update the initial Mask R-CNN model to process new types of cob images. To demonstrate an application of the pipeline we analyzed phenotypic variation in 19,867 maize cobs extracted from 3449 images of 2484 accessions from the maize genebank of Peru to identify phenotypically homogeneous and heterogeneous genebank accessions using multivariate clustering. CONCLUSIONS: Single Mask R-CNN model and associated analysis pipeline are widely applicable tools for maize cob phenotyping in contexts like genebank phenomics or plant breeding.
Why it matches plant phenotyping methodsトウモロコシ穂の画像セグメンテーションと8形質の自動定量を目的とする手法開発・比較検証および高スループット解析パイプラインの構築が中心である。
abstractWe aimed at comparing classical image segmentation with deep learning methods for maize cob image segmentation and phenotyping
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicDeep learning model and manuals with codes for custom detections and model updating: https://gitlab.com/kjschmidlab/deepcob .Open asset ↗gitlab · kjschmidlab/deepcoblines:182-229Code / dataset availability confirmedEurope PMC · OpenAlex · checked 14 Sept 2026
The growth and the harvestability of a broccoli crop is monitored by the size of the broccoli head. This size estimation is currently done by humans, and this is inconsistent and expensive. The goal of our work was to develop a software algorithm that can estimate the size of field-grown broccoli heads based on RGB-Depth (RGB-D) images. For the algorithm to be successful, the problem of occlusion must be solved, which is the partial visibility of the broccoli head due to overlapping leaves. This partial visibility causes sizing errors. In this research, we studied the use of deep-learning algorithms to deal with occlusions. We specifically applied the Occlusion Region-based Convolutional Neural Network (ORCNN) that segmented both the visible and the amodal region of the broccoli head (which is the visible and the occluded region combined). We hypothesised that ORCNN, with its amodal segmentation, can improve the size estimation of occluded broccoli heads. The ORCNN sizing method was compared with a Mask R–CNN sizing method that only used the visible broccoli region to estimate the size. The sizing performance of both methods was evaluated on a test set of 487 broccoli images with systematic levels of leaf occlusion. With a mean sizing error of 6.4 mm, ORCNN outperformed Mask R–CNN, which had a mean sizing error of 10.7 mm. Furthermore, ORCNN had a significantly lower absolute sizing error on 161 heavily occluded broccoli heads with an occlusion rate between 50% and 90%. Our software and data set are available on https://git.wur.nl/blok012/sizecnn.
Why it matches plant phenotyping methodsRGB-D画像と深層学習によりブロッコリー頭部サイズを推定する手法を開発し、Mask R-CNNと比較検証しているため、植物形質取得法が研究の中心です。
abstractThe goal of our work was to develop a software algorithm that can estimate the size of field-grown broccoli heads based on RGB-Depth (RGB-D) images.
Accurate panicle identification is a key step in rice-field phenotyping. Deep learning methods based on high-spatial-resolution images provide a high-throughput and accurate solution of panicle segmentation. Panicle segmentation tasks require costly annotations to train an accurate and robust deep learning model. However, few public datasets are available for rice-panicle phenotyping. We present a semi-supervised deep learning model training process, which greatly assists the annotation and refinement of training datasets. The model learns the panicle features with limited annotations and localizes more positive samples in the datasets, without further interaction. After the dataset refinement, the number of annotations increased by 40.6%. In addition, we trained and tested modern deep learning models to show how the dataset is beneficial to both detection and segmentation tasks. Results of our comparison experiments can inspire others in dataset preparation and model selection.
Why it matches plant phenotyping methodsイネ穂のセグメンテーション用公開データセットを構築し、半教師あり学習による注釈精緻化とモデル比較を行っており、植物フェノタイピング手法・データセットが研究の中心である。
titlePaddy Rice Imagery Dataset for Panicle Segmentation
Reproduction assets foundThe paper's pixel-level annotated paddy rice panicle imagery dataset (400 4K UAV images, 50,730 annotations) is explicitly stated to be publicly available on Zenodo via DOI 10.5281/zenodo.4430186, a paper-specific public asset directly reproducing the phenotyping measurements.Dataset · publicWe provided a pixel-level labeled rice panicle dataset containing 400 images with
50730 pixel-level annotations. The dataset is publicly available at http://doi.org/
10.5281/zenodo.4430186 for developing rice-panicle detection models.Open asset ↗zenodo · 10.5281/zenodo.4430186pdf-page:9 lines:1-59Code / dataset availability confirmedCrossref · checked 9 Sept 2026
Solving many phenotyping problems involves not only automatic detection of objects in an image, but also counting the number of parts per object. We propose a solution in the form of a single deep network, tested for three agricultural datasets pertaining to bananas-per-bunch, spikelets-per-wheat-spike, and berries-per-grape-cluster. The suggested network incorporates object detection, object resizing, and part counting as modules in a single deep network, with several variants tested. The detection module is based on a Retina-Net architecture, whereas for the counting modules, two different architectures are examined: the first based on direct regression of the predicted count, and the other on explicit parts detection and counting. The results are promising, with the mean relative deviation between estimated and visible part count in the range of 9.2% to 11.5%. Further inference of count-based yield related statistics is considered. For banana bunches, the actual banana count (including occluded bananas) is inferred from the count of visible bananas. For spikelets-per-wheat-spike, robust estimation methods are employed to get the average spikelet count across the field, which is an effective yield estimator.
Why it matches plant phenotyping methods植物器官の可視パーツ数を画像から検出・計数する深層学習手法を開発し、複数作物データセットで評価しているため、表現型取得・推定法が中心です。
abstractWe propose a solution in the form of a single deep network, tested for three agricultural datasets pertaining to bananas-per-bunch, spikelets-per-wheat-spike, and berries-per-grape-cluster.
Reproduction assets foundThe paper's grape experiments use the public Embrapa WGISD dataset, extended by the authors with berry dot annotations that they state were made publicly available as part of that dataset extension. The banana and wheat datasets (Israel Phenomics Consortium) and the authors' code/models have no stated public release,; Dataset · publicThe dot annotations were made
publicly available as part of Embrapa WGISD dataset extension.Open asset ↗Embrapa WGISDpdf-page:5 lines:1-59Code / dataset availability confirmedCrossref · checked 14 Sept 2026
Phenotyping wheat (Triticum aestivum L.) is time-consuming and new methods are necessary to decrease labor. To develop a heterotic pool of male wheat lines for hybrid breeding, there must be an efficient way to measure both anther extrusion and the size of anthers. Five hundred and ninety-four soft red winter wheat lines in two replications of randomized complete block design were phenotyped for anther extrusion, a key trait for hybrid wheat production. A device was constructed to capture images using a mobile device. Four heads were sampled per line when anthesis was evident for half the heads in the plot. The extruded anthers were scraped onto a surface, their image was captured, and the area of the anthers was taken via ImageJ. The number of anthers extruded was estimated by counting the number of anthers per image and dividing by the number of heads sampled. The area per anther was taken by dividing the area of anthers per spike by the number of anthers per spike. A significant correlation (R=0.9, p
Why it matches plant phenotyping methods小麦の葯突出数と葯サイズを画像取得・ImageJ解析で測定する手法を開発し、大規模材料で適用・評価しており、表現型取得法が中心である。
abstractTo develop a heterotic pool of male wheat lines for hybrid breeding, there must be an efficient way to measure both anther extrusion and the size of anthers.
Reproduction assets foundThe paper's Data Availability Statement points to a public GitHub repository containing the paper's anther extrusion phenotyping data (HD, AD, AOAPS, NOAPS, APA for the HGAWN population), alongside request-based access via the corresponding author. The ImageJ macro and R analysis code are described but no separate codeDataset · publicof 7
Funding: This research was funded by USDA National Institute of Food and Agriculture, grant
number 2017-67007-25939.
Institutional Review Board Statement: Not applicable.
Informed Consent Statement: Not applicable.
Data Availability Statement: Data is available upon request via contact with the corresponding
author and at <https://github.com/zjwinn/Phenotyping-Anther-Extrusion-of-Wheat-Using-Image-Analysis>.
Acknowledgments: This work is supported by the Agriculture and Food Research Initiative Competi-
tive Grant 2017-67007-25939 (Wheat-CAP) from the USDA National Institute of Food and Agriculture.
Conflicts of Interest: The author claims no conflict of interest.
Abbreviations
NOAPS NuOpen asset ↗https://github.com/zjwinn/Phenotyping-Anther-Extrusion-of-Wheat-Using-Image-Analysispdf-raw-page:7 lines:1-53Code / dataset availability confirmedEurope PMC · checked 9 Sept 2026
Wheat blast is a threat to global wheat production, and limited blast-resistant cultivars are available. The current estimations of wheat spike blast severity rely on human assessments, but this technique could have limitations. Reliable visual disease estimations paired with Red Green Blue (RGB) images of wheat spike blast can be used to train deep convolutional neural networks (CNN) for disease severity (DS) classification. Inter-rater agreement analysis was used to measure the reliability of who collected and classified data obtained under controlled conditions. We then trained CNN models to classify wheat spike blast severity. Inter-rater agreement analysis showed high accuracy and low bias before model training. Results showed that the CNN models trained provide a promising approach to classify images in the three wheat blast severity categories. However, the models trained on non-matured and matured spikes images showing the highest precision, recall, and F1 score when classifying the images. The high classification accuracy could serve as a basis to facilitate wheat spike blast phenotyping in the future.
Why it matches plant phenotyping methodsRGB画像とCNNによるコムギ穂の病害重症度推定が研究の中心であり、植物病害状態を直接定量化するフェノタイピング手法を開発・評価している。
abstractWe then trained CNN models to classify wheat spike blast severity.
Reproduction assets foundThe paper publicly deposits its wheat spike blast image datasets (Dataset 1 and Dataset 2) and the corresponding trained CNN models on the Purdue University Research Repository (PURR), with explicit availability statements and URLs.Dataset · publicDataset 1, included maturing and non-matured wheat spikes; and Dataset 2 included only non-matured spikes (data available at: https://purr.purdue.edu/publications/3772/1 ).Open asset ↗lines:341-377Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
A collection of flax accessions from Russian Federal Research Center for Bast Fiber Crops was characterised to evaluate its phenotypic diversity. 406 samples representing different morphotypes were selected for thorough quantitative assessment of various agronomic traits. We measured height, length of technical part of the stem, technical part weight, inflorescence length, number of bolls and seeds per plant, 1000 seed weight, the diameter of the stem, the number of internodes and finally, distance between internodes. The fiber quality was estimated by calculating stem slenderness, stem taperingness and elementary fiber length. The dataset was produced in a framework of a project focused on characterization of diversity of flax genotypes and phenotypes, as well as on identification of genomic regions associated with various traits, it is hosted on Figshare.
Why it matches plant phenotyping methods植物遺伝資源の多形質表現型を体系的に収集したデータセットであり、表現型データセットとして中心的な対象である。
titleA comprehensive dataset of flax ( Linum uitatissimum L.) phenotypes.
Reproduction assets foundThe paper is a Data in Brief article describing a flax phenotype dataset (406 accessions, agronomic and fiber quality traits) hosted publicly on Figshare. The Figshare link is explicitly given as the direct URL to the data and matches an allowed URL, making it a paper-specific, publicly accessible phenotype dataset.Dataset · publicear of phenotyping.
Data source location
Institution: Federal Research Center for Bast Fiber Crops
City/Town/Region: Torzhok/Tver Region
Country:Russia
Latitude and longitude for collected samples/data: 57°02′N, 34°58′E; Altitude: 165 m
Data accessibility
Repository name: Figshare
Data identification number:
Direct URL to data: https://figshare.com/s/86a68ecfacf6872ef239
Value of the Data
•
The data on flax phenotypic diversity provides insight into flax domestication history and facilitates flax breeding efforts.
•
Flax raw material has multiple uses in various sectors of the economy including textile, medical, food and chemical industries as a source of fiber, linseed and oil. This data haOpen asset ↗Figsharelines:47-144Code / dataset availability confirmedOpenAlex · Europe PMC · Crossref · checked 14 Sept 2026
The accuracy of trait measurements greatly affects the quality of genetic analyses. During automated phenotyping, trait measurement errors, i.e. differences between automatically extracted trait values and ground truth, are often treated as random effects that can be controlled by increasing population sizes and/or replication number. In contrast, there is some evidence that trait measurement errors may be partially under genetic control. Consistent with this hypothesis, we observed substantial nonrandom, genetic contributions to trait measurement errors for five maize (Zea mays) tassel traits collected using an image-based phenotyping platform. The phenotyping accuracy varied according to whether a tassel exhibited "open" versus. "closed" branching architecture, which is itself under genetic control. Trait-associated SNPs (TASs) identified via genome-wide association studies (GWASs) conducted on five tassel traits that had been phenotyped both manually (i.e. ground truth) and via feature extraction from images exhibit little overlap. Furthermore, identification of TASs from GWASs conducted on the differences between the two values indicated that a fraction of measurement error is under genetic control. Similar results were obtained in a sorghum (Sorghum bicolor) plant height dataset, demonstrating that trait measurement error is genetically determined in multiple species and traits. Trait measurement bias cannot be controlled by increasing population size and/or replication number.
Why it matches plant phenotyping methods画像ベース高スループット表現型測定の自動抽出値を手動測定(ground truth)と比較し、測定誤差と精度を遺伝的に評価しているため、表現型取得法の技術的検証が中心です。
abstractDuring automated phenotyping, trait measurement errors, i.e. differences between automatically extracted trait values and ground truth, are often treated as random effects
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicThe codes used for automated tassel segmentation, skeleton construction and trait extraction are available at https://github.com/schnablelab/Tassel-Image-Trait-Extraction-Tool .Open asset ↗schnablelab/Tassel-Image-Trait-Extraction-Toollines:170-188Code / dataset availability confirmedOpenAlex · Europe PMC · checked 15 Sept 2026
Abstract Image-based plant phenotyping is the major approach to quantitative assessment of important plant properties. For automated analysis of a large amount of image data from high-throughput greenhouse measurements, efficient techniques for image segmentation are required. However, conventional approaches to whole plant and plant organ segmentation are hampered by high variability of plant and background illumination, and naturally occurring changes in geometry and colors of growing plants. Consequently, application of advanced machine learning techniques for automated image segmentation is required. Here, we investigate six advanced neural network (NN) methods for detection and segmentation of grain spikes in RGB images including three detection deep NNs (SSD, Faster-RCNN, YOLOv3/v4), two deep (U-Net, DeepLabv3+) and one shallow segmentation NNs. Our experimental results show superior performance of deep learning NNs that achieve in average more than 90% accuracy by detection and segmentation of wheat as well as barley and rye spikes. However, different methods demonstrate different performance on matured, emergent and occluded spikes. In addition to comprehensive comparison of six NN methods, a GUI-based tool (SpikeApp) provided with this work demonstrates the application of detection and segmentation NNs to fully automated spike phenotyping. Further improvements of evaluated NN approaches are discussed.
Why it matches plant phenotyping methods穀粒穂の画像検出・セグメンテーション手法を比較評価し、SpikeAppによる自動フェノタイピングを実証しており、植物表現型取得手法が中心である。
abstractImage-based plant phenotyping is the major approach to quantitative assessment of important plant properties.
Reproduction assets foundThe paper's data availability statement explicitly provides demo software (SpikeApp with pre-trained U-Net, YOLOv3, and shallow ANN models) and example spike images for public download from the authors' IPK page. The DeepLabv3+ GitHub link is a cited third-party library, and psi.cz is the imaging facility, not a paper-Code · publics work was also supported by the project
of specific research provided by the Masaryk University.
Conflict of interest statement
The authors declare no competing interests.
Data availability statement
In addition to data presented in the main text, demo software as well as examples of spike images are provided for download
from https://ag-ba.ipk-gatersleben.de/spikeapp.html.11/14Open asset ↗spikeapp.htmlpdf-raw-page:12 lines:1-30Code / dataset availability confirmedOpenAlex · Europe PMC · checked 8 Sept 2026
Plants have evolved several adaptive mechanisms to cope with water-limited conditions. While most of them are through constitutive traits, certain "acquired tolerance" traits also provide significant improvement in drought adaptation. Most abiotic stresses, especially drought, show a gradual progression of stress and hence provide an opportunity to upregulate specific protective mechanisms collectively referred to as "acquired tolerance" traits. Here, we demonstrate a significant genetic variability in acquired tolerance traits among rice germplasm accessions after standardizing a novel gradual stress progress protocol. Two contrasting genotypes, BPT 5204 (drought susceptible) and AC 39000 (tolerant), were used to standardize methodology for capturing acquired tolerance traits at seedling phase. Seedlings exposed to gradual progression of stress showed higher recovery with low free radical accumulation in both the genotypes compared to rapid stress. Further, the gradual stress progression protocol was used to examine the role of acquired tolerance at flowering phase using a set of 17 diverse rice genotypes. Significant diversity in free radical production and scavenging was observed among these genotypes. Association of these parameters with yield attributes showed that genotypes that managed free radical levels in cells were able to maintain high spikelet fertility and hence yield under stress. This study, besides emphasizing the importance of acquired tolerance, explains a high throughput phenotyping approach that significantly overcomes methodological constraints in assessing genetic variability in this important drought adaptive mechanism.
Why it matches plant phenotyping methodsイネの乾燥適応形質を評価するための段階的ストレス付与プロトコルを標準化し、高スループット表現型解析として方法論的制約を克服する手法を提示しているため、表現型取得法が中心的です。
abstractafter standardizing a novel gradual stress progress protocol
Reproduction assets found本文中に内容が明示された植物フェノタイピング関連の補足表と、その公開リンクを確認しました。Supplement · publicSupplementary Table 2 ) during the Kharif season of 2019 to confirm the trait diversity, particularly for acquired tolerance traits.Open asset ↗lines:351-362Code / dataset availability confirmedOpenAlex · Europe PMC · checked 14 Sept 2026
In plant breeding, unmanned aerial vehicles (UAVs) carrying multispectral cameras have demonstrated increasing utility for high-throughput phenotyping (HTP) to aid the interpretation of genotype and environment effects on morphological, biochemical, and physiological traits. A key constraint remains the reduced resolution and quality extracted from "stitched" mosaics generated from UAV missions across large areas. This can be addressed by generating high-quality reflectance data from a single nadir image per plot. In this study, a pipeline was developed to derive reflectance data from raw multispectral UAV images that preserve the original high spatial and spectral resolutions and to use these for phenotyping applications. Sequential steps involved (i) imagery calibration, (ii) spectral band alignment, (iii) backward calculation, (iv) plot segmentation, and (v) application. Each step was designed and optimised to estimate the number of plants and count sorghum heads within each breeding plot. Using a derived nadir image of each plot, the coefficients of determination were 0.90 and 0.86 for estimates of the number of sorghum plants and heads, respectively. Furthermore, the reflectance information acquired from the different spectral bands showed appreciably high discriminative ability for sorghum head colours (i.e., red and white). Deployment of this pipeline allowed accurate segmentation of crop organs at the canopy level across many diverse field plots with minimal training needed from machine learning approaches.
Why it matches plant phenotyping methodsUAVマルチスペクトル画像から反射率を抽出し、圃場区画内の植物数・穂数・穂色を推定するパイプラインの開発と精度評価が中心であり、植物表現型取得手法に該当する。
abstractIn this study, a pipeline was developed to derive reflectance data from raw multispectral UAV images that preserve the original high spatial and spectral resolutions and to use these for phenotyping applications.
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicTrial details, sample imagery, and essential codes used in this article can be accessed through https://github.com/YanZhao15/AltumApplication.git .Open asset ↗YanZhao15/AltumApplicationlines:150-152Code / dataset availability confirmedOpenAlex · Crossref · Europe PMC · checked 8 Sept 2026
Plant counting runs through almost every stage of agricultural production from seed breeding, germination, cultivation, fertilization, pollination to yield estimation, and harvesting. With the prevalence of digital cameras, graphics processing units and deep learning-based computer vision technology, plant counting has gradually shifted from traditional manual observation to vision-based automated solutions. One of popular solutions is a state-of-the-art object detection technique called Faster R-CNN where plant counts can be estimated from the number of bounding boxes detected. It has become a standard configuration for many plant counting systems in plant phenotyping. Faster R-CNN, however, is expensive in computation, particularly when dealing with high-resolution images. Unfortunately high-resolution imagery is frequently used in modern plant phenotyping platforms such as unmanned aerial vehicles, engendering inefficient image analysis. Such inefficiency largely limits the throughput of a phenotyping system. The goal of this work hence is to provide an effective and efficient tool for high-throughput plant counting from high-resolution RGB imagery. In contrast to conventional object detection, we encourage another promising paradigm termed object counting where plant counts are directly regressed from images, without detecting bounding boxes. In this work, by profiling the computational bottleneck, we implement a fast version of a state-of-the-art plant counting model TasselNetV2 with several minor yet effective modifications. We also provide insights why these modifications make sense. This fast version, TasselNetV2+, runs an order of magnitude faster than TasselNetV2, achieving around 30 fps on image resolution of 1980 × 1080, while it still retains the same level of counting accuracy. We validate its effectiveness on three plant counting tasks, including wheat ears counting, maize tassels counting, and sorghum heads counting. To encourage the use of this tool, our implementation has been made available online at https://tinyurl.com/TasselNetV2plus.
Why it matches plant phenotyping methods高速・高スループットな植物カウント手法を開発し、複数作物で検証した植物フェノタイピング手法の中心的研究。
abstractThe goal of this work hence is to provide an effective and efficient tool for high-throughput plant counting from high-resolution RGB imagery.
Reproduction assets foundThe paper's authors publicly released their TasselNetV2+ PyTorch implementation (the paper's plant counting/phenotyping analysis code) online. The three plant counting datasets used are cited prior datasets, not paper-specific deposits.Code · publicTo encourage the use of this tool, our implementation has been made available online at https://tinyurl.com/TasselNetV2plusOpen asset ↗TasselNetV2pluslines:225-304Code / dataset availability confirmedCrossref · OpenAlex · checked 14 Sept 2026
Published1 Nov 2020Journal of the American Society for Horticultural ScienceCited by 29 · OpenAlex ↗
Grape ( Vitis vinifera ) cluster compactness is an important trait due to its effect on disease susceptibility, but visual evaluation of compactness relies on human judgement and an ordinal scale that is not appropriate for all populations. We developed an image analysis pipeline and used it to quantify cluster compactness traits in a segregating hybrid wine grape ( Vitis sp.) population for 2 years. Images were collected from grape clusters immediately after harvest, segmented by color, and analyzed using a custom script. Both automated and conventional phenotyping methods were used, and comparisons were made between each method. A partial least squares (PLS) model was constructed to evaluate the prediction of physical cluster compactness using image-derived measurements. Quantitative trait loci (QTL) on chromosomes 4, 9, 12, 16, and 17 were associated with both image-derived and conventionally phenotyped traits within years, which demonstrated the ability of image-derived traits to identify loci related to cluster morphology and cluster compactness. QTL for 20-berry weight were observed between years on chromosomes 11 and 17. Additionally, the automated method of cluster length measurement was highly accurate, with a deviation of less than 10 mm ( r = 0.95) compared with measurements obtained with a hand caliper. A remaining challenge is the utilization of color-based image segmentation in a population that segregates for fruit color, which leads to difficulty in differentiating the stem from the fruit when the two are similarly colored in non-noir fruit. Overall, this research demonstrates the validity of image-based phenotyping for quantifying cluster compactness and for identifying QTL for the advancement of grape breeding efforts.
Why it matches plant phenotyping methodsブドウ房の画像解析パイプラインを開発し、従来法との比較、PLSによる予測評価、測定精度検証を行っており、画像ベース表現型計測が中心である。
abstractWe developed an image analysis pipeline and used it to quantify cluster compactness traits in a segregating hybrid wine grape ( Vitis sp.) population for 2 years.
Reproduction assets foundThe paper explicitly states public availability of both the grape cluster images (University of Minnesota Conservancy) and the custom MATLAB image analysis script (GitHub), both directly supporting this paper's phenotyping measurements and analysis.Dataset · publicStien Iverson and David Tork, who helped with data collection. Soon Li Teh and
James Luby built the GE1025 linkage map.
Cluster images are available at https://conservancy.umn.edu/handle/11299/202560. Image analysis script is available at https://github.com/underhil-lanna/GrapeImageAnalysis.Current address for A.U.: Grape Genetics Research Unit, U.S. Department of
Agriculture, Agricultural Research Service, 630 West North Street, Geneva, NY
14456
M.C. is the corresponding author. Email: clark776@umn.edu.
This is an open accOpen asset ↗conservancy.umn.edu · 11299/202560pdf-raw-page:1 lines:74-81Code · publicStien Iverson and David Tork, who helped with data collection. Soon Li Teh and
James Luby built the GE1025 linkage map.
Cluster images are available at https://conservancy.umn.edu/handle/11299/202560. Image analysis script is available at https://github.com/underhil-lanna/GrapeImageAnalysis.Current address for A.U.: Grape Genetics Research Unit, U.S. Department of
Agriculture, Agricultural Research Service, 630 West North Street, Geneva, NY
14456
M.C. is the corresponding author. Email: clark776@umn.edu.
This is an open access article distributed under the CC BY-NC-ND license
(https://creativecommons.org/licenses/by-nc-ndOpen asset ↗github.com/underhil-lanna/GrapeImageAnalysispdf-raw-page:1 lines:74-81Code / dataset availability confirmedarXiv · checked 9 Sept 2026
Supervised learning is often used to count objects in images, but for counting small, densely located objects, the required image annotations are burdensome to collect. Counting plant organs for image-based plant phenotyping falls within this category. Object counting in plant images is further challenged by having plant image datasets with significant domain shift due to different experimental conditions, e.g. applying an annotated dataset of indoor plant images for use on outdoor images, or on a different plant species. In this paper, we propose a domain-adversarial learning approach for domain adaptation of density map estimation for the purposes of object counting. The approach does not assume perfectly aligned distributions between the source and target datasets, which makes it more broadly applicable within general object counting and plant organ counting tasks. Evaluation on two diverse object counting tasks (wheat spikelets, leaves) demonstrates consistent performance on the target datasets across different classes of domain shift: from indoor-to-outdoor images and from species-to-species adaptation.
Why it matches plant phenotyping methods植物器官数を画像から推定するドメイン適応・密度マップ推定法を開発し、コムギ小穂と葉の計数で評価しており、表現型取得手法が中心である。
abstractCounting plant organs for image-based plant phenotyping falls within this category.
Reproduction assets foundThe paper provides two paper-specific public assets: the authors' implementation code for the domain-adversarial counting model on GitHub, and the authors' newly created GWHD dot annotations deposited on figshare. Other URLs are cited prior-work datasets, not paper-specific assets.Code · publicAll experiments were performed on a GeForce RTX 2070 GPU with 8GB memory using the Pytorch framework. The implementation is available at: https://github.com/p2irc/UDA4POCOpen asset ↗p2irc/UDA4POClines:81-104Dataset · publicTo evaluate our method, we created dot annotations for 67 images from the GWHD which are used as ground truth. These annotations are made publicly available at https://doi.org/10.6084/m9.figshare.12652973.v2 .Open asset ↗10.6084/m9.figshare.12652973.v2lines:105-155Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Future increases in yield potential will rely largely on improved photosynthesis. Whereas emphasis has traditionally been given to measuring leaf photosynthesis, wheat spikes have an important role in filling grains since they can intercept up to a third of incident light. In the present study, 196 genetically diverse spring wheat lines were evaluated for spike photosynthesis (SP) under temperate (yield potential) and heat stressed, irrigated conditions. Two different methods to estimate SP were used: (i) gas exchange measurements of SP rate and (ii) integrative measurements using a SP inhibition treatment (consisting of a permeable textile covering the spikes). Rate of SP was measured directly in 45 selected genotypes under yield potential conditions using a custom-made illuminating chamber. In these lines, a variation of 2.8-fold for spike photosynthetic rate is reported for the first time with good heritability estimates. Correlations between SP rate and yield, thousand grain weight, number of grains per spike and radiation use efficiency are reported across different panels. Genotypic variation in SP was independent from flag leaf photosynthesis suggesting that any strategy aiming to increase canopy photosynthesis should also consider SP. The SP inhibition treatments were applied on the 196 lines in both environments to estimate SP contribution to grain weight per spike, which was 30–40 % under both heat stressed and yield potential conditions averaged across lines. Positive correlations with grain yield were observed for spike photosynthesis contribution across all of the panels under heat stress and when combining heat and yield potential environments (P < 0.001, r = 0.401). These results indicate a highly significant genotypic variation of spike photosynthetic rate and spike photosynthesis contribution to grain yield among wheat lines and highlight its importance under irrigated and heat stressed conditions.
Why it matches plant phenotyping methods小麦穂の光合成速度・寄与を高スループットに取得する2種類の測定法を用い、カスタム照明チャンバーによる直接測定も実施しており、植物生理形質のフェノタイピング手法の実質的適用が研究の中心である。
titleSpike photosynthesis measured at high throughput indicates genetic variation independent of flag leaf photosynthesis
Reproduction assets foundThe article reports spike photosynthesis phenotyping of 196 wheat lines (gas-exchange rates and SP inhibition treatments) but contains no explicit public dataset or code deposit. The only paper-specific, publicly accessible asset indicated is the article's supplementary material (Supplementary Tables 4-5 and Fig. 1), 'Supplement · publicnical assistance with measurements, data
and trial management. A special thanks to J.M. Esquer who was re-
sponsible to design the spike illumination chamber used in these ex-
periments for the measurements.
Appendix A. Supplementary data
Supplementary material related to this article can be found, in the
online version, at doi:https://doi.org/10.1016/j.fcr.2020.107866.References
Abbad, H., El Jaafari, S., Bort, J., Araus, J.L., Jaafari, S.E., Bort, J., Araus, J.L., 2004.
Comparison of flag leaf and ear photosynthesis with biomass and grain yield of
durum wheat under various water conditions and genotypes. Agronomie 24, 19–28.
https://doi.org/10.1051/agro:2003056.Acreche, M.M., Slafer, G.A., Open asset ↗pdf-raw-page:11 lines:1-57Code / dataset availability confirmedEurope PMC · checked 15 Sept 2026
The detection of wheat heads in plant images is an important task for estimating pertinent wheat traits including head population density and head characteristics such as health, size, maturity stage, and the presence of awns. Several studies have developed methods for wheat head detection from high-resolution RGB imagery based on machine learning algorithms. However, these methods have generally been calibrated and validated on limited datasets. High variability in observational conditions, genotypic differences, development stages, and head orientation makes wheat head detection a challenge for computer vision. Further, possible blurring due to motion or wind and overlap between heads for dense populations make this task even more complex. Through a joint international collaborative effort, we have built a large, diverse, and well-labelled dataset of wheat images, called the Global Wheat Head Detection (GWHD) dataset. It contains 4700 high-resolution RGB images and 190000 labelled wheat heads collected from several countries around the world at different growth stages with a wide range of genotypes. Guidelines for image acquisition, associating minimum metadata to respect FAIR principles, and consistent head labelling methods are proposed when developing new head detection datasets. The GWHD dataset is publicly available at http://www.global-wheat.com/and aimed at developing and benchmarking methods for wheat head detection.
Why it matches plant phenotyping methods小麦穂の画像検出を対象とする大規模データセットを構築し、取得・ラベリング指針と検出手法の開発・ベンチマークを目的としており、植物表現型抽出法が中心である。
abstractwe have built a large, diverse, and well-labelled dataset of wheat images, called the Global Wheat Head Detection (GWHD) dataset.
Reproduction assets foundThe paper's core asset is the GWHD dataset itself: 4700 high-resolution RGB wheat images with ~190,000 labelled wheat head bounding boxes, explicitly stated to be publicly available at the authors' website (global-wheat.com). This is a paper-specific, public, directly actionable plant phenotyping dataset. The coco-annuDataset · publicd from several countries around the world at different growth stages with a wide range of genotypes. Guidelines for image acquisition, associating minimum metadata to respect FAIR principles, and consistent head labelling methods are proposed when developing new head detection datasets. The GWHD dataset is publicly available at http://www.global-wheat.com/and aimed at developing and benchmarking methods for wheat head detection.
status released display-pdf yes is-olf no is-manuscript no is-preprint no is-journal-matter no is-scanned no is-retracted no
Received 2020 Apr 25; Accepted 2020 Jul 1; Collection date 2020.
1. IntroductionOpen asset ↗global-wheat.comlines:1-34Code / dataset availability confirmedOpenAlex · Europe PMC · checked 9 Sept 2026
BACKGROUND: The population of plants is a crucial indicator in plant phenotyping and agricultural production, such as growth status monitoring, yield estimation, and grain depot management. To enhance the production efficiency and liberate labor force, many automated counting methods have been proposed, in which computer vision-based approaches show great potentials due to the feasibility of high-throughput processing and low cost. In particular, with the success of deep learning, more and more deeper learning-based approaches are introduced to deal with agriculture automation. Since different detection- and regression-based counting models have distinct characteristics, how to choose an appropriate model given the target task at hand remains unexplored and is important for practitioners. RESULTS: Targeting in-field maize tassels as a representative case study, the goal of this work is to present a comprehensive benchmark of state-of-the-art object detection and object counting methods, including Faster R-CNN, YOLOv3, FaceBoxes, RetinaNet, and the leading counting model of maize tassels-TasselNet. We create a Maize Tassel Detection Counting (MTDC) dataset by supplementing bounding box annotations to the Maize Tassels Counting (MTC) dataset to allow the training of detection models. We investigate key factors effecting the practical applications of the models, such as convergence behavior, scale robustness, speed-accuracy trade-off, as well as parameter sensitivity. Based on our benchmark, we summarise the advantages and limitations of each method and suggest several possible directions to improve current detection- and regression-based counting approaches to benefit next-generation intelligent agriculture. CONCLUSIONS: error. While detection-based methods are more robust than regression-based methods in scale variations and can infer extra information (e.g., object positions and sizes), the latter ones have significantly faster convergence behaviors and inference speed. To choose an appropriate in-filed plant counting method, accuracy, robustness, speed and some other algorithm-specific factors should be taken into account with the same priority. This work sheds light on different aspects of existing detection and counting approaches and provides guidance on how to tackle in-field plant counting. The MTDC dataset is made available at https://git.io/MTDC.
Why it matches plant phenotyping methodsトウモロコシ雄穂の検出・計数という植物形質の取得を対象に、複数の画像認識手法をベンチマークし、専用データセットも構築しているため、表現型計測手法が中心である。
abstractWe create a Maize Tassel Detection Counting (MTDC) dataset by supplementing bounding box annotations to the Maize Tassels Counting (MTC) dataset
Reproduction assets foundThe paper's MTDC dataset (MTC maize tassel images with new bounding box annotations, 13,562 boxes) is explicitly released publicly at the authors' URL https://git.io/MTDC, stated in both the abstract and Data Availability Statement. No author analysis code or trained model checkpoints are explicitly deposited.Dataset · publicThe MTDC dataset and other supporting materials are made available at https://git.io/MTDC .Open asset ↗lines:201-255Code / dataset availability confirmedEurope PMC · checked 9 Sept 2026
Background Wheat yield is influenced by the number of ears per unit area, and manual counting has traditionally been used to estimate wheat yield. To realize rapid and accurate wheat ear counting, K-means clustering was used for the automatic segmentation of wheat ear images captured by hand-held devices. The segmented data set was constructed by creating four categories of image labels: non-wheat ear, one wheat ear, two wheat ears, and three wheat ears, which was then was sent into the convolution neural network (CNN) model for training and testing to reduce the complexity of the model. Results The recognition accuracy of non-wheat, one wheat, two wheat ears, and three wheat ears were 99.8, 97.5, 98.07, and 98.5%, respectively. The model R 2 reached 0.96, the root mean square error (RMSE) was 10.84 ears, the macro F1-score and micro F1-score both achieved 98.47%, and the best performance was observed during late grain-filling stage ( R 2 = 0.99, RMSE = 3.24 ears). The model could also be applied to the UAV platform ( R 2 = 0.97, RMSE = 9.47 ears). Conclusions The classification of segmented images as opposed to target recognition not only reduces the workload of manual annotation but also improves significantly the efficiency and accuracy of wheat ear counting, thus meeting the requirements of wheat yield estimation in the field environment.
Why it matches plant phenotyping methods小麦穂数という植物形態・収量関連形質を、画像セグメンテーションとCNNで自動推定する手法を開発・評価しており、表現型取得が研究の中心である。
abstractTo realize rapid and accurate wheat ear counting, K-means clustering was used for the automatic segmentation of wheat ear images captured by hand-held devices.
Reproduction assets foundThe authors publicly released their analysis code (K-means segmentation + CNN wheat ear counting pipeline) on GitHub. The image/phenotype datasets are only available on request from the corresponding author, so they do not qualify as public assets.Code · publicThe code can be found at https://github.com/xuxin468/earcouting .Open asset ↗xuxin468/earcoutinglines:190-213Code / dataset availability confirmedEurope PMC · checked 9 Sept 2026
The traits of rice panicles play important roles in yield assessment, variety classification, rice breeding, and cultivation management. Most traditional grain phenotyping methods require threshing and thus are time-consuming and labor-intensive; moreover, these methods cannot obtain 3D grain traits. In this work, based on X-ray computed tomography, we proposed an image analysis method to extract twenty-two 3D grain traits. After 104 samples were tested, the R 2 values between the extracted and manual measurements of the grain number and grain length were 0.980 and 0.960, respectively. We also found a high correlation between the total grain volume and weight. In addition, the extracted 3D grain traits were used to classify the rice varieties, and the support vector machine classifier had a higher recognition accuracy than the stepwise discriminant analysis and random forest classifiers. In conclusion, we developed a 3D image analysis pipeline to extract rice grain traits using X-ray computed tomography that can provide more 3D grain information and could benefit future research on rice functional genomics and rice breeding.
Why it matches plant phenotyping methodsX線CTを用いてイネ穀粒の22種類の3D形質を抽出する画像解析パイプラインを開発し、手動測定との一致性で検証しているため、植物フェノタイピング手法が研究の中心です。
abstractIn this work, based on X-ray computed tomography, we proposed an image analysis method to extract twenty-two 3D grain traits.
Reproduction assets foundThe paper's MATLAB 3D image analysis pipeline for extracting rice grain traits from X-ray CT is explicitly stated to be publicly available, with an authors' GitHub repository URL matching an allowed URL. The phenotypic data (Supplementary File 1) is only available as a PMC supplement with no allowed URL, so it is not aCode · publicthe source codes of all the scripts are available online in Supplementary File 3 or at the following link: http://plantphenomics.hzau.edu.cn/download_checkiflogin_en.action , or https://github.com/cancanzc/ricePanicle_grainTraits_ProcessingOpen asset ↗cancanzc/ricePanicle_grainTraits_Processinglines:109-117Code / dataset availability confirmedCrossref · Europe PMC · checked 9 Sept 2026
Summary Inflorescence architecture in plants is often complex and challenging to quantify, particularly for inflorescences of cereal grasses. Methods for capturing inflorescence architecture and for analyzing the resulting data are limited to a few easily captured parameters that may miss the rich underlying diversity. Here, we apply X‐ray computed tomography combined with detailed morphometrics, offering new imaging and computational tools to analyze three‐dimensional inflorescence architecture. To show the power of this approach, we focus on the panicles of Sorghum bicolor , which vary extensively in numbers, lengths, and angles of primary branches, as well as the three‐dimensional shape, size, and distribution of the seed. We imaged and comprehensively evaluated the panicle morphology of 55 sorghum accessions that represent the five botanical races in the most common classification system of the species, defined by genetic data. We used our data to determine the reliability of the morphological characters for assigning specimens to race and found that seed features were particularly informative. However, the extensive overlap between botanical races in multivariate trait space indicates that the phenotypic range of each group extends well beyond its overall genetic background, indicating unexpectedly weak correlation between morphology, genetic identity, and domestication history.
Why it matches plant phenotyping methodsX線CTと詳細な形態計測を組み合わせ、ソルガム穂の3次元形態を取得・解析する画像ベース表現型手法が研究の中心であるため。
abstractHere, we apply X‐ray computed tomography combined with detailed morphometrics, offering new imaging and computational tools to analyze three‐dimensional inflorescence architecture.
Reproduction assets foundThe paper explicitly states that the full 3D X-ray imaging dataset of sorghum panicles is publicly downloadable from the Topp lab resources page, and that all image processing, feature extraction, and statistical analysis code is available in a public GitHub repository (Topp-Roots-Lab/3D-Sorghum-Inflorescence). Both URDataset · publicThe full 3D imaging dataset for this work can be downloaded from: https://www.danforthcenter.org/scientists‐research/principal‐investigators/chris‐topp/resourcesOpen asset ↗lines:51-62Code · publicAll code used for image processing, digital feature extraction, and statistical analysis from this study can be found at the following GitHub repository: https://github.com/Topp‐Roots‐Lab/3D‐Sorghum‐InflorescenceOpen asset ↗Topp‐Roots‐Lab/3D‐Sorghum‐Inflorescencelines:51-62Code / dataset availability confirmedEurope PMC · checked 9 Sept 2026
Background In this paper, an unsupervised Bayesian learning method is proposed to perform rice panicle segmentation with optical images taken by unmanned aerial vehicles (UAV) over paddy fields. Unlike existing supervised learning methods that require a large amount of labeled training data, the unsupervised learning approach detects panicle pixels in UAV images by analyzing statistical properties of pixels in an image without a training phase. Under the Bayesian framework, the distributions of pixel intensities are assumed to follow a multivariate Gaussian mixture model (GMM), with different components in the GMM corresponding to different categories, such as panicle, leaves, or background. The prevalence of each category is characterized by the weights associated with each component in the GMM. The model parameters are iteratively learned by using the Markov chain Monte Carlo (MCMC) method with Gibbs sampling, without the need of labeled training data. Results Applying the unsupervised Bayesian learning algorithm on diverse UAV images achieves an average recall, precision and F 1 score of 96.49%, 72.31%, and 82.10%, respectively. These numbers outperform existing supervised learning approaches. Conclusions Experimental results demonstrate that the proposed method can accurately identify panicle pixels in UAV images taken under diverse conditions.
Why it matches plant phenotyping methodsイネ穂の画像セグメンテーション手法を開発し、UAV画像で性能評価しているため、植物形質取得法が研究の中心である。
abstractan unsupervised Bayesian learning method is proposed to perform rice panicle segmentation with optical images taken by unmanned aerial vehicles (UAV)
Reproduction assets foundThe paper's UAV rice panicle image dataset and the authors' MATLAB analysis code are both explicitly stated as publicly available with direct URLs in the Availability of data and materials section.Dataset · publicThe dataset analyzed during the current study are available at https://wuj.hosted.uark.edu/research/datasets/panicle/UBLRPSUI.zip .Open asset ↗lines:221-277Code · publicAlso, the MATLAB code and related materials can be downloaded from https://github.com/i2pt/UBLRPSUI .Open asset ↗i2pt/UBLRPSUIlines:221-277Code / dataset availability confirmedEurope PMC · checked 9 Sept 2026
This study describes the evaluation of a range of approaches to semantic segmentation of hyperspectral images of sorghum plants, classifying each pixel as either nonplant or belonging to one of the three organ types (leaf, stalk, panicle). While many current methods for segmentation focus on separating plant pixels from background, organ-specific segmentation makes it feasible to measure a wider range of plant properties. Manually scored training data for a set of hyperspectral images collected from a sorghum association population was used to train and evaluate a set of supervised classification models. Many algorithms show acceptable accuracy for this classification task. Algorithms trained on sorghum data are able to accurately classify maize leaves and stalks, but fail to accurately classify maize reproductive organs which are not directly equivalent to sorghum panicles. Trait measurements extracted from semantic segmentation of sorghum organs can be used to identify both genes known to be controlling variation in a previously measured phenotypes (e.g., panicle size and plant height) as well as identify signals for genes controlling traits not previously quantified in this population (e.g., stalk/leaf ratio). Organ level semantic segmentation provides opportunities to identify genes controlling variation in a wide range of morphological phenotypes in sorghum, maize, and other related grain crops.
Why it matches plant phenotyping methodsイネ科植物のハイパースペクトル画像から器官をセグメンテーションし、形態形質を抽出する手法を開発・評価しており、表現型取得法が研究の中心です。
abstractThis study describes the evaluation of a range of approaches to semantic segmentation of hyperspectral images of sorghum plants, classifying each pixel as either nonplant or belonging to one of the three organ types (leaf, stalk, panicle).
Reproduction assets foundThe paper deposits its authors' analysis code, extracted phenotypes, and manually annotated sorghum/maize pixel data in a public GitHub repository, and its Zooniverse crowdsourcing project (used to generate the pixel annotations) is publicly accessible. Both are paper-specific, public, and actionable.Code · publicAll the R and python code implemented in this study, phenotypes extracted from segmented sorghum images, and the manually annotated sorghum and maize pixels have been deposited on GitHub at https://github.com/freemao/Sorghum_Semantic_Segmentation .Open asset ↗https://github.com/freemao/Sorghum_Semantic_Segmentationlines:85-113Code / dataset availability confirmedEurope PMC · OpenAlex · checked 9 Sept 2026
Background Recent advances in image-based plant phenotyping have improved our capability to study vegetative stage growth dynamics. However, more complex agronomic traits such as inflorescence architecture (IA), which predominantly contributes to grain crop yield are more challenging to quantify and hence are relatively less explored. Previous efforts to estimate inflorescence-related traits using image-based phenotyping have been limited to destructive end-point measurements. Development of non-destructive inflorescence phenotyping platforms could accelerate the discovery of the phenotypic variation with respect to inflorescence dynamics and mapping of the underlying genes regulating critical yield components. Results The major objective of this study is to evaluate post-fertilization development and growth dynamics of inflorescence at high spatial and temporal resolution in rice. For this, we developed the P anicle I maging Plat form (PI-Plat) to comprehend multi-dimensional features of IA in a non-destructive manner. We used 11 rice genotypes to capture multi-view images of primary panicle on weekly basis after the fertilization. These images were used to reconstruct a 3D point cloud of the panicle, which enabled us to extract digital traits such as voxel count and color intensity. We found that the voxel count of developing panicles is positively correlated with seed number and weight at maturity. The voxel count from developing panicles projected overall volumes that increased during the grain filling phase, wherein quantification of color intensity estimated the rate of panicle maturation. Our 3D based phenotyping solution showed superior performance compared to conventional 2D based approaches. Conclusions For harnessing the potential of the existing genetic resources, we need a comprehensive understanding of the genotype-to-phenotype relationship. Relatively low-cost sequencing platforms have facilitated high-throughput genotyping, while phenotyping, especially for complex traits, has posed major challenges for crop improvement. PI-Plat offers a low cost and high-resolution platform to phenotype inflorescence-related traits using 3D reconstruction-based approach. Further, the non-destructive nature of the platform facilitates analyses of the same panicle at multiple developmental time points, which can be utilized to explore the genetic variation for dynamic inflorescence traits in cereals.
Why it matches plant phenotyping methodsイネ穂の非破壊3D画像再構成とデジタル形質抽出を行うPI-Platを開発・比較評価しており、植物フェノタイピング手法が研究の中心である。
abstractThese images were used to reconstruct a 3D point cloud of the panicle, which enabled us to extract digital traits such as voxel count and color intensity.
Reproduction assets foundThe paper publicly shares (1) a partial raw image dataset on a UNL Box repository and (2) the authors' PI-Plat Panicle-3D-Reconstruction workflow scripts at wrchr.org. Full raw images and the manual phenotyping dataset are only available on request, so those portions would be request_only, but the two public assets areDataset · publicRaw image data is large and hence only part of them is shared for user testing on a UNL Box repository ( https://unl.box.com/s/g0bof1mpfp33hn66b2qabrk9kiwmhbzv ).Open asset ↗unl.box.comlines:117-127Code / dataset availability confirmedEurope PMC · OpenAlex · checked 9 Sept 2026
Inflorescence architecture provides the scaffold on which flowers and fruits develop, and consequently is a primary trait under investigation in many crop systems. Yet the challenge remains to analyse these complex 3D branching structures with appropriate tools. High information content datasets are required to represent the actual structure and facilitate full analysis of both the geometric and the topological features relevant to phenotypic variation in order to clarify evolutionary and developmental inflorescence patterns. We combined advanced imaging (X-ray tomography) and computational approaches (topological and geometric data analysis and structural simulations) to comprehensively characterize grapevine inflorescence architecture (the rachis and all branches without berries) among 10 wild Vitis species. Clustering and correlation analyses revealed unexpected relationships, for example pedicel branch angles were largely independent of other traits. We identified multivariate traits that typified species, which allowed us to classify species with 78.3% accuracy, versus 10% by chance. Twelve traits had strong signals across phylogenetic clades, providing insight into the evolution of inflorescence architecture. We provide an advanced framework to quantify 3D inflorescence and other branched plant structures that can be used to tease apart subtle, heritable features for a better understanding of genetic and environmental effects on plant phenotypes.
Why it matches plant phenotyping methodsX線CT画像と計算解析を組み合わせ、ブドウの3D花序構造を定量化する再利用可能な表現型解析フレームワークを開発・適用しており、手法が研究の中心である。
abstractWe combined advanced imaging (X-ray tomography) and computational approaches (topological and geometric data analysis and structural simulations) to comprehensively characterize grapevine inflorescence architecture
Reproduction assets foundThe paper explicitly deposits two paper-specific public assets: the full X-ray tomography PLY dataset (7.85 GB) of 392 scanned grapevine inflorescences hosted on the Danforth Center Topp lab resources page, and the authors' Matlab analysis code (persistence barcodes, bottleneck distances, berry potential simulation,几何/Dataset · publicThe full PLY dataset for this work is 7.85 GB, and can be downloaded from: https://www.danforthcenter.org/scientists-research/principal-investigators/chris-topp/resources .Open asset ↗lines:39-133Code · publicAll Matlab functions used to calculate persistence barcodes, bottleneck distances, simulation for berry potential, other geometric features used in this study, and the script for extracting phylogenetic information can be found at the following GitHub repository: https://github.com/Topp-Roots-Lab/Grapevine-inflorescence-architecture .Open asset ↗Topp-Roots-Lab/Grapevine-inflorescence-architecturelines:174-184Code / dataset availability confirmedEurope PMC · checked 15 Sept 2026
To explore the relationship between the attributes of the rice panicle and its weight parameters, 6 different rice cultivars from Sihong City, Jiangsu Province, China were selected for sampling in 2017. Then, their weight parameters were measured. The images of rice panicles were scanned to obtain grain area. The significant correlation between the grain area and the panicle weight was found on the base of the analysis for the data obtained [1]. Now the weight and area data were present here for exploring the rapid yield estimation models and crop phenotype research.
Why it matches plant phenotyping methodsイネ穂の画像スキャンから粒面積を取得し、収量推定や作物表現型研究に再利用するデータを提示しており、画像ベース形質データセットとして方法論的価値がある。
abstractThe images of rice panicles were scanned to obtain grain area.
Reproduction assets foundThis Data in Brief article presents the paper's own rice panicle phenotyping measurements (grain area, panicle/grain weight parameters for 6 cultivars, 1200 panicles) and states that the raw data files (.xlsx) were uploaded as supplementary material, publicly accessible online at the article DOI. No separate author-depDataset · publica-
tional Natural Science Fund, China (31701321).
Conflict of Interest
The authors declare that they have no known competing financial interests or personal relation-
ships that could have appeared to influence the work reported in this paper.
Appendix A. Supplementary data
Supplementary data to this article can be found online at https://doi.org/10.1016/j.dib.2019.104667.
Reference
[1] S. Zhao, H. Zheng, M. Chi, X. Chai, Y. Liu, Rapid yield prediction in paddy fields based on 2D image modelling of rice panicles,
Comput. Electron. Agric. 162 (2019) 759e766, https://doi.org/10.1016/j.compag.2019.05.020.Open asset ↗pdf-layout-page:6 lines:1-23Code / dataset availability confirmedEurope PMC · checked 9 Sept 2026
Crop yield is an essential measure for breeders, researchers, and farmers and is composed of and may be calculated by the number of ears per square meter, grains per ear, and thousand grain weight. Manual wheat ear counting, required in breeding programs to evaluate crop yield potential, is labor-intensive and expensive; thus, the development of a real-time wheat head counting system would be a significant advancement. In this paper, we propose a computationally efficient system called DeepCount to automatically identify and count the number of wheat spikes in digital images taken under natural field conditions. The proposed method tackles wheat spike quantification by segmenting an image into superpixels using simple linear iterative clustering (SLIC), deriving canopy relevant features, and then constructing a rational feature model fed into the deep convolutional neural network (CNN) classification for semantic segmentation of wheat spikes. As the method is based on a deep learning model, it replaces hand-engineered features required for traditional machine learning methods with more efficient algorithms. The method is tested on digital images taken directly in the field at different stages of ear emergence/maturity (using visually different wheat varieties), with different canopy complexities (achieved through varying nitrogen inputs) and different heights above the canopy under varying environmental conditions. In addition, the proposed technique is compared with a wheat ear counting method based on a previously developed edge detection technique and morphological analysis. The proposed approach is validated with image-based ear counting and ground-based measurements. The results demonstrate that the DeepCount technique has a high level of robustness regardless of variables, such as growth stage and weather conditions, hence demonstrating the feasibility of the approach in real scenarios. The system is a leap toward a portable and smartphone-assisted wheat ear counting systems, results in reducing the labor involved, and is suitable for high-throughput analysis. It may also be adapted to work on Red; Green; Blue (RGB) images acquired from unmanned aerial vehicle (UAVs).
Why it matches plant phenotyping methodsコムギ穂数という植物形質を圃場画像から自動抽出・計数する手法を開発し、比較検証・地上測定による妥当性確認まで行っており、フェノタイピング手法が研究の中心である。
abstractwe propose a computationally efficient system called DeepCount to automatically identify and count the number of wheat spikes in digital images taken under natural field conditions.
Reproduction assets foundThe paper provides an authors' public code URL (GitHub profile of the first author) for the DeepCount wheat spike counting model, and a data availability statement directing to the public DFW repository (ckan.grassroots.tools) and supplementary files for the datasets generated in this study.Code · publicThe code can be found at https://github.com/pouriast .Open asset ↗https://github.com/pouriastlines:557-572Code / dataset availability confirmedEurope PMC · checked 9 Sept 2026
Wheat is one of the major crops in the world, with a global demand expected to reach 850 million tons by 2050 that is clearly outpacing current supply. The continual pressure to sustain wheat yield due to the world's growing population under fluctuating climate conditions requires breeders to increase yield and yield stability across environments. We are working to integrate deep learning into field-based phenotypic analysis to assist breeders in this endeavour. We have utilised wheat images collected by distributed CropQuant phenotyping workstations deployed for multiyear field experiments of UK bread wheat varieties. Based on these image series, we have developed a deep-learning based analysis pipeline to segment spike regions from complicated backgrounds. As a first step towards robust measurement of key yield traits in the field, we present a promising approach that employ Fully Convolutional Network (FCN) to perform semantic segmentation of images to segment wheat spike regions. We also demonstrate the benefits of transfer learning through the use of parameters obtained from other image datasets. We found that the FCN architecture had achieved a Mean classification Accuracy (MA) >82% on validation data and >76% on test data and Mean Intersection over Union value (MIoU) >73% on validation data and and >64% on test datasets. Through this phenomics research, we trust our attempt is likely to form a sound foundation for extracting key yield-related traits such as spikes per unit area and spikelet number per spike, which can be used to assist yield-focused wheat breeding objectives in near future.
Why it matches plant phenotyping methodsコムギ画像から穂領域を抽出する深層学習パイプラインを開発・検証しており、収量関連形質のフェノタイピング手法が研究の中心である。
abstractwe have developed a deep-learning based analysis pipeline to segment spike regions from complicated backgrounds.
Reproduction assets foundThe paper's wheat spike segmentation study (CropQuant field images 2015-2017, FCN analysis) has an explicit public data/code release: the authors state the supporting dataset, including source code, is available in their GitHub repository. Other URLs (picamera docs, image labelling tool, arXiv) are generic third-party,Dataset · publicThe dataset supporting the results is available at https://github.com/tanh86/ws_seg/tree/master/CQ , which includes source code and other supporting data in the GitHub repository.Open asset ↗github.com/tanh86/ws_seglines:120-164Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
The yield of cereal crops such as sorghum ( Sorghum bicolor L. Moench) depends on the distribution of crop-heads in varying branching arrangements. Therefore, counting the head number per unit area is critical for plant breeders to correlate with the genotypic variation in a specific breeding field. However, measuring such phenotypic traits manually is an extremely labor-intensive process and suffers from low efficiency and human errors. Moreover, the process is almost infeasible for large-scale breeding plantations or experiments. Machine learning-based approaches like deep convolutional neural network (CNN) based object detectors are promising tools for efficient object detection and counting. However, a significant limitation of such deep learning-based approaches is that they typically require a massive amount of hand-labeled images for training, which is still a tedious process. Here, we propose an active learning inspired weakly supervised deep learning framework for sorghum head detection and counting from UAV-based images. We demonstrate that it is possible to significantly reduce human labeling effort without compromising final model performance ( R 2 between human count and machine count is 0.88) by using a semitrained CNN model (i.e., trained with limited labeled data) to perform synthetic annotation. In addition, we also visualize key features that the network learns. This improves trustworthiness by enabling users to better understand and trust the decisions that the trained deep learning model makes.
Why it matches plant phenotyping methodsUAV画像からソルガム穂数を検出・計数する弱教師あり深層学習手法を開発し、人的計数との性能も検証しており、植物表現型取得が研究の中心です。
abstractHere, we propose an active learning inspired weakly supervised deep learning framework for sorghum head detection and counting from UAV-based images.
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicThe codes used for generating results and reproducing the results presented in this work are available at DeepSorghumHead ( https://github.com/oceam/DeepSorghumHead ).Open asset ↗DeepSorghumHeadlines:66-80Code / dataset availability confirmedOpenAlex · Europe PMC · checked 9 Sept 2026
RNA-based silencing functions as an important antiviral immunity mechanism in plants. Plant viruses evolved to encode viral suppressors of RNA silencing (VSRs) that interfere with the function of key components in the silencing pathway. As effectors in the RNA silencing pathway, ARGONAUTE (AGO) proteins are targeted by some VSRs, such as that encoded by Turnip crinkle virus (TCV). A VSR-deficient TCV mutant was used to identify AGO proteins with antiviral activities during infection. A quantitative phenotyping protocol using an image-based color trait analysis pipeline on the PlantCV platform, with temporal red, green, and blue imaging and a computational segmentation algorithm, was used to measure plant disease after TCV inoculation. This process captured and analyzed growth and leaf color of Arabidopsis (Arabidopsis thaliana) plants in response to virus infection over time. By combining this quantitative phenotypic data with molecular assays to detect local and systemic virus accumulation, AGO2, AGO3, and AGO7 were shown to play antiviral roles during TCV infection. In leaves, AGO2 and AGO7 functioned as prominent nonadditive, anti-TCV effectors, whereas AGO3 played a minor role. Other AGOs were required to protect inflorescence tissues against TCV. Overall, these results indicate that distinct AGO proteins have specialized, modular roles in antiviral defense across different tissues, and demonstrate the effectiveness of image-based phenotyping to quantify disease progression.
Why it matches plant phenotyping methodsPlantCVを用いた画像ベースの色・成長形質解析とセグメンテーションによる病害進行の定量化が明示され、感染植物の表現型取得・解析が主要な方法的貢献として扱われている。
abstractA quantitative phenotyping protocol using an image-based color trait analysis pipeline on the PlantCV platform, with temporal red, green, and blue imaging and a computational segmentation algorithm, was used to measure plant disease after TCV inoculation.
Reproduction assets foundThe paper explicitly deposits its PlantCV/R image-analysis code on GitHub and its raw input images, analyzed output images, and analysis results on Figshare, both with public URLs stated in the Image Analysis section.Code · publicThe PlantCV and R analysis code and result files are available at GitHub ( https://github.com/carringtonlab/tcv-image-analysis ).Open asset ↗carringtonlab/tcv-image-analysislines:178-192Dataset · publicThe raw input images, the analyzed output images, and analysis results are available at Figshare ( https://doi.org/10.6084/m9.figshare.7599923 ).Open asset ↗10.6084/m9.figshare.7599923lines:178-192Code / dataset availability confirmedEurope PMC · OpenAlex · checked 15 Sept 2026
Increasing popularity of high-throughput phenotyping technologies, such as image-based phenotyping, offer novel ways for quantifying plant growth and morphology. These new methods can be more or less accurate and precise than traditional, manual measurements. Many large-scale phenotyping efforts are conducted to enable genome-wide association studies (GWAS), but it is unclear exactly how alternative methods of phenotyping will affect GWAS results. In this study we simulate phenotypes that are controlled by the same set of causal loci but have differing heritability, similar to two different measurements of the same morphological character. We then perform GWAS with the simulated traits and create receiver operating characteristic (ROC) curves from the results. The areas under the ROC curves (AUCs) provide a metric that allows direct comparisons of GWAS results from different simulated traits. We use this framework to evaluate the effects of heritability and the number of causative loci on the AUCs of simulated traits; we also test the differences between AUCs of traits with differing heritability. We find that both increasing the number of causative loci and decreasing the heritability reduce a trait's AUC. We also find that when two traits are controlled by a greater number of causative loci, they are more likely to have significantly different AUCs as the difference between their heritabilities increases. When simulation results are applied to measures of tassel morphology, we find no significant difference between AUCs from GWAS using manual and image-based measurements of typical maize tassel characters. This finding indicates that both measurement methods have similar ability to identify genetic associations. These results provide a framework for deciding between competing phenotyping strategies when the ultimate goal is to generate and use phenotype-genotype associations from GWAS.
Why it matches plant phenotyping methods異なる植物表現型測定法(手動測定と画像測定)がGWAS結果に与える影響を評価する枠組みを開発・検証し、トウモロコシの雄穂形態で適用しているため、表現型取得法の比較が中心である。
abstractWe use this framework to evaluate the effects of heritability and the number of causative loci on the AUCs of simulated traits
Reproduction assets foundThe paper's supplemental material on Figshare (which includes the tassel phenotype data used for the manual vs. image-based GWAS comparisons) is publicly available at an allowed URL. The authors' analysis scripts (github.com/joegage/GWAS_AUC) and genotypic data (Dryad doi:10.5061/dryad.6tg35t6) are mentioned but their Supplement · publicsame AUC for each character at each NCL.
Data availability
Genotypic data are available from doi: 10.5061/dryad.6tg35t6. Phenotypic data for tassel traits are available in Supplemental File S3 from Gage et al. (2018) . Scripts for analysis can be found at github.com/joegage/GWAS_AUC. Supplemental material available at Figshare: https://doi.org/10.25386/genetics.7097813 .
Results
Manual and image-based phenotypes are highly correlatedOpen asset ↗Figshare · 10.25386/genetics.7097813lines:41-51Code / dataset availability confirmedEurope PMC · checked 10 Sept 2026
Sorghum ( Sorghum bicolor L. Moench) is a C4 tropical grass that plays an essential role in providing nutrition to humans and livestock, particularly in marginal rainfall environments. The timing of head development and the number of heads per unit area are key adaptation traits to consider in agronomy and breeding but are time consuming and labor intensive to measure. We propose a two-step machine-based image processing method to detect and count the number of heads from high-resolution images captured by unmanned aerial vehicles (UAVs) in a breeding trial. To demonstrate the performance of the proposed method, 52 images were manually labeled; the precision and recall of head detection were 0.87 and 0.98, respectively, and the coefficient of determination ( R 2 ) between the manual and new methods of counting was 0.84. To verify the utility of the method in breeding programs, a geolocation-based plot segmentation method was applied to pre-processed ortho-mosaic images to extract >1000 plots from original RGB images. Forty of these plots were randomly selected and labeled manually; the precision and recall of detection were 0.82 and 0.98, respectively, and the coefficient of determination between manual and algorithm counting was 0.56, with the major source of error being related to the morphology of plants resulting in heads being displayed both within and outside the plot in which the plants were sown, i.e., being allocated to a neighboring plot. Finally, the potential applications in yield estimation from UAV-based imagery from agronomy experiments and scouting of production fields are also discussed.
Why it matches plant phenotyping methodsUAV画像からソルガムの穂の外観と数を抽出する画像処理法を開発し、手動ラベルとの精度・再現性を検証しており、植物形質取得法が研究の中心である。
abstractWe propose a two-step machine-based image processing method to detect and count the number of heads from high-resolution images captured by unmanned aerial vehicles (UAVs) in a breeding trial.
Reproduction assets foundThe paper's sorghum head detection/counting training data and manually labeled image datasets (Datasets 1 and 2) are explicitly stated to be available in the article's Supplementary Materials, hosted at the Frontiers supplementary-material URL. This is a paper-specific, publicly accessible asset containing the phenotypDataset · publicTo aid in this growth, datasets 1 and 2 along with the manual labeling used in this study are available in the Supplementary Materials .Open asset ↗lines:410-460Code / dataset availability confirmedOpenAlex · Crossref · Europe PMC · checked 10 Sept 2026
The accuracy of machine learning tasks critically depends on high quality ground truth data. Therefore, in many cases, producing good ground truth data typically involves trained professionals; however, this can be costly in time, effort, and money. Here we explore the use of crowdsourcing to generate a large number of training data of good quality. We explore an image analysis task involving the segmentation of corn tassels from images taken in a field setting. We investigate the accuracy, speed and other quality metrics when this task is performed by students for academic credit, Amazon MTurk workers, and Master Amazon MTurk workers. We conclude that the Amazon MTurk and Master Mturk workers perform significantly better than the for-credit students, but with no significant difference between the two MTurk worker types. Furthermore, the quality of the segmentation produced by Amazon MTurk workers rivals that of an expert worker. We provide best practices to assess the quality of ground truth data, and to compare data quality produced by different sources. We conclude that properly managed crowdsourcing can be used to establish large volumes of viable ground truth data at a low cost and high quality, especially in the context of high throughput plant phenotyping. We also provide several metrics for assessing the quality of the generated datasets.
Why it matches plant phenotyping methods植物フェノタイピング画像のタッセル分割について、クラウドソーシングによる教師データ生成の品質・速度・評価指標を検証しており、表現型取得ワークフローが中心です。
abstractHere we explore the use of crowdsourcing to generate a large number of training data of good quality.
Reproduction assets foundThe paper's crowdsourced corn tassel bounding-box annotations (phenotyping measurements) are publicly deposited on figshare, and the analysis software is on GitHub, both explicitly stated in the Data Availability statement and Methods.Dataset · publicData Availability: The software for this project is available from: https://github.com/ashleyzhou972/Crowdsource-Corn-Tassels . The data for this project are available from: https://doi.org/10.6084/m9.figshare.6360236.v2 .Open asset ↗figshare · 10.6084/m9.figshare.6360236.v2lines:201-240Code · publicThe software for this study is available from: https://github.com/ashleyzhou972/Crowdsource-Corn-TasselsOpen asset ↗github · ashleyzhou972/Crowdsource-Corn-Tasselslines:257-277Code / dataset availability confirmedOpenAlex · Europe PMC · checked 10 Sept 2026
The model species Arabidopsis thaliana has extensive resources to investigate intraspecific trait variability and the genetic bases of ecologically relevant traits. However, the cost of equipment and software required for high-throughput phenotyping is often a bottleneck for large-scale studies, such as mutant screening or quantitative genetics analyses. Simple tools are needed for the measurement of fitness-related traits, like relative growth rate and fruit production, without investment in expensive infrastructures. Here, we describe methods that enable the estimation of biomass accumulation and fruit number from the analysis of rosette and inflorescence images taken with a regular camera. We developed two models to predict plant dry mass and fruit number from the parameters extracted with the analysis of rosette and inflorescence images. Predictive models were trained by sacrificing growing individuals for dry mass estimation, and manually measuring a fraction of individuals for fruit number at maturity. Using a cross-validation approach, we showed that quantitative parameters extracted from image analysis predicts more 90% of both plant dry mass and fruit number. When used on 451 natural accessions, the method allowed modeling growth dynamics, including relative growth rate, throughout the life cycle of various ecotypes. Estimated growth-related traits had high heritability (0.65 < H 2 < 0.93), as well as estimated fruit number ( H 2 = 0.68). In addition, we validated the method for estimating fruit number with rev5 , a mutant with increased flower abortion. The method we propose here is an application of automated computerization of plant images with ImageJ, and subsequent statistical modeling in R. It allows plant biologists to measure growth dynamics and fruit number in hundreds of individuals with simple computing steps that can be repeated and adjusted to a wide range of laboratory conditions. It is thus a flexible toolkit for the measurement of fitness-related traits in large populations of a model species.
Why it matches plant phenotyping methods画像から植物乾物重・果実数・成長動態を推定する手法を開発し、交差検証と変異体で検証しており、表現型取得・推定法が研究の中心である。
abstractHere, we describe methods that enable the estimation of biomass accumulation and fruit number from the analysis of rosette and inflorescence images taken with a regular camera.
Reproduction assets foundThe paper's availability statement explicitly links authors' code on GitHub and the phenotypic dataset on Dryad; supplementary files also contain the ImageJ macros and R code used for the phenotyping analysis.Code · publicCodes are available on Github ( https://github.com/fvasseur ), and phenotypic data are available on the Dryad repository ( https://doi.org/10.5061/dryad.343bd84 ) [ 43 ].Open asset ↗github.com/fvasseurlines:312-394Dataset · publicphenotypic data are available on the Dryad repository ( https://doi.org/10.5061/dryad.343bd84 ) [ 43 ].Open asset ↗Dryad · 10.5061/dryad.343bd84lines:312-394Code / dataset availability confirmedEurope PMC · checked 10 Sept 2026
Background Rice panicle phenotyping is important in rice breeding, and rice panicle segmentation is the first and key step for image-based panicle phenotyping. Because of the challenge of illumination differentials, panicle shape deformations, rice accession variations, different reproductive stages and the field's complex background, rice panicle segmentation in the field is a very large challenge. Results In this paper, we propose a rice panicle segmentation algorithm called Panicle-SEG, which is based on simple linear iterative clustering superpixel regions generation, convolutional neural network classification and entropy rate superpixel optimization. To build the Panicle-SEG-CNN model and test the segmentation effects, 684 training images and 48 testing images were randomly selected, respectively. Six indicators, including Qseg, Sr, SSIM, Precision, Recall and F-measure, are employed to evaluate the segmentation effects, and the average segmentation results for the 48 testing samples are 0.626, 0.730, 0.891, 0.821, 0.730, and 76.73%, respectively. Compared with other segmentation approaches, including HSeg, i2 hysteresis thresholding and jointSeg, the proposed Panicle-SEG algorithm has better performance on segmentation accuracy. Meanwhile, the executing speed is also improved when combined with multithreading and CUDA parallel acceleration. Moreover, Panicle-SEG was demonstrated to be a robust segmentation algorithm, which can be expanded for different rice accessions, different field environments, different camera angles, different reproductive stages, and indoor rice images. The testing dataset and segmentation software are available online. Conclusions In conclusion, the results demonstrate that Panicle-SEG is a robust method for panicle segmentation, and it creates a new opportunity for nondestructive yield estimation.
Why it matches plant phenotyping methodsイネ穂の画像ベース表現型解析に用いるセグメンテーション手法を開発・比較検証し、ソフトウェアとデータセットも提供しているため、方法が中心的である。
abstractrice panicle segmentation is the first and key step for image-based panicle phenotyping
Reproduction assets foundThe paper's 48 testing rice panicle images and the Panicle-SEG segmentation software (CPU/GPU installers) are explicitly stated to be publicly available online at the authors' Huazhong Agricultural University plant phenomics site, with access credentials provided in the article.Dataset · publicThe whole testing images and the Panicle-SEG installation file in CPU/GPU mode are available online at: http://plantphenomics.hzau.edu.cn/checkiflogin_en.action (username: UserPP; password: 20170108pp)Open asset ↗plantphenomics.hzau.edu.cnlines:45-48Code / dataset availability confirmedCrossref · Europe PMC · OpenAlex · checked 15 Sept 2026
Background In maize, silks are hundreds of filaments that simultaneously emerge from the ear for collecting pollen over a period of 1-7 days, which largely determines grain number especially under water deficit. Silk growth is a major trait for drought tolerance in maize, but its phenotyping is difficult at throughputs needed for genetic analyses. Results We have developed a reproducible pipeline that follows ear and silk growths every day for hundreds of plants, based on an ear detection algorithm that drives a robotized camera for obtaining detailed images of ears and silks. We first select, among 12 whole-plant side views, those best suited for detecting ear position. Images are segmented, the stem pixels are labelled and the ear position is identified based on changes in width along the stem. A mobile camera is then automatically positioned in real time at 30 cm from the ear, for a detailed picture in which silks are identified based on texture and colour. This allows analysis of the time course of ear and silk growths of thousands of plants. The pipeline was tested on a panel of 60 maize hybrids in the PHENOARCH phenotyping platform. Over 360 plants, ear position was correctly estimated in 86% of cases, before it could be visually assessed. Silk growth rate, estimated on all plants, decreased with time consistent with literature. The pipeline allowed clear identification of the effects of genotypes and water deficit on the rate and duration of silk growth. Conclusions The pipeline presented here, which combines computer vision, machine learning and robotics, provides a powerful tool for large-scale genetic analyses of the control of reproductive growth to changes in environmental conditions in a non-invasive and automatized way. It is available as Open Source software in the OpenAlea platform.
Why it matches plant phenotyping methodsトウモロコシの穂と絹糸の成長形質を高スループットに取得する画像・ロボティクス・機械学習パイプラインを開発し、精度検証と遺伝子型・水分欠 deficitへの適用を行っているため、植物表現型計測法が中心である。
abstractWe have developed a reproducible pipeline that follows ear and silk growths every day for hundreds of plants, based on an ear detection algorithm that drives a robotized camera for obtaining detailed images of ears and silks.
Reproduction assets foundThe paper's ear/silk phenotyping pipeline code (eartrack) is publicly available on GitHub with documentation, and the authors deposited subsets of the whole-plant images and ear images with the Ilastik project/outputs on Zenodo. All are paper-specific, public, and actionable.Code · publicalie Luchaire, Benoît Suard, Thomas Laisné, Luciana Galizia, Alexandra Manset-Sarcos, Awaz Mohamed and Adel Meziane for their help in conducting the experiment.
Competing interests
The authors declare that they have no competing interests.
Availability of data and materials
The source code and examples are available on Github ( https://github.com/openalea/eartrack ) under an Open Source license (CeCILL-C). It has been integrated as a reusable package in the OpenAlea platform [ 54 , 55 ]. User and developer documentation is also available at http://eartrack.readthedocs.io . A subset of whole plant images is available at https://zenodo.org/record/1002675 and a subset of ear images, IlastikOpen asset ↗openalea/eartracklines:170-209Code · publico competing interests.
Availability of data and materials
The source code and examples are available on Github ( https://github.com/openalea/eartrack ) under an Open Source license (CeCILL-C). It has been integrated as a reusable package in the OpenAlea platform [ 54 , 55 ]. User and developer documentation is also available at http://eartrack.readthedocs.io . A subset of whole plant images is available at https://zenodo.org/record/1002675 and a subset of ear images, Ilastik project and outputs are available at https://zenodo.org/record/1002173 . It requires Python 2.7 and OpenCV libraries.
Consent for publication
All the authors have approved the manuscript and have made all requiOpen asset ↗lines:170-209Code / dataset availability confirmedEurope PMC · OpenAlex · checked 10 Sept 2026
Background Accurately counting maize tassels is important for monitoring the growth status of maize plants. This tedious task, however, is still mainly done by manual efforts. In the context of modern plant phenotyping, automating this task is required to meet the need of large-scale analysis of genotype and phenotype. In recent years, computer vision technologies have experienced a significant breakthrough due to the emergence of large-scale datasets and increased computational resources. Naturally image-based approaches have also received much attention in plant-related studies. Yet a fact is that most image-based systems for plant phenotyping are deployed under controlled laboratory environment. When transferring the application scenario to unconstrained in-field conditions, intrinsic and extrinsic variations in the wild pose great challenges for accurate counting of maize tassels, which goes beyond the ability of conventional image processing techniques. This calls for further robust computer vision approaches to address in-field variations. Results This paper studies the in-field counting problem of maize tassels. To our knowledge, this is the first time that a plant-related counting problem is considered using computer vision technologies under unconstrained field-based environment. With 361 field images collected in four experimental fields across China between 2010 and 2015 and corresponding manually-labelled dotted annotations, a novel Maize Tassels Counting ( MTC ) dataset is created and will be released with this paper. To alleviate the in-field challenges, a deep convolutional neural network-based approach termed TasselNet is proposed. TasselNet can achieve good adaptability to in-field variations via modelling the local visual characteristics of field images and regressing the local counts of maize tassels. Extensive results on the MTC dataset demonstrate that TasselNet outperforms other state-of-the-art approaches by large margins and achieves the overall best counting performance, with a mean absolute error of 6.6 and a mean squared error of 9.6 averaged over 8 test sequences. Conclusions TasselNet can achieve robust in-field counting of maize tassels with a relatively high degree of accuracy. Our experimental evaluations also suggest several good practices for practitioners working on maize-tassel-like counting problems. It is worth noting that, though the counting errors have been greatly reduced by TasselNet, in-field counting of maize tassels remains an open and unsolved problem.
Why it matches plant phenotyping methodsトウモロコシ雄穂数という植物形態形質を、圃場画像から推定する深層学習手法を開発・評価し、データセットも作成しているため、フェノタイピング手法が中心である。
abstractIn the context of modern plant phenotyping, automating this task is required to meet the need of large-scale analysis of genotype and phenotype.
Reproduction assets foundThe paper's MTC dataset (361 field images with manually-labelled dotted tassel annotations) is explicitly stated to be publicly released online at the authors' site.Dataset · publicThe MTC dataset and other supporting materials are available online at: https://sites.google.com/site/poppinace/ .Open asset ↗lines:1796-1869Code / dataset availability confirmedEurope PMC · OpenAlex · checked 10 Sept 2026
Background Wheat is one of the most widely grown crop in temperate climates for food and animal feed. In order to meet the demands of the predicted population increase in an ever-changing climate, wheat production needs to dramatically increase. Spike and grain traits are critical determinants of final yield and grain uniformity a commercially desired trait, but their analysis is laborious and often requires destructive harvest. One of the current challenges is to develop an accurate, non-destructive method for spike and grain trait analysis capable of handling large populations. Results In this study we describe the development of a robust method for the accurate extraction and measurement of spike and grain morphometric parameters from images acquired by X-ray micro-computed tomography (μCT). The image analysis pipeline developed automatically identifies plant material of interest in μCT images, performs image analysis, and extracts morphometric data. As a proof of principle, this integrated methodology was used to analyse the spikes from a population of wheat plants subjected to high temperatures under two different water regimes. Temperature has a negative effect on spike height and grain number with the middle of the spike being the most affected region. The data also confirmed that increased grain volume was correlated with the decrease in grain number under mild stress. Conclusions Being able to quickly measure plant phenotypes in a non-destructive manner is crucial to advance our understanding of gene function and the effects of the environment. We report on the development of an image analysis pipeline capable of accurately and reliably extracting spike and grain traits from crops without the loss of positional information. This methodology was applied to the analysis of wheat spikes can be readily applied to other economically important crop species.
Why it matches plant phenotyping methodsX線マイクロCT画像からコムギの穂・粒形態形質を自動抽出・測定する画像解析パイプラインの開発が研究の中心であり、実データへの適用も行っている。
abstractwe describe the development of a robust method for the accurate extraction and measurement of spike and grain morphometric parameters from images acquired by X-ray micro-computed tomography (μCT).
Reproduction assets foundThe paper's μCT wheat grain phenotyping pipeline is publicly available: author analysis code (microCT_grain_analyser, ISQ-Reader on GitHub) and the reconstructed 3D volumes/segmented images and trait datasets in the Aberystwyth University research data catalogue.Code · publicAll the source code as well as user instructions are available from https://github.com/NPPC-UK/microCT_grain_analyser .Open asset ↗NPPC-UK/microCT_grain_analyserlines:49-62Dataset · publicAll reconstructed 3D volumes and segmented images can be accessed at https://www.aber.ac.uk/en/research/data-catalogue/a11df174-d73d-4443-a7fd-ab5b7039df79/ [ 30 ].Open asset ↗lines:49-62Code / dataset availability confirmedEurope PMC · checked 14 Sept 2026
Background The spike of a cereal plant is the grain-bearing organ whose physical characteristics are proxy measures of grain yield. The ability to detect and characterise spikes from 2D images of cereal plants, such as wheat, therefore provides vital information on tiller number and yield potential. Results We have developed a novel spike detection method for wheat plants involving, firstly, an improved colour index method for plant segmentation and, secondly, a neural network-based method using Laws texture energy for spike detection. The spike detection step was further improved by removing noise using an area and height threshold. The evaluation results showed an accuracy of over 80% in identification of spikes. In the proposed method we also measure the area of individual spikes as well as all spikes of individual plants under different experimental conditions. The correlation between the final average grain yield and spike area is also discussed in this paper. Conclusions Our highly accurate yield trait phenotyping method for spike number counting and spike area estimation, is useful and reliable not only for grain yield estimation but also for detecting and quantifying subtle phenotypic variations arising from genetic or environmental differences.
Why it matches plant phenotyping methods小麦の穂数・穂面積を画像から抽出するニューラルネットワーク手法を開発・評価しており、植物表現型取得が研究の中心です。
abstractWe have developed a novel spike detection method for wheat plants involving, firstly, an improved colour index method for plant segmentation and, secondly, a neural network-based method using Laws texture energy for spike detection.
Reproduction assets found保存済みの本文根拠を更新済みルールで再検証し、公開資産1件を確認しました。Code · publicThe Matlab programs and sample data are available from https://sourceforge.net/projects/spike-detection .Open asset ↗spike-detectionlines:189-225Code / dataset availability confirmedOpenAlex · Europe PMC · checked 15 Sept 2026
Number of spikelets per panicle (NSP) is a key trait to increase yield potential in rice (O. sativa). The architecture of the rice inflorescence which is mainly determined by the length and number of primary (PBL and PBN) and secondary (SBL and SBN) branches can influence NSP. Although several genes controlling panicle architecture and NSP in rice have been identified, there is little evidence of (i) the genetic control of panicle architecture and NSP in different environments and (ii) the presence of stable genetic associations with panicle architecture across environments. This study combines image phenotyping of 225 accessions belonging to a genetic diversity array of indica rice grown under irrigated field condition in two different environments and Genome Wide Association Studies (GWAS) based on the genotyping of the diversity panel, providing 83,374 SNPs. Accessions sown under direct seeding in one environement had reduced Panicle Length (PL), NSP, PBN, PBL, SBN and SBL compared to those established under transplanting in the second environment. Across environments, NSP was significantly and positively correlated with PBN, SBN and PBL. However, the length of branches (PBL and SBL) was not significantly correlated with variables related to number of branches (PBN and SBN ), suggesting independent genetic control.Twenty- three GWAS sites were detected with P-values ≤ 1.0E-04 and 27 GWAS sites with p ≤ 5.9E-04. We found 17 GWAS sites related to NSP, 10 for PBN and 11 for SBN, 7 for PBL and 11 for SBL. This study revealed new regions related to NSP, but only three associations were related to both branching number (PBN and SBN) and NSP. Two GWAS sites associated with SBL and SBN were stable across contrasting environments and were not related to genes previously reported. The new regions reported in this study can help improving NSP in rice for both direct seeded and transplanted conditions. The integrated approach of high-throughput phenotyping, multi-environment field trials and GWAS has the potential to dissect complex traits, such as NSP, into less complex traits and to match single nucleotide polymorphisms with relevant function under different environments, offering a potential use for molecular breeding.
Why it matches plant phenotyping methods画像フェノタイピングを用いてイネの穂・分枝形態を大規模かつ複数環境で評価し、GWASと統合しているため、表現型取得法の応用が研究の中心です。
abstractThis study combines image phenotyping of 225 accessions belonging to a genetic diversity array of indica rice grown under irrigated field condition in two different environments
Reproduction assets foundThe paper's supplementary material (including Table S1 accession list and Table S3 phenotypic measurements from the panicle image analysis of 1,350 panicles across two field trials) is publicly available online at the Frontiers article URL. No author analysis code or trained models are explicitly deposited; P-TRAP is aSupplement · publicmental setup and Image Analysis using PTRAP.
Conflict of interest
The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.
Supplementary material
The Supplementary Material for this article can be found online at: http://journal.frontiersin.org/article/10.3389/fpls.2016.01384
References
1
AL-Tam F. Adam H. dos Anjos A. Lorieux M. Larmande P. Ghesquière A. et al . ( 2013 ). P-TRAP: a panicle trait phenotyping tool . BMC Plant Biol. 13 : 122 . 10.1186/1471-2229-13-122
Pubmed Abstract
CrossRef
Google Scholar
View reference in article
2
Ando T. Yamamoto T. Shimizu T. Ma X. F. ShomuOpen asset ↗lines:725-766