MichalBusta / FASText

Efficient Unconstrained Scene Text Detector
GNU General Public License v2.0
191 stars 74 forks source link

how to call getNormalizedLines functions #19

Closed JuggYurnero closed 7 years ago

JuggYurnero commented 7 years ago

Hi, Michal I try to use your code to detect Chinese text, but I just can not find how to get the detected text lines. In the code, I found getNormalizedLines function, so I wanna ask is this function the proper function that can get the detected text lines, if so, how can I call this function? Thanks very much~

MichalBusta commented 7 years ago

Hi Jugg,

On 11/24/2016 04:35 PM, JuggYurnero wrote:

Hi, Michal I try to use your code to detect Chinese text, but I just can not find how to get the detected text lines. In the code, I found getNormalizedLines function, so I wanna ask is this function the proper function that can get the detected text lines, if so, how can I call this function?

Unfortunately, the public code so far contains just region detection. I still do not have permission to share the rest.

so quickest way woud be:

or just do the simple houg-like voting (fastest way is: each region votes for each line direction - with this simple approach and LSTM recognizer you shoud get about 77% recall on icdar 2013 dataset)

Michal

Thanks very much~

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/MichalBusta/FASText/issues/19, or mute the thread https://github.com/notifications/unsubscribe-auth/AD6jsBUoBuLK1GJzfSf9uFiXSzk-Yfq7ks5rBa7YgaJpZM4K7xca.

JuggYurnero commented 7 years ago

ok, got it, Thanks so much