This is the Node.js / Express.js conversion of the original Flask-based Uniform Detection Application.
It delivers the same AI-powered functionality with a modern JavaScript backend, ensuring better scalability and maintainability.
🔥 Try it out now:
👉 OPEN UNIFORM DETECTION MODEL APP
Make sure you have the following installed before running the app:
Clone or download this repository ```bash git clone https://github.com/yourusername/uniform-detection-node.git cd uniform-detection-node
Install dependencies:
npm install
To start the development server:
npm run dev
To start the production server:
npm start
Then open your browser and visit 👉 http://localhost:3000
.
├── server.js # Main Express.js server file
├── package.json # Project dependencies and scripts
├── templates/ # HTML templates
│ └── index.html # Main application page
├── static/ # Static assets
│ ├── css/
│ │ └── style.css # Application styles
│ └── js/
│ └── script.js # Frontend JavaScript
├── model/ # ML model files
│ └── uniform_model.keras # Pre-trained model
└── README.md # This file
GET / - Serve the main application pagePOST /process_image - Process uploaded images for uniform detectionThis project was converted from a Flask application. Key changes include: