Spaces:
Runtime error
Runtime error
File size: 3,622 Bytes
1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 1429e38 eb1a752 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# Guia de Desenvolvimento
## Ambiente de Desenvolvimento
### Setup Inicial
1. **IDE Recomendada**
- VSCode com extensões:
- Python
- Pylance
- GitLens
- Python Test Explorer
2. **Configuração do Git**
```bash
git config --global user.name "Seu Nome"
git config --global user.email "[email protected]"
```
3. **Pre-commit Hooks**
```bash
pip install pre-commit
pre-commit install
```
## Padrões de Código
### 1. Estilo
- PEP 8
- Máximo 88 caracteres por linha
- Docstrings em todas as funções/classes
- Type hints obrigatórios
Exemplo:
```python
def process_frame(
frame: np.ndarray,
confidence: float = 0.5
) -> List[Detection]:
"""Processa um frame para detecção de objetos.
Args:
frame: Array numpy do frame
confidence: Limiar de confiança
Returns:
Lista de detecções encontradas
"""
pass
```
### 2. Estrutura de Arquivos
```md
src/
├── domain/
│ ├── entities/
│ │ └── detection.py
│ └── interfaces/
│ └── detector.py
├── application/
│ └── use_cases/
│ └── process_video.py
└── infrastructure/
└── services/
└── weapon_detector.py
```
### 3. Testes
- pytest para testes unitários
- pytest-cov para cobertura
- Mocking para dependências externas
Exemplo:
```python
def test_process_frame():
detector = WeaponDetector()
frame = np.zeros((640, 480, 3))
result = detector.process_frame(frame)
assert len(result) >= 0
```
## Fluxo de Trabalho
### 1. Branches
- `main`: Produção
- `develop`: Desenvolvimento
- `feature/*`: Novas funcionalidades
- `fix/*`: Correções
- `release/*`: Preparação de release
### 2. Pull Requests
- Template obrigatório
- Code review necessário
- CI deve passar
- Squash merge preferido
## CI/CD
### GitHub Actions
```yaml
name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Run tests
run: |
pip install -r requirements.txt
pytest
```
### Deploy
1. Staging
```bash
./deploy.sh staging
```
2. Produção
```bash
./deploy.sh production
```
## Debugging
### 1. Logs
```python
import logging
logger = logging.getLogger(__name__)
logger.info("Processando frame %d", frame_number)
```
### 2. Profiling
```python
import cProfile
def profile_detection():
profiler = cProfile.Profile()
profiler.enable()
# código
profiler.disable()
profiler.print_stats()
```
### 3. GPU Monitoring
```python
import torch
def check_gpu():
print(torch.cuda.memory_summary())
```
## Otimizações
### 1. GPU
- Batch processing
- Memória pinned
- Async data loading
### 2. CPU
- Multiprocessing
- NumPy vectorization
- Cache de resultados
## Segurança
### 1. Dependências
- Safety check
- Dependabot
- SAST scanning
### 2. Código
- Input validation
- Error handling
- Secrets management
## Documentação
### 1. Docstrings
```python
def detect_objects(
self,
frame: np.ndarray
) -> List[Detection]:
"""Detecta objetos em um frame.
Args:
frame: Frame no formato BGR
Returns:
Lista de detecções
Raises:
ValueError: Se o frame for inválido
"""
pass
```
### 2. Sphinx
```bash
cd docs
make html
```
### 3. README
- Badges atualizados
- Exemplos práticos
- Troubleshooting comum
|