...
Engaged with Tech
YouTube
Flipboard
𝕏
No Result
View All Result
  • Artificial intelligence
  • Business
  • Smartphones
  • Science
  • Automotive
  • Cybersecurity
  • Crypto
  • Gaming
  • Military
  • Research
  • How to
  • About
    • About & Contacts
    • Privacy policy
    • Terms & Conditions
    • Editorial Code of Conduct
  • Artificial intelligence
  • Business
  • Smartphones
  • Science
  • Automotive
  • Cybersecurity
  • Crypto
  • Gaming
  • Military
  • Research
  • How to
  • About
    • About & Contacts
    • Privacy policy
    • Terms & Conditions
    • Editorial Code of Conduct
No Result
View All Result
TechGaged.com
No Result
View All Result
𝕏

How to make ‘glasses’ that transcribe text to audio for the blind

by Ana Zirojević
March 20, 2025
in Computer & IT, How to, Science, WEARABLES
How to make ‘glasses’ that transcribe text to audio for the blind

How to make ‘glasses’ that transcribe text to audio for the blind

Headgear that could help people with visual impairment perceive text by reading it out aloud in real-time isn’t a novel concept but making it by yourself at home for your loved ones might be – and an eighth-grade student has succeeded in doing just that.

Indeed, Akhil Nagori, who is a member of the 49ers STEM Leadership Institute, has created ‘glasses’ that aren’t intended for traditional seeing but are outfitted with hardware to capture text and read it aloud, sharing the entire process online in both text and video on YouTube, helping others accomplish the same.

Specifically, the setup is pretty simple for anyone with just a tad of technological inclination and includes a Raspberry Pi Zero 2W that runs off a 3.7-volt lithium-ion battery (ideally with more than 1.2 amps) and is outfitted with a classic first-party camera, like the Mini Raspberry Pi Camera Module. 

The camera is mounted on a set of eyeglass frames so that it points at whatever the person wearing it might be ‘looking’ at. All it takes is a push of a button, and the camera will capture the image, passing it on to an API that does the optical character recognition, and further onto a speech synthesizer so it can be read aloud to the wearer. 

Other necessary tools include jumper wires (male-to-male), two mini speakers, PLA basic filament (like Bambu Lab’s), MT3608 step-up power boost converter, soldering iron, PCB circuit board, 3D printer, and Raspbian CLI software, with the total cost of such a setup estimated at below $69.

Equipment for transcribing glasses. Source: Akhil Nagori / Instructables
Equipment for transcribing glasses. Source: Akhil Nagori / Instructables

Step 1: Text to audio glasses software

Nagori explained how he deployed the process, which included using a fast API that runs a subprocess that allows it to call the camera capture from inside the code which needs to be uploaded to the Raspberry Pi. 

Update your system

To begin, you’ll need to enable SSH on the Raspberry Pi, “so you can use the terminal directly through your other computer.” Furthermore, before installing dependencies, you’ll need to update your Raspberry Pi.

bash

sudo apt update && sudo apt upgrade -y

Enable the camera

To enable the camera if using Raspberry Pi OS, open Raspberry Pi configuration:

bash

sudo raspi-config

Go to Interfacing Options → Camera → Enable.

Reboot your Raspberry Pi:

bash

sudo reboot

Install required software

Then, install the required software, including Python dependencies:

bash

pip install RPi.GPIO requests espeakng opencv-python

Test if RPi.GPIO is installed:

bash

python3 -c “import RPi.GPIO; print(‘RPi.GPIO is installed!’)”

Write the Python code

Now it’s time to write the Python code, first creating a new Python script:

bash

nano button_ocr.py

Paste the following complete script:

import RPi.GPIO as GPIO
import requests
import espeakng
import cv2
import subprocess
import time

# Define GPIO pin for the button
BUTTON_PIN = 17

# Set up GPIO
GPIO.setmode(GPIO.BCM) # Use BCM pin numbering
GPIO.setup(BUTTON_PIN, GPIO.IN, pull_up_down=GPIO.PUD_DOWN) # Internal pull-down

def capture_and_process():
“””Captures an image, processes it with OCR, and converts text to speech.”””
image_path = “captured.jpg”
# Capture image using libcamera-jpeg
subprocess.run([“libcamera-jpeg”, “-o”, image_path, “–width”, “640”, “–height”, “480”])
# Verify if image was saved
image = cv2.imread(image_path)
if image is None:
print(“❌ Failed to capture image!”)
return
print(“✅ Image captured successfully!”)

