File size: 11,012 Bytes
8254e28 | 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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | ---
language: en
license: mit
tags:
- court-detection
- keypoint-detection
- sports-analysis
- badminton
- tennis
- pytorch
- computer-vision
- octave-convolution
- geometric-constraints
- polar-transform
datasets:
- adithyanraj03/CourtKeyNet-Dataset
metrics:
- pck
- iou
pipeline_tag: keypoint-detection
library_name: pytorch
model-index:
- name: CourtKeyNet
results:
- task:
type: keypoint-detection
name: Court Keypoint Detection
dataset:
name: CourtKeyNet Badminton Court Dataset
type: custom
metrics:
- name: PCK
type: pck
value: 99.99
- name: IoU
type: iou
value: 99.67
---
<div align="center">
<img src="assets/teasser.png" alt="CourtKeyNet Banner" width="100%">
# CourtKeyNet: A Novel Octave-Based Architecture for Precision Court Detection
**Adithya N Raj**
[](https://www.sciencedirect.com/science/article/pii/S2666827026000496)
[](https://github.com/adithyanraj03/CourtKeyNet)
[](https://github.com/adithyanraj03/Paper_09_Data-Set_CourtKeyNet)
[](LICENSE)
[](https://huggingface.co/docs/safetensors)
</div>
---
## Model Summary
**CourtKeyNet** is a lightweight deep learning architecture for precision court keypoint detection in sports videos. It detects 4 corner keypoints of badminton and tennis courts from a single image, enabling downstream applications like court homography estimation, match statistics generation, and automated broadcasting systems.
Published in [Machine Learning with Applications (Elsevier)](https://www.sciencedirect.com/science/article/pii/S2666827026000496), 2026.
### Key Features
- π― **99.99% PCK** and **99.67% IoU** on the fine-tuned model
- β‘ **Lightweight and fast** β efficient architecture for real-time use
- π¬ **Octave Feature Extractor** β Multi-frequency feature decomposition for capturing fine court details and global structural context
- π± **Polar Transform Attention** β Boundary detection in polar coordinates for precise court line localization
- π **Geometric Consistency Loss** β Ensures structurally valid quadrilateral outputs
- πΈ Supports both **badminton** and **tennis** court detection
---
## Model Variants
| Variant | File | Format | Val Loss | PCK (%) | IoU (%) | Description |
|---------|------|--------|----------|---------|---------|-------------|
| **CourtKeyNet-Base** | `pretrained/courtkeynet_base.safetensors` | SafeTensors | 0.0977 | 99.09 | 94.33 | Pre-trained on 140k+ images from scratch |
| **CourtKeyNet-Finetuned** β | `finetuned/courtkeynet_finetuned.safetensors` | SafeTensors | 0.0013 | 99.99 | 99.67 | Fine-tuned on 7k+ clean annotated images |
> **Recommendation:** Use the **fine-tuned** variant for best results. The pre-trained base model is provided for researchers who wish to fine-tune on their own custom court datasets.
---
## Quick Start
### 1. Download Weights
```bash
# Install huggingface CLI
pip install "huggingface_hub[cli]"
# Download the full repository
huggingface-cli download Cracked-ANJ/CourtKeyNet --local-dir ./courtkeynet-weights
# Or download only the fine-tuned model (recommended)
huggingface-cli download Cracked-ANJ/CourtKeyNet finetuned/courtkeynet_finetuned.safetensors --local-dir ./courtkeynet-weights
```
### 2. Run Inference
For inference, training, and fine-tuning scripts, use the full source code from the **[GitHub Repository](https://github.com/adithyanraj03/CourtKeyNet)**:
```bash
# Clone the source code
git clone https://github.com/adithyanraj03/CourtKeyNet.git
cd CourtKeyNet
# Install dependencies
pip install -r requirements.txt
# Run Inference Studio (GUI)
cd courtkeynet
python inference.py
```
> The Inference Studio provides a complete GUI with image/video/webcam support, confidence scoring, and real-time visualization.
---
## Architecture
<div align="center">
<img src="assets/architecture.png" alt="CourtKeyNet Architecture" width="80%">
</div>
<details>
<summary style="font-size: 1.2em; font-weight: bold; cursor: pointer;">π How Confidence Detection Works (Visual Explanation)</summary>
### How Confidence Detection Works
The model (`CourtKeyNet`) works like this:

**Problem**: It has no "court detector" β it assumes every image IS a court!
---
#### What the Model Actually Outputs Internally
When you run `model(image)`, it returns a dictionary with these components:
```python
outputs = {
'heatmaps': Tensor[B, 4, 160, 160], # 4 gaussian peaks (one per corner)
'kpts_init': Tensor[B, 4, 2], # Initial keypoints from heatmaps
'kpts_refined': Tensor[B, 4, 2], # Final refined keypoints
'features': Tensor[B, 256, 20, 20] # Feature maps (optional)
}
```
#### Visualization of Heatmap Output
For a **real court image**:
```text
Heatmap for Corner 0 (Top-Left):
```

For a **non-court image** (e.g., random person):
```text
Heatmap for Corner 0:
```

---
#### 3 Confidence Metrics
##### 1οΈβ£ **Heatmap Peak Confidence** (Primary Signal)
**What it measures**: How "peaky" the heatmap is
```python
max_values = heatmaps.max(dim=(2,3)) # Find highest value in each heatmap
conf_heatmap = max_values.mean() # Average across 4 corners
```
**Visual comparison**:

---
##### 2οΈβ£ **Heatmap Entropy** (Uncertainty)
**What it measures**: How "spread out" the probability is
```python
# Entropy = -Ξ£(p * log(p))
# Low entropy = focused (good)
# High entropy = random noise (bad)
```
**Visual comparison**:

---
##### 3οΈβ£ **Geometric Validity** (Shape Check)
**What it checks**: Does the quad look like a real court?
```text
Checklist:
β Are corners in correct positions? (TL upper-left, BR lower-right)
β Is the quad convex? (no crossed lines)
β Is the area reasonable? (not too tiny, not entire image)
β Is aspect ratio court-like? (not a thin line)
```
**Visual examples**:

</details>
---
## Training Details
### Pre-training (from scratch)
| Parameter | Value |
|-----------|-------|
| **Dataset** | 140,000+ badminton & tennis court images |
| **Epochs** | 158 (early stopping, patience=20) |
| **Best Epoch** | 138 |
| **Optimizer** | AdamW |
| **Learning Rate** | 5e-5 (cosine schedule) |
| **Batch Size** | 47 |
| **Image Size** | 640Γ640 |
| **Mixed Precision** | β FP16 |
| **Hardware** | NVIDIA RTX 5090 (32GB) |
### Fine-tuning
| Parameter | Value |
|-----------|-------|
| **Base Model** | Pre-trained CourtKeyNet-Base (epoch 138) |
| **Dataset** | 7,000+ precisely annotated clean images |
| **Epochs** | 79 (early stopping, patience=20) |
| **Best Epoch** | 59 |
| **Learning Rate** | 1e-4 |
| **Batch Size** | 48 |
| **Geometric Loss** | Enabled (edge + diagonal + angle constraints) |
---
## Evaluation Results
### Fine-tuned Model (Recommended)
| Metric | Score |
|--------|-------|
| **PCK** (Percentage of Correct Keypoints) | **99.99%** |
| **IoU** (Intersection over Union) | **99.67%** |
| **Validation Loss** | **0.0013** |
### Pre-trained Base Model
| Metric | Score |
|--------|-------|
| **PCK** | 99.09% |
| **IoU** | 94.33% |
| **Validation Loss** | 0.0977 |
### Training Metrics
<div align="center">
<img src="assets/training_metrics.png" alt="Training Metrics" width="100%">
<p><em>Pre-training metrics across 158 epochs showing loss convergence and PCK/IoU progression</em></p>
</div>
<div align="center">
<img src="assets/finetune_detail.png" alt="Fine-tuning Detail" width="100%">
<p><em>Fine-tuning convergence: rapid loss decrease with PCK reaching 99.99% and IoU reaching 99.67%</em></p>
</div>
### Validation Samples
<div align="center">
<table>
<tr>
<td align="center"><strong>Epoch 1 (Early Fine-tuning)</strong></td>
<td align="center"><strong>Epoch 79 (Final)</strong></td>
</tr>
<tr>
<td><img src="assets/val_sample_early.jpg" alt="Early Validation" width="100%"></td>
<td><img src="assets/val_sample_final.jpg" alt="Final Validation" width="100%"></td>
</tr>
</table>
<p><em>Red = Predicted court boundary | Green = Ground truth | Yellow dots = Keypoints</em></p>
</div>
---
## Fine-tuning on Custom Data
To fine-tune CourtKeyNet on your own court dataset (any sport):
```bash
# 1. Clone the source code
git clone https://github.com/adithyanraj03/CourtKeyNet.git
cd CourtKeyNet
# 2. Download weights
huggingface-cli download Cracked-ANJ/CourtKeyNet pretrained/courtkeynet_base.pt --local-dir ./weights
# 3. Fine-tune
cd courtkeynet
python finetune.py
```
> **Note:** Fine-tuning requires only **5,000β7,000** clean annotated images. Training from scratch requires **140,000+** images.
---
## Intended Use
### β
Appropriate Uses
- Badminton and tennis court detection in sports videos
- Court homography estimation for tactical analysis
- Generating match statistics from broadcast footage
- Automated camera calibration for sports broadcasting
- Academic research in sports video analysis
### β οΈ Limitations
- Trained specifically on badminton and tennis courts; other court types may require fine-tuning
- Expects single-court images; multi-court scenes are not supported
- Performance may degrade on heavily occluded courts or extreme camera angles
- The model detects 4 outer corners only (not inner court lines)
---
## Citation
If you use CourtKeyNet in your research, please cite:
**Paper:** [CourtKeyNet: A novel octave-based architecture for precision badminton court detection with geometric constraints](https://www.sciencedirect.com/science/article/pii/S2666827026000496)
**DOI:** [10.1016/j.mlwa.2026.100884](https://doi.org/10.1016/j.mlwa.2026.100884)
```bibtex
@article{NRAJ2026100884,
title = {CourtKeyNet: A novel octave-based architecture for precision badminton court detection with geometric constraints},
journal = {Machine Learning with Applications},
volume = {24},
pages = {100884},
year = {2026},
issn = {2666-8270},
doi = {https://doi.org/10.1016/j.mlwa.2026.100884},
url = {https://www.sciencedirect.com/science/article/pii/S2666827026000496},
author = {Adithya N Raj and Prethija G.}
}
```
---
## License
This project is released under the [MIT License](LICENSE), suitable for both academic and commercial use.
## Contact
For questions or collaboration opportunities: **adithyanraj03@gmail.com**
|