Funco is a modern e-commerce platform created as a graduation project to redefine online furniture shopping. Built on Django REST Framework and Next.js, it addresses traditional spatial and search constraints by incorporating natural language query processing via ChatGPT, computer vision image matching via ResNet, and real-time room visualization using Three.js and AR technology.
ChatGPT Conversational Search
Leverages OpenAI's ChatGPT model to parse natural language queries, extracting key entities like product type, material, style, and budget to query PostgreSQL dynamically.
Visual Search by Image
Extracts feature vectors from user-uploaded furniture photos using a pre-trained ResNet CNN, executing cosine similarity matching against the product catalog.
AR & 3D Spatial Rendering
Renders web-optimized 3D product models with Three.js and overlays them onto physical rooms using ARCore and ARKit for real-time scale and placement testing.
Pre-Designed Room Curations
Presents pre-configured room layouts tailored to various interior design styles, enabling users to preview and purchase cohesive furniture bundles effortlessly.
- Next.js frontend utilizing SSR/SSG for rapid load performance, paired with Redux Toolkit for centralized state management and Tailwind CSS for styling.
- Django REST Framework API handling authentication, business logic, relational data with PostgreSQL, and asset management via AWS S3.
- Asynchronous task queue driven by Celery and Redis to handle intensive tasks such as image preprocessing with OpenCV and feature extraction without blocking API threads.
- Integrated Three.js scene engine for cross-device 3D model rendering anchored in real-world spaces through ARCore and ARKit protocols.
Traditional search bars fail when users describe subjective aesthetics or complex criteria. Funco replaces rigid filters with two intelligent discovery pipelines: natural language understanding powered by ChatGPT and deep-learning image matching.
To eliminate buyer hesitation around product sizing and style harmony, 3D models stored on AWS S3 are rendered dynamically on the web client.
- ~95%Search Accuracy
- 3Core AI/AR Systems
- <1.2 sAR Load Time
- A+Project Grade
- LLMs excel at natural language intent extraction, turning loose queries into structured database filters far better than traditional keyword regex.
- Decoupled asynchronous worker queues (Celery + Redis) are mandatory when performing computer vision matrix operations in web backend environments.
- Optimizing 3D asset geometry in Blender prior to deployment is essential for maintaining smooth 60fps AR frame rates on consumer mobile hardware.