# OCR function
def ocr_space_file(filename, api_key=’helloworld’, language=’auto’, ocr_engine=2):
api_url = ‘https://api.ocr.space/parse/image’
payload = {
‘isOverlayRequired’: False,
‘apikey’: api_key,
‘language’: language,
‘OCREngine’: ocr_engine,
}
with open(filename, ‘rb’) as f:
response = requests.post(api_url, files={‘filename’: f}, data=payload)

if response.status_code == 200:
result = response.json()
if ‘ParsedResults’ in result and result[‘ParsedResults’]:
return result[‘ParsedResults’][0].get(‘ParsedText’, ”).strip()
else:
print(“⚠️ No text found in the image.”)
return “”
else:
print(f”❌ OCR Error: {response.status_code}, {response.text}”)
return “”

# Run OCR
text = ocr_space_file(image_path)

if text:
print(f”📝 Extracted Text: {text}”)
# Convert text to speech
tts = espeakng.Speaker()
tts.wpm = 100
tts.say(text.replace(“\r\n”, ” “), wait4prev=True)
else:
print(“⚠️ No text extracted from the image.”)

# Main loop to wait for button press
print(“🚀 Waiting for button press to capture an image…”)

try:
while True:
if GPIO.input(BUTTON_PIN) == GPIO.HIGH: # Button is pressed
print(“🔘 Button Pressed! Capturing image…”)
capture_and_process()
time.sleep(1) # Debounce delay
except KeyboardInterrupt:
print(“\n🛑 Program terminated.”)
GPIO.cleanup() # Clean up GPIO settings

Save the file (CTRL + X, then Y, then ENTER).

Running the program

Run the script:

python3 button_ocr.py
The program will wait for a button press.
Press the button → It captures an image.
The OCR extracts text.
The text is spoken using espeakng.

After taking these steps, you’ll be ready to run the code. Upload the main.py file and tts.py file to the Raspberry Pi, and copy the code from tts.py to the end of main.py, so they run in one execution. Now, you should have working text-to-audio glasses, but you must replace the test image in main.py with <imagename>.jpg. 

As Nagori explained, “this will be used later when setting up the sound to the raspberry pi.”

Step 2: Text to audio glasses hardware

Our young programmer then uploaded the files needed to print on a 3D printer, alongside using the software for your printer to slice the uploaded .stl file.

One of the glasses’ images for the 3D printer. Source: Akhil Nagori / Instructables

ReadNext

Study shows Saturn’s moon Titan could host early cell structures

Study shows Saturn’s moon Titan could host early cell structures

July 15, 2025
Internet users now spend a shocking 11 hours and 34 minutes weekly watching online videos, the equivalent of 25 full days each year.

Streaming madness: internet users now spend 25 days a year watching videos online

July 15, 2025
Study: Driver assist system warnings can lead to worse driving

Study: Driver assist system warnings can lead to worse driving

July 14, 2025
FIFA Club World Cup trials cutting-edge ref tech in 2025

FIFA Club World Cup trials cutting-edge ref tech in 2025

July 14, 2025
New study shows VR works fast for people with psychosis

New study shows VR works fast for people with psychosis

July 11, 2025
Scientist’s cat helps identify brand-new virus strain - again

Scientist’s cat helps identify brand-new virus strain – again

July 11, 2025

Conclusion

Today’s world is more visually-impaired-friendly than before, but there is still plenty of text that isn’t translated in a form understandable to the afflicted (in braille, audio, etc.). With his project, Nagori wanted to address this problem and provide visually impaired people with access to more written text.

As he pointed out:

“We successfully developed a prototype system that uses a Raspberry Pi, a camera module, and a push-button interface to capture images, extract text using Optical Character Recognition (OCR), and read the text aloud using text-to-speech (TTS) technology.”

On top of that, he “implemented OCR using the OCR.space API and integrated espeakng for speech output,” and optimized the system to “function effectively in various lighting conditions and text formats, ensuring accessibility and ease of use.” 

Nagori’s project outline. Source: Akhil Nagori / Instructables

This way, Nagori said he had demonstrated the “feasibility of a low-cost assistive device that enhances independence and daily interactions with printed text.” And it’s true – artificial intelligence (AI) glasses might be all the rage now, but solutions such as this one have the chance to help those who can’t use them yet.

Watch the demo of Nagori’s project at work:

