<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IoU threshold &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/iou-threshold/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Wed, 23 Sep 2026 21:09:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>IoU threshold &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>Smart Frame Selection Slashes Video AI Training Time Without Losing Accuracy</title>
		<link>https://scienmag.com/smart-frame-selection-slashes-video-ai-training-time-without-losing-accuracy/</link>
		
		<dc:creator><![CDATA[Drew Townsend]]></dc:creator>
		<pubDate>Wed, 23 Sep 2026 21:09:59 +0000</pubDate>
				<category><![CDATA[Biology]]></category>
		<category><![CDATA[AI training efficiency]]></category>
		<category><![CDATA[bounding box-based frame selection]]></category>
		<category><![CDATA[bounding boxes]]></category>
		<category><![CDATA[computer vision]]></category>
		<category><![CDATA[computer vision data curation]]></category>
		<category><![CDATA[continuous video stream processing]]></category>
		<category><![CDATA[cross-domain fusion]]></category>
		<category><![CDATA[data-centric AI]]></category>
		<category><![CDATA[drone imagery data management]]></category>
		<category><![CDATA[efficient training pipelines for video AI]]></category>
		<category><![CDATA[frame sampling]]></category>
		<category><![CDATA[IoU threshold]]></category>
		<category><![CDATA[reducing training time without accuracy loss]]></category>
		<category><![CDATA[redundant video frame reduction]]></category>
		<category><![CDATA[smart frame sampling]]></category>
		<category><![CDATA[surveillance]]></category>
		<category><![CDATA[surveillance footage optimization]]></category>
		<category><![CDATA[temporal redundancy]]></category>
		<category><![CDATA[training efficiency]]></category>
		<category><![CDATA[video object detection]]></category>
		<category><![CDATA[video stream analysis]]></category>
		<category><![CDATA[VisDrone-VID]]></category>
		<category><![CDATA[YOLO]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=210321</guid>

					<description><![CDATA[Researchers have developed an object-state-based frame-sampling method that trains video object detectors up to 7.7 times faster than full-data training while matching or exceeding its accuracy.]]></description>
										<content:encoded><![CDATA[<p>Video has become one of the most demanding data types in modern computer vision. Object detection models that perform impressively on single photographs, from Faster R-CNN to YOLO and DETR, run into an unexpected problem when they are pointed at continuous video streams: most of the frames are essentially the same picture. Adjacent frames in surveillance footage, dashcam recordings, or drone imagery tend to show nearly identical backgrounds and barely changed object positions, yet conventional training pipelines treat every one of those frames as an equally valuable learning example. A new study published in the open-access journal Heliyon by Hwayong Jeong and Sangmin Lee proposes a way out of this wasteful cycle, and the results suggest that the future of efficient video AI may lie not in bigger models but in smarter data curation.</p>
<p>The core insight behind the research is deceptively simple. If a detector&#8217;s supervision comes from bounding boxes drawn around objects, then a frame is only truly informative when the state of those boxes changes in a meaningful way. A car parked at a curb for four hundred consecutive frames contributes almost nothing beyond its first appearance. The researchers therefore built a frame-sampling framework that tracks each visible object individually, stores a reference box for it, and keeps a new frame only when at least one object has changed enough relative to its stored reference. The change is measured with the Intersection-over-Union metric, a standard geometric overlap score used throughout detection research, which makes the entire selection rule lightweight and independent of any particular detector architecture.</p>
<p>The mechanics of the sampler are worth examining because they encode a philosophy about what matters in video supervision. The method first discards background-only prefixes before any annotated object appears, eliminating long stretches of empty footage that would otherwise waste gradient steps. It then automatically retains the first frame of every active segment, captures the birth of every newly appearing object, and triggers on substantial box-level changes such as movement, rescaling, or pose shifts. When an object disappears, its anchor is removed; if it reappears, it is treated as a fresh birth. A tunable IoU threshold, denoted tau, controls the sensitivity of this trigger: lower values demand larger deviations and produce sparser subsets, while higher values retain frames more frequently and preserve more temporal continuity at the cost of reintroducing redundancy.</p>
<p>The team evaluated the framework primarily on VisDrone-VID, a challenging aerial benchmark containing 24,198 annotated training frames crowded with small vehicles and pedestrians. The threshold sweep revealed a non-monotonic relationship between compression and accuracy that the authors describe as a continuity-redundancy trade-off. Training on the full dataset yielded a mean average precision of 0.122, while the strictest setting, tau equal to zero, compressed the data to just 5,432 frames and actually improved accuracy to 0.125. The sweet spot arrived at tau equal to 0.2, which retained 8,916 frames and pushed accuracy to 0.130, comfortably above full-data training while using roughly a third of the frames. Gains concentrated in medium and large objects, with small-object performance changing only marginally across settings.</p>
<p>The efficiency implications are striking. Running on two NVIDIA RTX 4080 Super GPUs under an equal-epoch protocol, the strictest sampling setting trained approximately 7.7 times faster than full-data training while still achieving higher accuracy. The tau 0.2 setting trained about 4.7 times faster with a larger accuracy gain. For organizations training detection models on massive video archives, from autonomous driving companies to surveillance operators, that kind of speedup translates directly into reduced compute cost and faster iteration cycles, all without modifying the detector itself or adding any inference-time computation.</p>
<p>Under a stricter matched-budget comparison at the 5,432-frame level, the proposed sampler reached 0.1230 mean average precision across three random seeds, essentially matching the full-data result of 0.1233 while slightly outperforming uniform thinning at 0.1213, random sampling at 0.1210, and a motion-based baseline at 0.1187. The margins over simple thinning were modest, and the authors are candid about why: in object-dense benchmarks like VisDrone, nearly every candidate frame already contains supervised objects, so even random thinning retains useful examples. A complementary experiment with the YOLO26n detector showed the proposed method achieving the best recall and mean average precision, though full-data training retained higher precision, underscoring that the method delivers stable compressed performance rather than uniform dominance across every metric.</p>
<p>Two additional public diagnostics sharpened the picture of when object-aware curation matters most. On KITTI, a driving dataset where 96.36 percent of frames contain pseudo-positive boxes, the proposed sampler again topped the compressed methods but by small margins, and event-coverage analysis revealed its distinctive strength: it preserved 100 percent of object-birth events and 98.8 percent of top object-change events, whereas the motion-based baseline sacrificed births to chase large displacements. The contrast came on the Snapshot Kgalagadi wildlife dataset, a background-dominant stream where empty frames abound. There, uniform and random thinning degraded relative to full training, while the proposed method reached 0.3878 mean average precision against 0.3623 for uniform sampling, demonstrating that object-aware selection pays off precisely when background redundancy dominates.</p>
<p>The researchers also connected their geometric selection rule to the actual training signal inside detectors. Across VisDrone-VID, KITTI, and Kgalagadi, frames selected by the sampler consistently showed higher average gradient norms and higher losses than discarded or unselected control frames, including when the control set was restricted to object-containing frames in Kgalagadi. While the authors caution that this does not mean the sampler directly optimizes gradients, the pattern supports the central intuition: object-state change serves as a practical proxy for frames that carry stronger supervisory value, allowing offline curation to concentrate the training budget where learning actually happens.</p>
<p>Finally, the study demonstrated an operational workflow on a proprietary corpus of 2,387 fixed-camera CCTV sequences containing over 2.1 million extracted frames and more than 12 million annotated objects. Because raw footage could not be exported, the team used a pre-trained teacher model to generate candidate boxes, verified them with human annotators, and then fine-tuned a deployable detector on the curated subset. Light temporal padding of one intermediate frame between key frames improved both convergence speed and final accuracy across most classes. The team also tested cross-domain fusion, adding class-aligned images from MS COCO and BDD100K while keeping CCTV as the anchor domain, and found class-dependent benefits: motorcycles and trucks gained most from COCO imagery, while bicycles peaked with BDD100K, and combining all three sources produced the best overall average. The lesson is that sampling and fusion play separate, complementary roles, with sampling cutting redundancy and fusion broadening appearance diversity.</p>
<p>The study is explicit about its limits. The sampler operates offline using ground-truth or teacher-generated boxes and does not adapt to detector state during training, its IoU trigger captures geometric change but can miss appearance-only shifts that occur without box displacement, and its advantage over simple thinning is regime-dependent rather than universal. Even so, the broader message lands with force. At a moment when the field often reaches for larger models and more compute, this work argues that asking which frames deserve to be learned from can be just as powerful, cutting training costs by several-fold while preserving, and sometimes improving, the accuracy of the detectors that watch our roads, skies, and streets.</p>
<p><strong>Subject of Research:</strong> Object-state-based frame sampling for efficient training of video object detection models</p>
<p><strong>Article Title:</strong> Object-state-based frame sampling for efficient video object detection</p>
<p><strong>Article References:</strong> Jeong, H., &amp; Lee, S. (2026). Object-state-based frame sampling for efficient video object detection. <em>Heliyon, 12</em>(15), Article e45426. <a href="https://doi.org/10.1016/j.heliyon.2026.e45426" rel="noopener noreferrer">https://doi.org/10.1016/j.heliyon.2026.e45426</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1016/j.heliyon.2026.e45426" rel="noopener noreferrer">10.1016/j.heliyon.2026.e45426</a></p>
<p><strong>Keywords:</strong> video object detection, frame sampling, computer vision, temporal redundancy, IoU threshold, data-centric AI, surveillance, VisDrone-VID, YOLO, training efficiency, bounding boxes, cross-domain fusion</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">210321</post-id>	</item>
	</channel>
</rss>
