[PR #997] [CLOSED] [FEATURE]Temporary PR, will edit this in 2-3 days #1803

Open
opened 2026-01-29 17:18:37 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/997
Author: @saurabhshah0410
Created: 8/14/2018
Status: Closed

Base: masterHead: ocr-hardsubx


📝 Commits (1)

  • f77908b Temporary PR, will edit this in 2-3 days

📊 Changes

24 files changed (+14112 additions, -254 deletions)

View changed files

src/lib_ccx/Mat.c (+2169 -0)
src/lib_ccx/Mat.h (+286 -0)
src/lib_ccx/MemStorage.c (+192 -0)
📝 src/lib_ccx/ccx_common_option.h (+0 -4)
src/lib_ccx/color.c (+156 -0)
src/lib_ccx/color.h (+184 -0)
src/lib_ccx/contours.c (+1344 -0)
src/lib_ccx/erfilter.c (+1596 -0)
src/lib_ccx/erfilter.h (+267 -0)
src/lib_ccx/filter.c (+449 -0)
src/lib_ccx/filter.h (+93 -0)
src/lib_ccx/floodfill.c (+448 -0)
📝 src/lib_ccx/hardsubx.c (+0 -66)
📝 src/lib_ccx/hardsubx.h (+0 -16)
📝 src/lib_ccx/hardsubx_decoder.c (+24 -58)
src/lib_ccx/math.h (+651 -0)
src/lib_ccx/ml.c (+694 -0)
src/lib_ccx/ml.h (+134 -0)
📝 src/lib_ccx/params.c (+0 -110)
src/lib_ccx/storage.c (+1711 -0)

...and 4 more files

📄 Description

Please prefix your pull request with one of the following: [FEATURE] [FIX] [IMPROVEMENT].

In raising this pull request, I confirm the following (please check boxes):

  • I have read and understood the contributors guide.
  • I have checked that another pull request for this purpose does not exist.
  • I have considered, and confirmed that this submission will be valuable to others.
  • I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
  • I give this submission freely, and claim no ownership to its content.

My familiarity with the project is as follows (check one):

  • I have never used CCExtractor.
  • I have used CCExtractor just a couple of times.
  • I absolutely love CCExtractor, but have not contributed previously.
  • I am an active contributor to CCExtractor.

{pull request content here}
Implemented Neumann Mata's scene text detection and recognition. There is a lot of editing required like indentation and adding compilation instructions for this. I'm working on that right now and edit this PR as soon as I wind up my work.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/CCExtractor/ccextractor/pull/997 **Author:** [@saurabhshah0410](https://github.com/saurabhshah0410) **Created:** 8/14/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `ocr-hardsubx` --- ### 📝 Commits (1) - [`f77908b`](https://github.com/CCExtractor/ccextractor/commit/f77908b50a5be4695205214d54f6c6ce96cb8bf6) Temporary PR, will edit this in 2-3 days ### 📊 Changes **24 files changed** (+14112 additions, -254 deletions) <details> <summary>View changed files</summary> ➕ `src/lib_ccx/Mat.c` (+2169 -0) ➕ `src/lib_ccx/Mat.h` (+286 -0) ➕ `src/lib_ccx/MemStorage.c` (+192 -0) 📝 `src/lib_ccx/ccx_common_option.h` (+0 -4) ➕ `src/lib_ccx/color.c` (+156 -0) ➕ `src/lib_ccx/color.h` (+184 -0) ➕ `src/lib_ccx/contours.c` (+1344 -0) ➕ `src/lib_ccx/erfilter.c` (+1596 -0) ➕ `src/lib_ccx/erfilter.h` (+267 -0) ➕ `src/lib_ccx/filter.c` (+449 -0) ➕ `src/lib_ccx/filter.h` (+93 -0) ➕ `src/lib_ccx/floodfill.c` (+448 -0) 📝 `src/lib_ccx/hardsubx.c` (+0 -66) 📝 `src/lib_ccx/hardsubx.h` (+0 -16) 📝 `src/lib_ccx/hardsubx_decoder.c` (+24 -58) ➕ `src/lib_ccx/math.h` (+651 -0) ➕ `src/lib_ccx/ml.c` (+694 -0) ➕ `src/lib_ccx/ml.h` (+134 -0) 📝 `src/lib_ccx/params.c` (+0 -110) ➕ `src/lib_ccx/storage.c` (+1711 -0) _...and 4 more files_ </details> ### 📄 Description Please prefix your pull request with one of the following: **[FEATURE]** **[FIX]** **[IMPROVEMENT]**. **In raising this pull request, I confirm the following (please check boxes):** - [X] I have read and understood the [contributors guide](https://github.com/CCExtractor/ccextractor/blob/master/.github/CONTRIBUTING.md). - [X] I have checked that another pull request for this purpose does not exist. - [X] I have considered, and confirmed that this submission will be valuable to others. - [X] I accept that this submission may not be used, and the pull request closed at the will of the maintainer. - [X] I give this submission freely, and claim no ownership to its content. **My familiarity with the project is as follows (check one):** - [ ] I have never used CCExtractor. - [ ] I have used CCExtractor just a couple of times. - [ ] I absolutely love CCExtractor, but have not contributed previously. - [X] I am an active contributor to CCExtractor. --- {pull request content here} Implemented Neumann Mata's scene text detection and recognition. There is a lot of editing required like indentation and adding compilation instructions for this. I'm working on that right now and edit this PR as soon as I wind up my work. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 17:18:37 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#1803