Navigation

Introduction to AI

Machine Learning

Deep Learning

Generative AI

Tools & Frameworks

General

AI for Accessibility

Accessibility technology has historically been limited by what rule-based systems and manual engineering could achieve. AI — particularly deep learning applied to vision, speech, and language — is dramatically expanding what is possible, making tools more accurate, adaptive, and personalised for people with a wide spectrum of disabilities.

Screen Readers and Visual Accessibility

Approximately 2.2 billion people globally experience vision impairment. AI enhances access to digital and physical environments in several ways.

Intelligent Image Description

Traditional alt text depends on authors manually annotating images. AI-powered systems generate rich descriptions automatically:

  • Scene understanding models (e.g., Microsoft Seeing AI, BLIP-2, LLaVA) describe photographs, document layouts, and on-screen UI elements
  • OCR and document parsing — modern vision-language models handle tables, forms, and handwriting that classical OCR misses
  • Real-time navigation — smartphone cameras combined with depth sensors and object detection guide users around obstacles, identify people, read signs, and describe surroundings
from transformers import BlipProcessor, BlipForConditionalGeneration
from PIL import Image

processor = BlipProcessor.from_pretrained("Salesforce/blip-image-captioning-large")
model = BlipForConditionalGeneration.from_pretrained("Salesforce/blip-image-captioning-large")

image = Image.open("scene.jpg")
inputs = processor(image, return_tensors="pt")
caption = model.generate(**inputs)
print(processor.decode(caption[0], skip_special_tokens=True))

Contrast, Magnification, and Colour Adaptation

AI personalises display settings dynamically based on ambient lighting, user history, and eye-tracking data — going beyond fixed accessibility preferences.

Real-Time Captioning and Sign Language

Automatic Speech Recognition (ASR)

Transformer-based ASR models such as Whisper achieve near-human word error rates on standard benchmarks and handle diverse accents, noise, and overlapping speech. Real-time captioning applications include:

  • Live event and meeting captioning — automated subtitles for deaf and hard-of-hearing users (Google Live Caption, Microsoft Azure Speech)
  • Hearing aid enhancement — AI separates target speech from background noise in hearing devices
  • Speaker diarisation — identifies who is speaking when, improving caption readability in multi-speaker contexts

Sign Language Recognition and Generation

  • Recognition — pose estimation models track hand shapes, movements, and facial expressions, translating sign language to text or spoken language
  • Generation — avatar-based synthesis systems translate spoken or written language to signed output, supporting users producing or consuming sign language

Current limitations include the enormous diversity of sign languages (ASL, BSL, Auslan) and the lack of large labelled datasets for low-resource sign systems.

Augmentative and Alternative Communication

Augmentative and Alternative Communication (AAC) devices help people who are non-speaking or have severely limited speech communicate. AI dramatically improves these systems.

Predictive Symbol and Word Selection

Language models trained on AAC corpus data predict which symbols or words a user is likely to select next, reducing the number of selections required to compose a message. This is critical for users with slow or high-effort motor access.

Eye-Tracking and Gaze Input

  • Convolutional neural network models track gaze position from standard cameras without expensive dedicated hardware
  • Combined with dwell-based or blink-activated selection, eye-tracking provides effective keyboard and communication board access
  • Commercially deployed in products such as Tobii Dynavox and Windows Eye Control

Brain-Computer Interfaces

BCI research using EEG and intracortical arrays combined with neural decoding models has demonstrated direct transcription of intended handwriting and speech from brain activity. Clinical trials show paralysed patients achieving communication speeds exceeding 60 words per minute.

Motor Impairment and Physical Assistance

Switch and Alternative Input Optimisation

  • AI adapts dwell time, scanning speed, and layout to individual motor patterns, minimising fatigue and error rates
  • Head tracking, facial expression, and tongue-actuated input systems use pose estimation models for hands-free computer control

Robotic Assistance

  • Robotic arms controlled via brain signals or residual muscle activity (EMG) assist with feeding, object manipulation, and hygiene
  • Reinforcement learning agents refine grasp policies from limited demonstrations, compensating for system latency and user variability

Smart Prosthetics

Machine learning models interpret residual limb muscle signals (pattern recognition control) to map intended movement to prosthetic motion, achieving more intuitive control than conventional strategies.

Cognitive and Learning Accessibility

Dyslexia and Reading Support

  • Text simplification models convert complex documents to plain language without losing key information
  • Predictive text and autocorrection tuned for phonetic spelling patterns assist users with dyslexia
  • Personalised reading overlays adjust spacing, font, and background colour based on user preference profiles

Memory and Executive Function Support

  • AI-powered reminder systems prompt medication, appointments, and daily tasks based on routine learning
  • Smart calendars combine NLP with contextual reminders, reducing cognitive load for users with acquired brain injuries or ADHD

Autism Spectrum Support

  • Social coaching tools use camera-based affect recognition to provide real-time feedback on facial expressions and conversation cues
  • Structured routine apps use machine learning to learn individual preferences and reduce schedule unpredictability

Challenges and Ethical Considerations

ChallengeDescription
Data scarcityDisability-specific datasets are small, limiting generalisation
Representation gapsModels trained on neurotypical or able-bodied data underperform for disabled users
PrivacyGaze, EEG, and health data are sensitive and require strong protections
Cost and accessAdvanced AI tools must remain affordable and work on low-cost devices
Autonomy and dignityAI must support user agency rather than making paternalistic decisions
Over-relianceDependency on AI systems can create new accessibility barriers if systems fail

Co-design with disabled users throughout development — from requirements gathering to usability testing — is essential to building tools that genuinely serve their needs rather than reflecting assumptions made by non-disabled developers.

Key Frameworks and Standards

  • Web Content Accessibility Guidelines (WCAG) 2.2 — defines perceivable, operable, understandable, and robust web content
  • Accessibility for Ontarians with Disabilities Act (AODA) and ADA — legal requirements in Canada and the USA
  • Microsoft Accessibility Fundamentals and Google Material Accessibility — design system guidance for accessible interfaces
  • ISO 9241-171 — ergonomics of human-system interaction for accessible software

AI built for accessibility must comply with these standards as a baseline, then extend beyond compliance to provide genuinely improving outcomes for diverse users.