{"id":15167037,"url":"https://github.com/artem-burashnikov/imageprocessinggui","last_synced_at":"2025-09-30T23:30:50.753Z","repository":{"id":195745933,"uuid":"693574559","full_name":"artem-burashnikov/ImageProcessingGUI","owner":"artem-burashnikov","description":"Part of the SPBU's programming course. GUI shell for ImageProcessing","archived":true,"fork":false,"pushed_at":"2023-12-22T18:40:16.000Z","size":104,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-20T12:39:20.810Z","etag":null,"topics":["avalonia","avaloniaui","fsharp","gui","image-processing"],"latest_commit_sha":null,"homepage":"https://github.com/artem-burashnikov/ImageProcessing","language":"F#","has_issues":false,"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/artem-burashnikov.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":"2023-09-19T09:47:12.000Z","updated_at":"2024-07-27T20:28:59.000Z","dependencies_parsed_at":"2024-07-27T01:29:59.270Z","dependency_job_id":"ddb8ba33-af06-4c72-b7db-d470fd9e5cb1","html_url":"https://github.com/artem-burashnikov/ImageProcessingGUI","commit_stats":null,"previous_names":["artem-burashnikov/imageprocessinggui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/artem-burashnikov/ImageProcessingGUI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artem-burashnikov%2FImageProcessingGUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artem-burashnikov%2FImageProcessingGUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artem-burashnikov%2FImageProcessingGUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artem-burashnikov%2FImageProcessingGUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/artem-burashnikov","download_url":"https://codeload.github.com/artem-burashnikov/ImageProcessingGUI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/artem-burashnikov%2FImageProcessingGUI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277771993,"owners_count":25874487,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-30T02:00:09.208Z","response_time":75,"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":["avalonia","avaloniaui","fsharp","gui","image-processing"],"created_at":"2024-09-27T05:23:35.585Z","updated_at":"2025-09-30T23:30:50.503Z","avatar_url":"https://github.com/artem-burashnikov.png","language":"F#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ImageProcessingGUI\n\n[![MIT License][license-shield]][license-url]\n\n## Overview\n\n**ImageProcessingGUI** is an image processing application built with [AvaloniaUI][avalonia-ui-url] using F#.\n\n## Features\n\n- **Open File:** Choose a file from a file dialog.\n\n- **Apply transformations:** Choose a transformation to apply. Application stays responsive.\n\n- **Reset:** Easily reset to the original image.\n\n- **Save File:** Choose a directory to save your file to.\n\n## Table of contents\n\n- [Getting Started](#getting-started)\n    - [Prerequisites](#prerequisites)\n    - [Installation](#installation)\n\n[//]: # (- [Usage]\u0026#40;#usage\u0026#41;)\n[//]: # (    - [`update`]\u0026#40;#depinspect-update\u0026#41;)\n[//]: # (    - [`diff`]\u0026#40;#depinspect-diff\u0026#41;)\n[//]: # (    - [`list-all`]\u0026#40;#depinspect-list-all\u0026#41;)\n[//]: # (    - [`find-divergent`]\u0026#40;#depinspect-find-divergent\u0026#41;)\n\n[//]: # (- [Examples]\u0026#40;#examples\u0026#41;)\n- [Licenses](#licenses)\n\n## Getting Started\n\n### Prerequisites\n\n- [dotnet SDK](https://dotnet.microsoft.com/en-us/download/dotnet/7.0) 7.0 or higher\n- OpenCL-compatible device with respective driver installed to utilize image processing on GPU\n\n### Installation\n\nOpen the terminal and follow these steps:\n\n1. Clone the repository:\n\n    ```sh\n    git clone git@github.com:artem-burashnikov/ImageProcessingGUI.git\n    ```\n\n2. Navigate to the project root:\n\n    ```sh\n    cd ImageProcessingGUI\n    ```\n\n3. Download ImageProcessing library to a local directory (the following command downloads it to the project root, assuming you did the previous step):\n\n    ```sh\n    wget https://github.com/artem-burashnikov/ImageProcessing/releases/download/v1.0.0/ImageProcessing.ArtemBurashnikov.1.0.0.nupkg\n    ```\n\n4. Add the project root to local Nuget package source:\n\n   **Note**: Running the command will modify your `NuGet.config` file. **Execute from within a project root**.\n\n    ```sh\n    dotnet nuget add source $(pwd)\n    ```\n\n5. Now it is possible to restore tools and build a project:\n\n    ```sh\n    dotnet restore;\n    dotnet build\n    ```\n\n## Licenses\n\nThe project is licensed under a [MIT License][license-url].\n\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n[license-shield]: https://img.shields.io/github/license/artem-burashnikov/ImageProcessingGUI.svg?style=for-the-badge\u0026color=blue\n[license-url]: LICENSE\n[avalonia-ui-url]: https://github.com/avaloniaui/avalonia","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartem-burashnikov%2Fimageprocessinggui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fartem-burashnikov%2Fimageprocessinggui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartem-burashnikov%2Fimageprocessinggui/lists"}