<?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>facial expression recognition &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/facial-expression-recognition/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Wed, 23 Sep 2026 21:44:27 +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>facial expression recognition &#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>Hybrid AI With Attention Achieves Record Face Expression Recognition Accuracy</title>
		<link>https://scienmag.com/hybrid-ai-with-attention-achieves-record-face-expression-recognition-accuracy/</link>
		
		<dc:creator><![CDATA[Blake Davidson]]></dc:creator>
		<pubDate>Wed, 23 Sep 2026 21:44:27 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[attention mechanism]]></category>
		<category><![CDATA[attention-driven modules in computer vision]]></category>
		<category><![CDATA[benchmark datasets for emotion classification]]></category>
		<category><![CDATA[challenges of real-world facial expression recognition]]></category>
		<category><![CDATA[computer vision]]></category>
		<category><![CDATA[convolutional neural networks]]></category>
		<category><![CDATA[convolutional neural networks for emotion detection]]></category>
		<category><![CDATA[deep learning]]></category>
		<category><![CDATA[deep learning for emotion analysis]]></category>
		<category><![CDATA[facial expression recognition]]></category>
		<category><![CDATA[FER2013]]></category>
		<category><![CDATA[head pose variation in facial recognition]]></category>
		<category><![CDATA[high-accuracy emotion recognition models]]></category>
		<category><![CDATA[hybrid deep learning architecture]]></category>
		<category><![CDATA[multi-dataset evaluation in facial expression analysis]]></category>
		<category><![CDATA[multi-scale convolution]]></category>
		<category><![CDATA[occlusion]]></category>
		<category><![CDATA[pose variation]]></category>
		<category><![CDATA[RAF-DB]]></category>
		<category><![CDATA[resilience of AI models to visual variability]]></category>
		<category><![CDATA[ResNet-50]]></category>
		<category><![CDATA[robustness to occlusions in facial analysis]]></category>
		<category><![CDATA[VGG 16]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=210545</guid>

					<description><![CDATA[A Moroccan research team has developed a hybrid convolutional neural network with local and global attention modules that reaches 95.87 percent accuracy in facial expression recognition across multiple benchmarks.]]></description>
										<content:encoded><![CDATA[<p>Facial expression recognition has long been one of the most deceptively difficult problems in computer vision. While humans read emotions from faces almost instantaneously, machines struggle with the sheer variability of real-world conditions: heads tilt, light shifts, glasses glint, hands partially cover mouths, and every face is unique. A new study published in Multimedia Tools and Applications by Abderrahim Ouza and Ali Choukri of Ibn Tofail University in Kenitra, Morocco, together with Mohamed El Ghmary of Mohammed V University in Rabat, tackles precisely these weaknesses. The team has built a hybrid deep learning architecture that combines two classic convolutional neural network backbones with attention-driven modules, and the results are striking. Across multiple benchmark datasets, including RAF-DB, FER2013 and CK+, the model reaches an accuracy of 95.87 percent, while showing markedly stronger resilience to occlusions and head pose changes than conventional approaches, even when tested on data drawn from a different dataset than the one used in training.</p>
<p>The central insight behind the work is that robust expression recognition requires two complementary kinds of visual understanding. The first is local: emotions are encoded in subtle movements of specific facial regions, such as the slight raising of the inner eyebrows that signals worry, or the tightening of the muscles around the eyes that distinguishes a genuine smile from a polite one. The second is global: the spatial arrangement of the entire face, the relationships between regions, and the overall configuration of features all contribute to how an expression is perceived. Most existing architectures emphasize one of these dimensions at the expense of the other. Purely convolutional pipelines excel at extracting local texture patterns but can miss long-range dependencies, while transformer-style models capture global context yet sometimes overlook the fine-grained local cues that carry the emotional signal.</p>
<p>To resolve this tension, the researchers designed a hybrid model that mixes several ResNet-50 branches with VGG-16 backbones. ResNet-50, with its residual connections, allows very deep networks to be trained without the vanishing gradient problems that once stalled deep learning, and it produces rich hierarchical feature maps. VGG-16, an older but still powerful architecture, is prized for its simple stack of small convolution filters that systematically capture texture at fine scale. By fusing representations from both families of networks, the model inherits the strengths of each: the depth-adapted abstractions of ResNet-50 and the fine-textured detail of VGG-16. The authors then attach two purpose-built modules on top of this fused backbone to refine what the networks see and how they interpret it.</p>
<p>The first of these is the Local Feature Enhancement, or LFE, module. Its role is to amplify the subtle variations that occur in the principal facial regions most relevant to emotional expression. In practical terms, the module learns to weight the feature maps so that informative local patterns, such as the curvature of the lips or the degree of eyelid opening, are emphasized while less relevant background or redundant information is suppressed. This kind of learned emphasis matters enormously in expression recognition, where the difference between two emotions can hinge on a few pixels. Without such focusing, a network may spread its capacity evenly across the image and fail to register the discriminative details that separate sadness from neutrality in a low-resolution photograph.</p>
<p>The second component, the Global Information Association, or GIA, module, works at the opposite end of the spatial scale. It captures the global structure of the face, modeling how distant regions of the image relate to one another. An expression is not merely a sum of parts; a raised mouth corner reads as joy only in combination with relaxed eyes, whereas the same mouth movement alongside furrowed brows may indicate a different state entirely. By associating information across the whole face, the GIA module gives the network a holistic understanding of the expression, allowing it to integrate the locally enhanced features into a coherent global interpretation.</p>
<p>Between these two modules, the architecture deploys a multi-scale convolutional design together with a self-attention-based approach known as ACMix. Multi-scale convolution means that the network examines the face simultaneously at several receptive field sizes, from small windows that catch fine wrinkles to larger windows that span whole facial regions. This mirrors the way human vision processes faces at multiple resolutions, and it helps the model remain accurate when faces appear at different sizes or distances. The self-attention mechanism, meanwhile, allows every part of the feature representation to dynamically attend to every other part, computing relevance weights on the fly. ACMix blends convolutional inductive biases with attention-style global reasoning, which improves the model&#8217;s stability under the challenging conditions, such as unusual illumination or partial occlusion, that routinely break less flexible architectures.</p>
<p>Evaluation was carried out on three of the most widely used benchmarks in the field. RAF-DB contains thousands of real-world, in-the-wild faces annotated with expressions, capturing the messy variety of unconstrained photography. FER2013, the dataset used for training and evaluation, is freely available through Kaggle and comprises more than 35,000 grayscale images cataloged across seven emotion categories: anger, disgust, fear, happiness, sadness, surprise and neutral expressions, including multiple views of the same subjects, making it the largest such resource of its kind. CK+ offers carefully controlled laboratory sequences with well-defined expressions, providing a complementary test of discriminative power. Achieving 95.87 percent accuracy across these tests places the hybrid model among the strongest performers reported in the literature, and the authors emphasize that its advantage grows when conditions become difficult, such as when glasses, scarves or hands obscure parts of the face, or when the head is rotated away from the camera.</p>
<p>Particularly notable is the model&#8217;s behavior in cross-dataset testing, one of the most demanding evaluations in expression recognition. A system trained on one dataset and tested on another must cope with differences in lighting, demographics, image quality and labeling conventions, and accuracy typically drops sharply in such settings. The Moroccan team reports that their model shows superior robustness under exactly these conditions, suggesting that the combination of local enhancement, global association and attention produces features that generalize rather than merely memorize dataset-specific quirks. This generalization is precisely the property that separates laboratory demonstrations from technology that can function reliably outside controlled environments, and it is a key reason the authors argue their approach is suited to real-world applications.</p>
<p>The potential applications span several domains where reading a face accurately is not a luxury but a safety requirement. In healthcare, precise identification of emotions can support monitoring of patients who cannot communicate verbally, alerting clinicians to pain or distress. In driver monitoring systems, a camera that reliably detects fatigue, distraction or confusion even when the driver&#8217;s face is partly occluded or turned could help prevent accidents. The authors point to these use cases, where missing a critical emotional state carries real consequences, as the natural fit for their architecture. The work was conducted with institutional resources at Ibn Tofail University and Sidi Mohamed Ben Abdellah University in Morocco, without external funding, and the datasets underpinning the study are openly available under appropriate licenses, which should make it straightforward for other research groups to reproduce and extend the results.</p>
<p>As facial expression recognition moves from the research bench into cars, clinics and everyday devices, studies like this one illustrate the recipe that is emerging as the field&#8217;s consensus: hybrid backbones that unite complementary convolutional designs, explicit modules for local detail and global context, and attention mechanisms that let the network decide what matters in each image. By combining ResNet-50 and VGG-16 with the LFE, GIA and ACMix components, the Moroccan team has demonstrated that this layered strategy can push accuracy toward 96 percent while keeping the model dependable when the real world, with its shadows, angles and obstructions, refuses to cooperate. The full details of the architecture and experiments are available in the article published in Multimedia Tools and Applications, volume 85, article number 775.</p>
<p><strong>Subject of Research:</strong> Hybrid deep learning with attention mechanisms for robust facial expression recognition</p>
<p><strong>Article Title:</strong> Hybrid convolutional neural network with attention mechanism to provide robust face expression recognition</p>
<p><strong>Article References:</strong> Ouza, A., Ghmary, M. E., &amp; Choukri, A. (2026). Hybrid convolutional neural network with attention mechanism to provide robust face expression recognition. <em>Multimedia Tools and Applications, 85</em>(10), Article 775. <a href="https://doi.org/10.1007/s11042-026-21933-z" rel="noopener noreferrer">https://doi.org/10.1007/s11042-026-21933-z</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s11042-026-21933-z" rel="noopener noreferrer">10.1007/s11042-026-21933-z</a></p>
<p><strong>Keywords:</strong> facial expression recognition, deep learning, convolutional neural networks, attention mechanism, ResNet-50, VGG-16, multi-scale convolution, occlusion, pose variation, RAF-DB, FER2013, computer vision</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">210545</post-id>	</item>
		<item>
		<title>Approach-Avoidance Behavior Influences Facial Expression Recognition</title>
		<link>https://scienmag.com/approach-avoidance-behavior-influences-facial-expression-recognition/</link>
		
		<dc:creator><![CDATA[Courtney Benton]]></dc:creator>
		<pubDate>Tue, 14 Oct 2025 16:13:59 +0000</pubDate>
				<category><![CDATA[Social Science]]></category>
		<category><![CDATA[approach-avoidance behavior]]></category>
		<category><![CDATA[bodily movement and emotion]]></category>
		<category><![CDATA[cognitive neurotechnology research]]></category>
		<category><![CDATA[dynamic facial expressions study]]></category>
		<category><![CDATA[emotional judgment influenced by movement]]></category>
		<category><![CDATA[emotional perception and interpretation]]></category>
		<category><![CDATA[facial expression recognition]]></category>
		<category><![CDATA[human interaction with avatars]]></category>
		<category><![CDATA[immersive environments in research]]></category>
		<category><![CDATA[psychophysical methods in psychology]]></category>
		<category><![CDATA[social communication dynamics]]></category>
		<category><![CDATA[virtual reality in psychology]]></category>
		<guid isPermaLink="false">https://scienmag.com/approach-avoidance-behavior-influences-facial-expression-recognition/</guid>

					<description><![CDATA[A groundbreaking study emerging from the Cognitive Neurotechnology Unit and Visual Perception and Cognition Laboratory at Toyohashi University of Technology has unveiled a fascinating link between bodily movement and the perception of facial expressions. This research expands our understanding of social communication by demonstrating that not only do the facial expressions of others influence how [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>A groundbreaking study emerging from the Cognitive Neurotechnology Unit and Visual Perception and Cognition Laboratory at Toyohashi University of Technology has unveiled a fascinating link between bodily movement and the perception of facial expressions. This research expands our understanding of social communication by demonstrating that not only do the facial expressions of others influence how we behave, but our own physical approach or avoidance actions actively alter how we interpret the emotions displayed by others&#8217; faces.</p>
<p>In their innovative exploration, the researchers harnessed the immersive environment of virtual reality (VR) to dissect the complex interplay between motion and emotional recognition. Utilizing psychophysical methods, participants wore head-mounted displays to interact with 3D avatars depicting dynamic facial expressions. By manipulating whether participants themselves approached or retreated from these avatars—or conversely whether the avatars moved towards or away from the participants—the investigators meticulously parsed how these different movement conditions impacted emotional judgment.</p>
<p>Four distinct approach–avoidance scenarios formed the core of the experiment: active approach, wherein participants moved toward the avatar; active avoidance, with participants stepping away; passive approach, characterized by the avatar advancing toward the participant; and passive avoidance, where the avatar retreated. This paradigm was paired with faces that morphed along an emotional continuum ranging from happiness to anger or fear, enabling precise measurement of recognition thresholds and biases.</p>
<p>A particularly compelling finding emerged: when participants actively moved away from the avatars—engaging in avoidance behavior—they were more inclined to label ambiguous facial expressions as “angry,” compared to scenarios in which the avatar itself moved away from the participant. This suggests that the motor action of avoidance intensifies the perception of threat, potentially rendering faces more hostile in the observer’s cognition. Such an outcome underscores a bidirectional synergy between perception and action within social contexts, where not only does the environment shape our behavior, but our movement reciprocally shapes perceptual processing.</p>
<p>These insights also bear significant implications for modern communication modalities. As highlighted by Yugo Kobayashi, the study’s first author and doctoral candidate, the limited bodily movement afforded by video conferencing and other remote interaction tools might hinder the natural interpretative processes of facial expressions. The bodily actions integral to face-to-face encounters could facilitate more instinctive and accurate emotional recognition, emphasizing the innate link between sensorimotor engagement and social cognition.</p>
<p>Delving deeper into the neural mechanisms, this research enriches a growing body of evidence illustrating how motor signals and proprioceptive feedback intertwine with visual perception pathways. It hints at the involvement of higher-order integration centers, possibly within the visual cortex and associated limbic areas, orchestrating the modulation of affective signals in accordance with self-generated motor commands. These dynamics could recalibrate sensory interpretations based on self-initiated avoidance, amplifying sensitivity to potential threats conveyed through facial cues.</p>
<p>The experimental design’s sophistication—leveraging morphing between emotional expressions—offers a nuanced probe into the threshold where happiness cedes to anger or fear in the perceiver’s mind. This fine-grained measurement facilitates a quantifiable link between approach/avoidance actions and categorical shifts in emotional perception, advancing methodologies for dissecting social cognition with remarkable precision.</p>
<p>Looking ahead, the researchers plan to uncover which specific components of approach-avoidance behavior exert predominant influence. Key avenues include disentangling the role of motor intention—the deliberate planning of movement—from mere visual motion cues or the proprioceptive sensations of bodily displacement. Is the cognitive anticipation of avoidance sufficient to bias emotion recognition, or must actual movement and sensory feedback co-occur?</p>
<p>The broader social ramifications are manifold. Understanding how embodied actions shape emotion perception refines psychological models that have traditionally emphasized unidirectional influences from expression to observer. It also opens pathways for therapeutic interventions in social disorders, where distorted perception-action loops might underlie misinterpretations and maladaptive social behavior.</p>
<p>This study’s support by the Japan Society for the Promotion of Science (JSPS KAKENHI) and other foundations underscores its significance within the scientific community, promising to stimulate further interdisciplinary research at the intersection of cognitive neuroscience, affective engineering, and virtual reality technologies.</p>
<p>By framing facial recognition within the dynamic sensorimotor context of approach–avoidance movement, this pioneering work challenges us to reconsider the tacit but powerful role that our own bodies play in decoding the emotions of those around us. It suggests a future where VR platforms may be harnessed not just for immersive experiences, but for enhancing emotional intelligence and social attunement through embodied interaction.</p>
<p>As video-mediated communication continues to rise globally, insights like these could shape design strategies that reintroduce embodied cues, counteracting the flattening effect of screen-based interaction on emotional understanding. This bridges theoretical neuroscience with practical social challenges, highlighting the irreplaceable value of face-to-face bodily engagement in human connection.</p>
<p>This exploration of the psychophysical foundations of emotion recognition in VR affirms that social perception is an inherently active process, sensitive to the nuances of our own movements. It invites a new paradigm that blurs the boundaries between perceiver and environment, action and cognition, body and mind, painting a more integrated picture of how we navigate the emotional landscape of others.</p>
<hr />
<p><strong>Subject of Research</strong>: Not applicable</p>
<p><strong>Article Title</strong>: Facial expression recognition is modulated by approach–avoidance behavior</p>
<p><strong>News Publication Date</strong>: 31-Jul-2025</p>
<p><strong>Web References</strong>: <a href="http://dx.doi.org/10.5057/ijae.IJAE-D-24-00049">http://dx.doi.org/10.5057/ijae.IJAE-D-24-00049</a></p>
<p><strong>Image Credits</strong>: COPYRIGHT(C)TOYOHASHI UNIVERSITY OF TECHNOLOGY. ALL RIGHTS RESERVED.</p>
<p><strong>Keywords</strong>: Visual cortex, Perception</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">90766</post-id>	</item>
	</channel>
</rss>
