{"id":22016087,"url":"https://github.com/wesleyaldrich/couleurs","last_synced_at":"2026-04-18T06:36:07.086Z","repository":{"id":255148793,"uuid":"848679807","full_name":"wesleyaldrich/Couleurs","owner":"wesleyaldrich","description":"Web application RESTful API for image colorization AI. The application is supposed to receive inputs in form of images, then return the colorized same image.","archived":false,"fork":false,"pushed_at":"2024-10-01T07:28:53.000Z","size":9404,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"stable","last_synced_at":"2025-06-04T00:56:37.327Z","etag":null,"topics":["ai","colorizer","deoldify","flask"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wesleyaldrich.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-28T07:51:48.000Z","updated_at":"2024-11-07T07:41:13.000Z","dependencies_parsed_at":"2024-08-28T09:37:57.386Z","dependency_job_id":"856b2f8f-f25d-403c-8d81-be84fc15a8f4","html_url":"https://github.com/wesleyaldrich/Couleurs","commit_stats":null,"previous_names":["wesleyaldrich/couleurs_website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wesleyaldrich/Couleurs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesleyaldrich%2FCouleurs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesleyaldrich%2FCouleurs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesleyaldrich%2FCouleurs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesleyaldrich%2FCouleurs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wesleyaldrich","download_url":"https://codeload.github.com/wesleyaldrich/Couleurs/tar.gz/refs/heads/stable","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesleyaldrich%2FCouleurs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31959881,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","colorizer","deoldify","flask"],"created_at":"2024-11-30T04:32:21.944Z","updated_at":"2026-04-18T06:36:07.067Z","avatar_url":"https://github.com/wesleyaldrich.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Couleurs\n  **Couleurs** is a simple image colorizing project. The application is supposed to receive inputs in form of images, then return the colorized same image.\n  This project utilizes the model of **DeOldify by Jason Antic** as the AI to colorize images.\n\n## Team Members\n - **Rachell Vannessa Christian** as Project Coordinator\n - **Kalista Gabriela Willies** as Technical and Research Analyst\n - **Monica Agustina Chandra** as UI and UX Designer\n - **Michael Onasis Hasri** as Major Front-end Developer\n - **Wesley Aldrich** as Back-end Developer, Minor Front-end Developer\n\n## Website\n In this repository, I'm creating the web application using **Flask**. The goal of this project is:\n - To make sure I completely understand how **DeOldify AI** works.\n - To simply learn how to use **Flask** framework in building simple web applications.\n\n## How to use\n  Clone this repository into your device, then run the **\"app.py\"** file from your terminal.\n  If any error pops up, it might be because some required libraries are not in your device.\n  Install all the dependencies that are \"_unrecognized_\".\n\n### Cloning this repository\n``` bash\ngit clone https://github.com/wesleyaldrich/Couleurs.git\ncd Couleurs\n```\n\"Couleurs\" is the web application root directory, which is now cloned into your device.\n\n### Installing DeOldify Model\n- Download an AI Model Weights for our image colorizer.\n- In this project, we will use the Artistic Completed Generator Weights from DeOldify.\u003cbr\u003e\n  [Download Here](https://data.deepai.org/deoldify/ColorizeArtistic_gen.pth)\n- After it is downloaded, the file should be named `ColorizeArtistic_gen.pth`. Replace the existing dummy file in `Couleurs/ai/models/`!\n- Thus, the file path for the model weights should be `Couleurs/ai/models/ColorizeArtistic_gen.pth`.\n\n### Installing dependencies\nIf your Windows device is compatible with Python 3.7.6, you can install the required libraries perfectly by running:\n``` bash\npip install -r requirements_freeze.txt\n```\n\nOtherwise, you can run this:\n``` bash\npip install -r requirements.txt\n```\n\nOr manually by:\n``` bash\npip install flask matplotlib pandas scipy requests fastprogress torch torchvision opencv-python ffmpeg yt_dlp ipython\n```\n\nIf you're using Linux/Ubuntu, you might also need:\n``` bash\nsudo apt install libgl1-mesa-glx\n```\n\n- Note: Consider using virtual environment as well.\n\n### Run the web application\n- For Linux/Ubuntu:\n  ```\n  python3 app.py\n  ```\n- For Windows:\n  ```\n  python app.py\n  ```\n- Or you can adjust with your own operating system or preference.\n\nBy default, you should see Couleurs local web app running in `http://127.0.0.1:8080/`.\n\n---\n\n- DeOldify by Jason Antic\n  https://github.com/jantic/DeOldify/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwesleyaldrich%2Fcouleurs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwesleyaldrich%2Fcouleurs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwesleyaldrich%2Fcouleurs/lists"}