SUBSCRIBE to our YouTube channel ▶️
The iPhone revolutionized how we interact with technology – but the secret behind its magic? A nearly-cancelled invention called the multi-touch screen.
The Invention That Made iPhones Possible
The iPhone revolutionized how we interact with technology – but the secret behind its magic? A nearly-cancelled invention called the multi-touch screen.

In this video, we uncover the untold story of the tech that made the iPhone possible, including:
🧠 The early days of resistive touchscreens and why they failed to excite.
🎤 The groundbreaking TED Talk by Jeff Han that stunned the tech world.
🧪 Apple’s top-secret lab and its acquisition of FingerWorks technology.
⚔️ Internal battles at Apple – and how Steve Jobs made a high-stakes gamble.
🚀 The iconic iPhone 2007 launch that changed everything.
🌍 What happened to the inventors – and how multi-touch went mainstream.

Whether you're a tech history buff, UI/UX designer, or just curious about the hidden innovations behind your phone, this deep dive explores how vision, risk, and persistence brought a forgotten piece of tech to life.

💡 Curious about who really controls the internet? Check out this eye-opening video on the 7 physical keys that keep the web safe:
👉 https://youtu.be/6Harw2RiiEE

📌 Subscribe for more tech deep dives and behind-the-scenes innovation stories.
#iPhone #MultiTouch #SteveJobs #TechHistory #UserInterface #AppleTech #hiddentech 

Sources & links:
Jeff Han TED Talk (Feb 2006): https://www.ted.com/talks/jeff_han_the_radical_promise_of_the_multi_touch_interface
FingerWorks Wikipedia page (acquired by Apple early 2005): https://en.wikipedia.org/wiki/FingerWorks
Hidden Heroes on Project Purple & FingerWorks: https://hiddenheroes.netguru.com/hurst-han-kocienda
TED speaker profile & demo descriptions: https://www.ted.com/speakers/jeff_han
History Oasis summary of Apple’s FingerWorks acquisition: https://www.historyoasis.com/post/apples-acquisitions-mergers-over-the-years
Wired interview with Jeff Han: https://www.wired.com/2008/08/jeff-han-were-just-scratching-the-surface-of-multitouch/
Multi-touch historical context, Apple Wiki: https://apple.fandom.com/wiki/Multi-touch
Apple Insider on FingerWorks tech transition: https://appleinsider.com/articles/10/01/23/inside_the_multitouch_fingerworks_tech_in_apples_tablet
First-gen iPhone development history: https://en.wikipedia.org/wiki/IPhone_(1st_generation)
Timeline of touchscreen tech and multitouch demo descriptions: https://arstechnica.com/gadgets/2013/04/from-touch-displays-to-the-surface-a-brief-history-of-touchscreen-technology/
TED: https://www.youtube.com/watch?v=ac0E6deG4AU
Protectstar Inc.: https://www.youtube.com/watch?v=VQKMoT-6XSg&t=2945s
Secret Tech That Made iPhone Possible — And Almost Got Cancelled
Fulghor, Champion of Nightglow, is an absolute menace — easily one of the toughest bosses in Nightreign. Pulling off a true NO DAMAGE, completely SOLO run took quite some attempts and it finally happened.

This is the full fight — no commentary, just raw, uncut gameplay. I hope you enjoy watching it as much as I enjoyed learning it.

Also, if you're into behind-the-scenes game dev stuff, check out this amazing deep dive into Elden Ring’s creation:
► https://www.youtube.com/watch?v=8S7LGmM4iNQ

Thanks for being here. Let me know which boss you want to see next (or name a boss from any PS5 game).

#Nightreign #NoDamage #BossFight #PS5
Beating FULGHOR Under 3 MINUTES [NO DAMAGE +SOLO] Champion of Nightglow in Elden Ring NIGHTREIGN
Maris, Fathom of Night is a relentless Nightlord — and pulling off a true NO DAMAGE, completely SOLO run took some serious sweat. But finally… it happened.

This is the full fight — no commentary, just raw gameplay. I hope you enjoy watching it as much as I suffered learning it.

Also, check out this video that reveals some fascinating truths behind Elden Ring’s creation:
► https://www.youtube.com/watch?v=8S7LGmM4iNQ

Thanks for being here. Let me know which boss you’d like to see next (or name a boss from ANY PS5 game).

