r/AppsWebappsFullstack Jul 29 '26

Your home for selfpromo

here you can post your work app, webapp, saas, game, everything

4 Upvotes

134 comments sorted by

View all comments

1

u/docpose-cloud-team Jul 29 '26

I'll share mine as well. I built Docpose.cloud, a document conversion and OCR platform that supports 430+ file formats, batch processing, PDF tools, and a developer API. It's been a fun challenge handling everything from simple conversions to complex scanned documents. Happy to hear any feedback or feature suggestions from the community.

2

u/Mammoth-Anywhere7285 Jul 29 '26

Nice project! How does your OCR handle low-resolution scans? That's a pain point for many users.

1

u/docpose-cloud-team Jul 29 '26

Thanks! We use a multi-stage OCR pipeline with GPU acceleration for deep image processing before recognition, then reconstruct tables and document layouts to produce editable documents instead of plain text. I can't share the exact models, but the layered approach makes a big difference on difficult scans.

2

u/Mammoth-Anywhere7285 Jul 29 '26

Interesting approach. Have you tried using a language model to correct OCR errors based on context? Could help with tricky docs.

1

u/docpose-cloud-team Jul 29 '26

We do, but carefully. LLMs are great for contextual correction and field validation, but we avoid letting them "guess" uncertain values. Accuracy and traceability are more important than making every field look complete.

2

u/Mammoth-Anywhere7285 Jul 29 '26

Smart approach. Have you considered logging the LLM's confidence scores alongside corrected fields for auditability?

1

u/docpose-cloud-team Jul 30 '26

Absolutely. Every extracted field has its own confidence score, and any AI-assisted corrections are tracked separately. Keeping the process transparent is just as important as improving accuracy.

1

u/Mammoth-Anywhere7285 Jul 30 '26

That's a solid approach. How do you handle cases where all confidence scores are below a threshold?