Metric | Badge |
---|---|
Bugs | |
Code Smells | |
Duplicated Lines | |
Maintainability Rating | |
Quality Gate Status | |
Reliability Rating | |
Security Rating | |
Vulnerabilities | |
Technical Debt |
Complexica-Server is a Flask-based application designed to utilize machine learning models for image colorization. Leveraging Intel OpenVINO for optimized inference, the server takes grayscale images as input and outputs fully colorized images, enabling seamless integration of AI-powered image enhancement.
Run the docker image directly:
docker run -p 9090:9090 vrushankpatel5/complexica-server:1.0
Docker compose
version: '3.8'
services:
complexica-server:
image: vrushankpatel5/complexica-server:1.0
container_name: complexica-server
ports:
- "9090:9090"
restart: always
git clone https://github.com/VrushankPatel/Complexica-Server.git
cd Complexica-Server
python -m venv venv
source venv/bin/activate # For Linux/Mac
venv\Scripts\activate # For Windows
pip install -r requirements.txt
src/model
directory.flask run
Refer to the deploy-instructions.txt
file for step-by-step deployment on Heroku.
POST /api/upload_image
.jpg
or .png
format.Complexica-Server/
├── src/
│ ├── model/ # Pretrained models
│ ├── static/ # Static assets
│ ├── templates/ # HTML templates (if any)
│ └── app.py # Main Flask application
├── requirements.txt # Python dependencies
├── deploy-instructions.txt # Heroku deployment steps
└── README.md # Project documentation
This project is licensed under the MIT License. See the LICENSE file for details.