jakubswi / Image-Colour-Palette-Generator

Image Color Analyzer is a Python Flask application that allows users to upload images and analyze the dominant colors present in the image using the KMeans clustering algorithm. The application provides a simple web interface for users to interact with, displaying the dominant colors and their occurrences as a JSON response.
MIT License
0 stars 1 forks source link

Don't store the image on the server side #2

Closed jftsang closed 7 months ago

jftsang commented 7 months ago

Issue #1

Use an AJAX endpoint to handle an image and process its contents, and return the palette information to be rendered on the client side. Don't store the image on the server afterwards.