#EldenRing #Nightreign #NoDamage #BossFight
NO DAMAGE [SOLO]: Beating MARIS, FATHOM OF NIGHT in Elden Ring NIGHTREIGN
"This isn’t a car...
It’s a mechanical monster."

Over 5,000 horsepower.
Built to destroy speed limits.

They call it the Devel Sixteen —
But barely anyone talks about it.

No production car even comes close.
Not a Bugatti. Not a Koenigsegg.

Top speed? Claimed 560 km/h.
That’s faster than a fighter jet on the runway.

Sounds insane?
That’s because it is.
5,000 HP+ BEAST No One's Talking About #shorts
George R.R. Martin and Hidetaka Miyazaki created Elden Ring—a game of legendary scale—without ever meeting in person. This shocking behind-the-scenes fact shows just how powerful remote collaboration can be.

Hit subscribe for more insane facts from the world of gaming and development! 🎮🔥

#EldenRing #GamingFacts #FromSoftware #GeorgeRRMartin #Miyazaki #EldenRingLore #Shorts
Elden Ring Was Created Like THIS?! 🤯 #shorts
The Devel Sixteen is one of the most ambitious hypercar projects ever conceived — boasting an unprecedented 5,000 horsepower and top speeds that challenge the boundaries of what’s technically and physically possible.

In this video, we explore the story behind the Devel Sixteen, including:
🔧 The extreme engineering and design principles behind the vehicle.

📈 Performance claims and how they compare to existing hypercars.

🌍 The vision of the Dubai-based creators and their goals for the automotive industry.

💬 Industry skepticism — and why this car remains one of the most controversial builds to date.

Whether you're an automotive engineer, performance enthusiast, or simply curious about the future of ultra-high-performance vehicles, this video takes a measured look at a car that continues to spark global debate.

📌 Subscribe for more in-depth automotive analysis and features.

#DevelSixteen #Hypercar #AutomotiveEngineering #PerformanceCars #SupercarTech

Sources & links:
Devel Sixteen Overview - The Arsenale: https://thearsenale.com/products/devel-sixteen
Devel Motors: https://www.develmotors.com/
Devel Sixteen: https://www.youtube.com/@develsixteen3746

Supercar Blondie:
https://www.youtube.com/watch?v=n5GF7V7rEGU&t=701s
https://www.youtube.com/watch?v=d9yQTChJT8E&t=475s
337 SPEED: https://www.youtube.com/watch?v=OwipWt96MmU&t=92s  
Patrick3331: https://www.youtube.com/watch?v=3kv2w0teSOE
World Of Super Cars: https://www.youtube.com/watch?v=2UvU4vnwGnE
Steve Morris Engines: https://www.youtube.com/watch?v=HiEL_J_wYSg
TheRuggedRoost: https://www.youtube.com/shorts/4QZbrI5lCCw
Jalopy Jeff: https://www.youtube.com/watch?v=Frhcbu67ewk
garagecarseg: https://www.youtube.com/shorts/e6-9Gy1JoTE
videopower1: https://www.youtube.com/watch?v=QIc-9UuLSmg
zeroundersteer: https://www.youtube.com/watch?v=RmASgipBMFY
Global Data: https://www.youtube.com/watch?v=XyKGJm2OxjM
9EPlC: https://www.youtube.com/shorts/4QM_sLtaE2U
Devel Sixteen: The 5,000 HP Hypercar You Won't Believe Exists
How was Elden Ring really created? From Miyazaki’s vision to George R.R. Martin’s worldbuilding, discover the crazy story behind one of the greatest games ever made! 🎮🔥
#EldenRing #Gaming #Shorts
Elden Ring’s Crazy Origin Story #shorts
Before his death, J. Robert Oppenheimer, the man behind the atomic bomb, said something that still chills the world. His words were more than just regret—they were a warning. Discover the quote that echoed through history and changed how we view power, war, and science forever.

💬 What do you think about Oppenheimer’s final message?
👇 Comment below & don't forget to subscribe for more mind-blowing history facts!
Atomic Bomb Creator’s Final Words Will Haunt You #shorts
Load More... SUBSCRIBE
Tags: blindcodeDIYdo it yourselfgadgetglasseshardwareprojectTechnologytext-to-audiotext-to-speechtranscribetranscriptionvisually impaired

Related Posts

NVIDIA unveils AI tool for ultra-realistic and precise 3D editing
Artificial intelligence

NVIDIA unveils AI tool for ultra-realistic and precise 3D editing

by Ana Zirojević
July 15, 2025

