Complexica-Server

SonarCloud

Metric Badge
Bugs Bugs
Code Smells Code Smells
Duplicated Lines Duplicated Lines
Maintainability Rating Maintainability
Quality Gate Status Quality Gate
Reliability Rating Reliability
Security Rating Security
Vulnerabilities Vulnerabilities
Technical Debt Technical Debt

Overview

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.

Features


Getting Started

Prerequisites

Installation

Run the docker image directly:

   docker run -p 9090:9090 vrushankpatel5/complexica-server:1.0

OR

Docker compose

version: '3.8'

services:
  complexica-server:
    image: vrushankpatel5/complexica-server:1.0
    container_name: complexica-server
    ports:
      - "9090:9090"
    restart: always

OR

  1. Clone the Repository:
    git clone https://github.com/VrushankPatel/Complexica-Server.git
    cd Complexica-Server
    
  2. Set Up Virtual Environment:
    python -m venv venv
    source venv/bin/activate  # For Linux/Mac
    venv\Scripts\activate    # For Windows
    
  3. Install Requirements:
    pip install -r requirements.txt
    
  4. Download the Pretrained Model:
    • The pre-trained Caffe model can be downloaded from this link.
    • Place the model file in the src/model directory.
  5. Run the Application:
    flask run
    

Deployment on Heroku

Refer to the deploy-instructions.txt file for step-by-step deployment on Heroku.


API Endpoints

Colorization Endpoint

POST /api/upload_image


Directory Structure

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

License

This project is licensed under the MIT License. See the LICENSE file for details.


Acknowledgments