Click here to Skip to main content
15,889,116 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Uploading Pin
jschell27-Dec-11 10:03
jschell27-Dec-11 10:03 
QuestionFind the location of text in an image (OCR or any other method) Pin
Mohammad Gufran21-Dec-11 9:19
Mohammad Gufran21-Dec-11 9:19 
AnswerRe: Find the location of text in an image (OCR or any other method) Pin
Richard MacCutchan21-Dec-11 10:04
mveRichard MacCutchan21-Dec-11 10:04 
GeneralRe: Find the location of text in an image (OCR or any other method) Pin
Mohammad Gufran21-Dec-11 23:33
Mohammad Gufran21-Dec-11 23:33 
GeneralRe: Find the location of text in an image (OCR or any other method) Pin
Luc Pattyn22-Dec-11 0:45
sitebuilderLuc Pattyn22-Dec-11 0:45 
AnswerRe: Find the location of text in an image (OCR or any other method) Pin
jschell22-Dec-11 7:42
jschell22-Dec-11 7:42 
AnswerRe: Find the location of text in an image (OCR or any other method) Pin
jan fry25-Dec-11 21:53
jan fry25-Dec-11 21:53 
AnswerRe: Find the location of text in an image (OCR or any other method) Pin
Kangerm00se26-Jan-12 20:50
Kangerm00se26-Jan-12 20:50 
You might consider the EMGU package. This has tools like object recognition. A tutorial can using face detection can be found here[^].
The advantage is that it is very fast, but it might be difficult to implement, and a lot of work to learn it to recognize your text. Also, it its not garanteed that it will return the exact pixel of the beginning of the text (might be one of).

If speed of processing is not an issue, then I would write your own solution. Example if your tekst starts with the letter L (8 pixels down, 5 right):

C#
if(pixel (0,0) is in textcolor)
    if(pixels (0,1) to (0,7) are also in textcolor)
        if(pixels (1,7) to (4,7) are also in textcolor)
            there is a letter 'L' starting in location (0,0);
else
    move to next pixel;


You will have to optimise this to get fast results. Look for the 'lockbits' method, which uses pointers to loop through your pixels very fast (easily increases the speed 10x).
Questionconverting word doc to image Pin
Tripathi Alpa20-Dec-11 23:49
Tripathi Alpa20-Dec-11 23:49 
AnswerRe: converting word doc to image Pin
thatraja21-Dec-11 0:33
professionalthatraja21-Dec-11 0:33 
Questionsetting security level for .Net 4.0 exe on trusted server (inrtranet) Pin
cegarman20-Dec-11 5:32
cegarman20-Dec-11 5:32 
AnswerRe: setting security level for .Net 4.0 exe on trusted server (inrtranet) Pin
Dave Kreskowiak20-Dec-11 6:14
mveDave Kreskowiak20-Dec-11 6:14 
GeneralRe: setting security level for .Net 4.0 exe on trusted server (inrtranet) Pin
cegarman20-Dec-11 7:51
cegarman20-Dec-11 7:51 
GeneralRe: setting security level for .Net 4.0 exe on trusted server (inrtranet) Pin
Dave Kreskowiak20-Dec-11 8:28
mveDave Kreskowiak20-Dec-11 8:28 
GeneralRe: setting security level for .Net 4.0 exe on trusted server (intranet) Pin
cegarman20-Dec-11 8:57
cegarman20-Dec-11 8:57 
Questionbest approach to business objects Pin
Simon_Whale19-Dec-11 13:02
Simon_Whale19-Dec-11 13:02 
AnswerRe: best approach to business objects Pin
Richard Andrew x6419-Dec-11 13:51
professionalRichard Andrew x6419-Dec-11 13:51 
GeneralRe: best approach to business objects Pin
Simon_Whale19-Dec-11 22:00
Simon_Whale19-Dec-11 22:00 
AnswerRe: best approach to business objects Pin
Shameel21-Dec-11 2:41
professionalShameel21-Dec-11 2:41 
GeneralRe: best approach to business objects Pin
Simon_Whale21-Dec-11 4:04
Simon_Whale21-Dec-11 4:04 
QuestionEntity Framework going in to infinite loop Pin
indian14316-Dec-11 10:20
indian14316-Dec-11 10:20 
AnswerRe: Entity Framework going in to infinite loop Pin
Not Active16-Dec-11 13:50
mentorNot Active16-Dec-11 13:50 
AnswerRe: Entity Framework going in to infinite loop Pin
Pete O'Hanlon19-Dec-11 0:56
mvePete O'Hanlon19-Dec-11 0:56 
QuestionOPENING THE VBA EDITOR ON CLICK ON OLEOBJECTS BUTTON Pin
archana jain15-Dec-11 2:43
archana jain15-Dec-11 2:43 
Questionreference and this in .net Pin
messages13-Dec-11 20:13
messages13-Dec-11 20:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.