Author |
Topic |
Stoad again
Posting Yak Master
240 Posts |
Posted - 2009-03-17 : 12:14:39
|
My 12 samples What do you think on this?Cheers! |
|
tosscrosby
Aged Yak Warrior
676 Posts |
Posted - 2009-03-17 : 12:41:10
|
Not much....Terry-- Procrastinate now! |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2009-03-17 : 12:48:17
|
hey stoad! that's not bad if it's done by a computer of course what are you using?___________________________________________________________________________Causing trouble since 1980Blog: http://weblogs.sqlteam.com/mladenpSpeed up SSMS development: www.ssmstoolspack.com <- version 1.5 out! |
|
|
mfemenel
Professor Frink
1421 Posts |
Posted - 2009-03-17 : 13:20:06
|
Now if you could get this to fill in a text box for me when I try to buy concert tickets you'd make a fortune.Mike"oh, that monkey is going to pay" |
|
|
TG
Master Smack Fu Yak Hacker
6065 Posts |
Posted - 2009-03-17 : 14:09:18
|
stoad!I love the fact that you used an image from "bad santa" Be One with the OptimizerTG |
|
|
pootle_flump
1064 Posts |
Posted - 2009-03-17 : 14:51:15
|
quote: Originally posted by TG stoad!I love the fact that you used an image from "bad santa"
heh - I recognised the kid but not the scene! |
|
|
Stoad again
Posting Yak Master
240 Posts |
Posted - 2009-03-17 : 15:41:32
|
Hi guys!mladen, of course it's the computer:) it's my python script(nothing python specific; the code can be easily rewritten in C++).Reading an image file -> Converting it to the greyscale mode -> Populating a 2D array of bytes.Then analyzing the matrix, pixel by pixel, and so on.All is based (or rather inspired by) on the idea of so called Stroke Filter Response,but I do it in much my own way.Note: the code d-o-e-s n-o-t r-e-c-o-g-n-i-z-e texts.I don't even know what those Chinese words on my pics mean (seems the very first one means "http").As an intro to the subject a quote from an article of engineers from Samsung Advanced Institute of Technology:quote: ... For example, from the Canny edge image shownin Fig.1 (a), it is so difficult to find the text even for humaneyes. Besides the high complexity of text localization, wethink that the fundamental reason of these problems is thatno researcher finds the distinctive features of text. That is tosay, no one answers the basic question: what on earth istext? Intensity-similarity CCA, edge, corner or texturefeatures are only the necessary conditions of text, as shownin Fig. 1(b). Although recently someone uses Adaboost to ...
Teeg, flumpie, I like you like it :) |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2009-03-17 : 16:54:00
|
yeah canny filter can be quite helpful. try bluring an image before you apply it. i found it gave better results.___________________________________________________________________________Causing trouble since 1980Blog: http://weblogs.sqlteam.com/mladenpSpeed up SSMS development: www.ssmstoolspack.com <- version 1.5 out! |
|
|
Stoad again
Posting Yak Master
240 Posts |
Posted - 2009-03-17 : 17:14:42
|
blurring... I had tried it, with unstable results |
|
|
Stoad again
Posting Yak Master
240 Posts |
Posted - 2009-03-17 : 17:32:09
|
What I need is a good test set of images.They say there is e.g. Microsoft test set of 46 images.Mladen, if you were (are) in the subject, where can I see your results?I can't find anywhere someone's else after-detecting-pics, to see and comparePSI don't know what Canny filter is :) |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2009-03-17 : 17:34:33
|
no, i was never in the text finding field.Canny filter is an edge detection methodhttp://www.pages.drexel.edu/~weg22/can_tut.htmli've used it with great success in the past.___________________________________________________________________________Causing trouble since 1980Blog: http://weblogs.sqlteam.com/mladenpSpeed up SSMS development: www.ssmstoolspack.com <- version 1.5 out! |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2009-03-17 : 17:45:34
|
i'm guessing you're using this?http://svn.assembla.com/svn/MartinRais/Papers/2008%20-%20A%20new%20approeach%20for%20text%20segmentation%20using%20a%20stroke%20filter.pdf___________________________________________________________________________Causing trouble since 1980Blog: http://weblogs.sqlteam.com/mladenpSpeed up SSMS development: www.ssmstoolspack.com <- version 1.5 out! |
|
|
Stoad again
Posting Yak Master
240 Posts |
Posted - 2009-03-17 : 18:36:42
|
No! I've never seen this article (now I'm downloading it).I have 3 or 4 other pdf-s thru which I just browsed and catched the main/basic idea/KEYWORDS.Then I applied my own grey matter :) Forgot: at first I tried to implement a chinese algorithm,based on stroke filter, without much success (due to my poor understanding of its (algo) steps) |
|
|
Stoad again
Posting Yak Master
240 Posts |
|
|