File size: 1,102 Bytes
46667b1 5135a29 2fed618 2d08a59 2fed618 4f4fb3d 2fed618 d3f4491 2fed618 d3f4491 2fed618 46667b1 0c9f30b 46667b1 |
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 |
---
base_model: facebook/detr-resnet-50
tags:
- object-detection
---
This model is trained to crop screen area from app introduction images.
Code and dataset can be found at https://github.com/Jl-wei/guing
Using with pipeline
```py
from PIL import Image
from transformers import pipeline
detector = pipeline("object-detection", model="Jl-wei/app-intro-img-cropper", device=0)
image = Image.open(img_path)
result = detector(image, threshold=0.5)
```
This is the app introduction image cropper of the following paper:
```bibtex
@article{wei2024guing,
author = {Wei, Jialiang and Courbis, Anne-Lise and Lambolais, Thomas and Xu, Binbin and Bernard, Pierre Louis and Dray, G\'{e}rard and Maalej, Walid},
title = {GUing: A Mobile GUI Search Engine using a Vision-Language Model},
year = {2025},
volume = {34},
number = {4},
doi = {10.1145/3702993},
journal = {ACM Trans. Softw. Eng. Methodol.},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA}
}
```
Please note that the model can only be used for academic purpose.
|