Fast Alpr

Usa a reconocer matrículas con FastALPR (ONNX).

ntizar 48ca340 971 B Updated

File contents

FastALPR — reconocimiento rápido de matrículas

⚠️ Corrección 2026-09-05 (auditoría): el método es predict(...) (no process_image), y pip install fast-alpr sin el extra no instala el runtime ONNX.

Repo: https://github.com/ebitbooster/fast-alpr (Python, ~1.6K⭐).

When to Use

  • Cuando pidas reconocer matrículas (ALPR) de forma rápida y en local usando ONNX + OpenCV.

Uso (API real)

pip install fast-alpr            # + extra para runtime ONNX (ver README)
import fast_alpr
result = fast_alpr.predict(image_path_or_array)   # método predict (no process_image)

Pitfalls

  • Método: predict, no process_image.
  • El paquete base puede no traer el runtime ONNX — instalar el extra documentado en el README.

Verificación

  • fast_alpr.predict(img) y comprobar que devuelve la placa del vehículo.

ntizar/mastermind/tree/main/agent/skills/data-science/fast-alpr commit 48ca34034a

Frequently asked questions

npx skillmds@latest add ntizar/fast-alpr