NOVA is an app designed to assist blind or visually impaired individuals in navigating their surroundings. It provides several key features:
- Object Detection: NOVA detects objects in the user's surroundings in real-time.
- Text Recognition: The app recognizes and reads aloud text from the environment.
- Image Description: NOVA describes captured images using AI.
- Voice Commands: Users can control the app hands-free by saying "Hey Nova."
Download the APK file by going to the release page in Github. Download the APK file from there.
Make sure you have Flutter installed. You can follow the official Flutter installation guide.
You'll need the following API keys:
- Google Gemini API Key: Required for image description features.
- Picovoice API Key: Needed to enable voice command features using Picovoice's Porcupine and Rhino engines.
Clone the repository to your local machine:
- Run the following command in your terminal:
git clone https://github.com/ulookuglynoob/Nova-AI cd nova-app
- Open
lib/main.dart
. - Replace the placeholder API key 'YOUR-GEMINI-API-KEY' with your Gemini API key.
Example (in lib/main.dart
):
apiKey = prefs.getString('gemini_api_key') ?? 'YOUR-GEMINI-API-KEY';
- Open
lib/utils/picovoice_util.dart
. - Replace the placeholder API key 'YOUR-PICOVOICE-API-KEY' with your Picovoice API key.
Example (in lib/utils/picovoice_util.dart
):
String apiKey = prefs.getString('picovoice_api_key') ?? 'YOUR-PICOVOICE-API-KEY';
Install all required dependencies by running the following command:
flutter pub get
Run the app on your preferred device:
flutter run
This project uses the MIT License.
For any inquiries or support, please contact:
Email: ulookuglynoob@email.com
Please give us feedback. It really helps!