https://github.com/caiotaavares/painter
Simple image editor and raster graphics editor with Qt6 and c++
https://github.com/caiotaavares/painter
cpp image-processing qt5
Last synced: about 2 months ago
JSON representation
Simple image editor and raster graphics editor with Qt6 and c++
- Host: GitHub
- URL: https://github.com/caiotaavares/painter
- Owner: caiotaavares
- Created: 2023-08-17T22:21:21.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-11-06T17:05:10.000Z (over 2 years ago)
- Last Synced: 2025-02-05T06:33:59.896Z (over 1 year ago)
- Topics: cpp, image-processing, qt5
- Language: C++
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# painter
Simple image editor and raster graphics editor with Qt6 and c++
- [X] 1 - RGB - HSL
- [X] 2 - Manipulação básica de pixels
- [X] 2.1 - Carregar Imagem
- [X] 2.2 - Negativar Imagem
- [X] 2.3 - Desenhar Pixel
- [X] 2.4 - Desenhar Retas
- [X] 3 - Desenhar Retas usando Pixels
- [X] 3.1 - y = ax + b
- [X] 3.2 - Paramétrica
- [X] 4 - Bresenhan retas
- [X] 5 - Bresenhan Circunferência
- [X] 6 - Círculos usando Pixels - Usando Simetria
- [X] 6.1 - y = pow((R * R) - (x * x))
- [X] 6.2 - Paramétrica
- [ ] 7 - Projeção "Casinha"