Amid artificial intelligence (AI) demonstrating increasingly more capability and usability in various industry branches, particularly image generation and editing, Nvidia...

Read moreDetails
Scientists use 500-year-old da Vinci’s sketch to silence drones

Scientists use 500-year-old da Vinci’s sketch to silence drones

July 7, 2025
Scientists create flexible fabric that sees like an X-ray

Scientists create flexible fabric that sees like an X-ray

July 2, 2025
Jazz trio jams live with AI as fourth member

Jazz trio jams live with AI as fourth member

June 20, 2025
BMW expands its Virtual Factory with AI; Here’s why it matters

BMW expands its Virtual Factory with AI; Here’s why it matters

June 11, 2025
Military parade in modern era: How AR transformed traditional spectacles

Military parade in modern era: How AR transformed traditional spectacles

June 13, 2025
Load More

🔝 Popular

  • Internet users now spend a shocking 11 hours and 34 minutes weekly watching online videos, the equivalent of 25 full days each year.

    Streaming madness: internet users now spend 25 days a year watching videos online

    0 shares
    Share 0 Tweet 0
  • Tesla Robotaxi already beats Waymo in key performance stat

    0 shares
    Share 0 Tweet 0
  • Can magnets damage your smartphone? Here’s what we know

    0 shares
    Share 0 Tweet 0
  • Study shows Saturn’s moon Titan could host early cell structures

    0 shares
    Share 0 Tweet 0
  • Optimus V3? Musk teases Tesla’s ‘most epic demo ever’

    0 shares
    Share 0 Tweet 0

Latest

Study shows Saturn’s moon Titan could host early cell structures
Research

Study shows Saturn’s moon Titan could host early cell structures

by Ana Zirojević
July 15, 2025

As humanity's search for extraterrestrial life signs continues, scientists are getting increasingly more evidence that Saturn’s moon Titan might be...

NVIDIA unveils AI tool for ultra-realistic and precise 3D editing

NVIDIA unveils AI tool for ultra-realistic and precise 3D editing

July 15, 2025
Tesla Robotaxi already beats Waymo in key performance stat

Tesla Robotaxi already beats Waymo in key performance stat

July 15, 2025
Internet users now spend a shocking 11 hours and 34 minutes weekly watching online videos, the equivalent of 25 full days each year.

Streaming madness: internet users now spend 25 days a year watching videos online

July 15, 2025
Study: Driver assist system warnings can lead to worse driving

Study: Driver assist system warnings can lead to worse driving

July 14, 2025

Categories

  • Artificial intelligence
  • Bitcoin & Crypto
  • Business & Technology
  • Automotive
  • Computer & IT
  • Cybersecurity
  • Gaming
  • Research
  • Science
  • Smart devices
  • Guides & Reviews

About

Techgaged.com is a go-to source for the latest insights and updates in the world of technology. We provide comprehensive coverage of advancements, trends, and innovations across various sectors, including electronics, software, AI, cybersecurity, and more.

Email for advertising requests: hello@techgaged.com

Pages

  • About us and why we create
  • Editorial Code of Conduct
  • Homepage
  • News
  • Privacy Policy
  • Terms & Conditions

RSS RSS

  • Study shows Saturn’s moon Titan could host early cell structures July 15, 2025
  • NVIDIA unveils AI tool for ultra-realistic and precise 3D editing July 15, 2025
  • Tesla Robotaxi already beats Waymo in key performance stat July 15, 2025
  • Streaming madness: internet users now spend 25 days a year watching videos online July 15, 2025
  • Study: Driver assist system warnings can lead to worse driving July 14, 2025
  • FIFA Club World Cup trials cutting-edge ref tech in 2025 July 14, 2025
  • Optimus V3? Musk teases Tesla’s ‘most epic demo ever’ July 14, 2025
  • Artificial intelligence
  • Business
  • Smartphones
  • Science
  • Automotive
  • Cybersecurity
  • Crypto
  • Gaming
  • Military
  • Research
  • How to
  • About

© 2020-2025 Technology news - TechGaged.com.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Artificial intelligence
  • Business
  • Smartphones
  • Science
  • Automotive
  • Cybersecurity
  • Crypto
  • Gaming
  • Military
  • Research
  • How to
  • About
    • About & Contacts
    • Privacy policy
    • Terms & Conditions
    • Editorial Code of Conduct

© 2020-2025 Technology news - TechGaged.com.