Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emmanuellaalbuquerque/pdi-projects
Project Developed Under Digital Image Processing Subject
https://github.com/emmanuellaalbuquerque/pdi-projects
Last synced: about 1 month ago
JSON representation
Project Developed Under Digital Image Processing Subject
- Host: GitHub
- URL: https://github.com/emmanuellaalbuquerque/pdi-projects
- Owner: EmmanuellaAlbuquerque
- Created: 2022-04-18T22:05:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-23T01:30:56.000Z (about 1 year ago)
- Last Synced: 2024-10-23T13:42:57.910Z (3 months ago)
- Language: Python
- Homepage:
- Size: 20.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pdi-projects
# Resultados
[Relatório Projeto 1](https://github.com/EmmanuellaAlbuquerque/pdi-projects/blob/main/module1/docs/Relatorio-ProjetoPratico1-PDI.pdf) | [Relatório Projeto 2](https://github.com/EmmanuellaAlbuquerque/pdi-projects/blob/main/module2/docs/Relatorio-ProjetoPratico2-PDI.pdf)
## Projeto 1
### RGB-YIQ-RGB
![image](https://user-images.githubusercontent.com/57198678/204356256-17fb4c75-02db-4b12-84c5-985a50b35066.png)### Negativo
![image](https://user-images.githubusercontent.com/57198678/204356461-6c9fb7ab-fc4d-4660-8b25-88e27307b1ae.png)### Correlação
### Filtro Média
![image](https://user-images.githubusercontent.com/57198678/204356695-7148cecf-4d2f-4b4d-84a9-006b80f5f1da.png)### Filtro Sobel Horizontal
![image](https://user-images.githubusercontent.com/57198678/204356800-93c30a41-0b18-47a3-81ad-10e16742ad96.png)### Filtro Sobel Vertical
![image](https://user-images.githubusercontent.com/57198678/204356890-071dc319-579a-4342-8676-af44fe7df3cf.png)### Filtro Mediana
![image](https://user-images.githubusercontent.com/57198678/204357424-a24b83ef-86b3-40ec-a96f-2f94c39a0602.png)### Template Matching
![image](https://user-images.githubusercontent.com/57198678/204357663-7f19c7c8-a9d6-4bd9-98ad-0edd7d290f30.png)## Projeto 2
### DCT para compressão de dados
![image](https://user-images.githubusercontent.com/57198678/204358276-2dc92826-dfb3-4d0d-bae7-df4ad891e2f0.png)### Filtro Butterworth passa-baixas (suavização)
![image](https://user-images.githubusercontent.com/57198678/204359144-d4c01b12-3df7-48b3-a5de-0bb366a9b1f9.png)## Configuring Python Virtual Environment
### Installing dependencies
```sh
# inside root project folder
~$ sudo -H pip3 install virtualenv
~$ virtualenv pdi-env
~$ . pdi-env/bin/activate
~$ pip3 install -r requirements.txt
```
### Running the project
```sh
# instructions inside the modules
```### Updating requirements.txt
```sh
# inside src folder
~$ pip3 freeze > requirements.txt
```