Editing
Attention and Perception
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Simulating a Visual Search Task (Feature vs. Conjunction Search):''' <syntaxhighlight lang="python"> import random import time def simulate_visual_search(n_items, search_type='feature'): """ Simulates the reaction time logic of a visual search. 'feature': Search for a red 'O' among green 'O's (Parallel). 'conjunction': Search for a red 'O' among green 'O's and red 'X's (Serial). """ # Feature search is independent of set size if search_type == 'feature': base_rt = 400 # ms noise = random.uniform(0, 20) return base_rt + noise # Conjunction search increases linearly with set size elif search_type == 'conjunction': base_rt = 400 per_item_cost = 20 # ms per item scanned return base_rt + (n_items * per_item_cost) + random.uniform(0, 50) # Compare set sizes 10 vs 50 print(f"Feature Search (10 items): {simulate_visual_search(10, 'feature'):.1f}ms") print(f"Feature Search (50 items): {simulate_visual_search(50, 'feature'):.1f}ms") print(f"Conjunction Search (10 items): {simulate_visual_search(10, 'conjunction'):.1f}ms") print(f"Conjunction Search (50 items): {simulate_visual_search(50, 'conjunction'):.1f}ms") # Feature search time is flat; conjunction search time scales with complexity. </syntaxhighlight> ; Design Applications : '''User Interface (UI) Design''' β Using Gestalt principles (grouping, contrast) to guide user attention. : '''Aviation/Driving''' β Understanding the limits of divided attention to prevent "cognitive tunneling." : '''Advertising''' β Using "bottom-up" salience (bright colors, movement) to capture reflexive attention. : '''Gaming''' β Managing cognitive load so players don't miss critical cues (inattentional blindness). </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information