Click here to Skip to main content
16,004,991 members
Home / Discussions / C#
   

C#

 
AnswerRe: boxing and unboxing creating confusion Pin
Christian Graus29-Oct-07 23:12
protectorChristian Graus29-Oct-07 23:12 
Questioncharacter replace Pin
pavya_Cool29-Oct-07 21:29
pavya_Cool29-Oct-07 21:29 
AnswerRe: character replace Pin
Giorgi Dalakishvili29-Oct-07 21:31
mentorGiorgi Dalakishvili29-Oct-07 21:31 
GeneralRe: character replace Pin
pavya_Cool29-Oct-07 21:40
pavya_Cool29-Oct-07 21:40 
GeneralRe: character replace Pin
Giorgi Dalakishvili29-Oct-07 21:42
mentorGiorgi Dalakishvili29-Oct-07 21:42 
QuestionAutomatic Number Plate Recognition Pin
dims1229-Oct-07 21:09
dims1229-Oct-07 21:09 
AnswerRe: Automatic Number Plate Recognition Pin
Colin Angus Mackay30-Oct-07 1:16
Colin Angus Mackay30-Oct-07 1:16 
AnswerRe: Automatic Number Plate Recognition Pin
zain7868-Feb-10 0:22
zain7868-Feb-10 0:22 
hi there

firstly, get this open source control from here:http://www.pixel-technology.com/freeware/tessnet2/

Sample code i wrote for windows form c#: u can figure out the rest

openFileDialog1.ShowDialog();

Bitmap image = new Bitmap(openFileDialog1.FileName);
pictureBox1.Image = image;
tessnet2.Tesseract ocr = new Tesseract();
ocr.SetVariable("tessedit_char_whitelist", txtparameters.Text);
ocr.Init(@".\tessdata\", "eus", false);
List<tessnet2.Word> result = ocr.DoOCR(image, Rectangle.Empty);
foreach (tessnet2.Word word in result)

textBox1.Text += word.Text + "\r\n";
QuestionRun my Application on client side Pin
w20929-Oct-07 20:19
w20929-Oct-07 20:19 
AnswerRe: Run my Application on client side Pin
N a v a n e e t h29-Oct-07 20:31
N a v a n e e t h29-Oct-07 20:31 
GeneralRe: Run my Application on client side Pin
w20929-Oct-07 20:35
w20929-Oct-07 20:35 
GeneralRe: Run my Application on client side Pin
N a v a n e e t h29-Oct-07 21:11
N a v a n e e t h29-Oct-07 21:11 
Questiondrop down list post back refreshes to default state. How to prevent this? Pin
humblepgmr29-Oct-07 19:18
humblepgmr29-Oct-07 19:18 
AnswerRe: drop down list post back refreshes to default state. How to prevent this? Pin
sujithkumarsl29-Oct-07 19:23
sujithkumarsl29-Oct-07 19:23 
AnswerRe: drop down list post back refreshes to default state. How to prevent this? Pin
N a v a n e e t h29-Oct-07 19:47
N a v a n e e t h29-Oct-07 19:47 
QuestionIs object value type or reference type Pin
G.K.M.29-Oct-07 18:02
G.K.M.29-Oct-07 18:02 
AnswerRe: Is object value type or reference type Pin
N a v a n e e t h29-Oct-07 18:57
N a v a n e e t h29-Oct-07 18:57 
GeneralRe: Is object value type or reference type Pin
J4amieC29-Oct-07 23:15
J4amieC29-Oct-07 23:15 
Questionadd dropdown list server control in classs library project Pin
deepalititi29-Oct-07 17:59
deepalititi29-Oct-07 17:59 
AnswerRe: add dropdown list server control in classs library project Pin
MohammadAmiry29-Oct-07 19:20
MohammadAmiry29-Oct-07 19:20 
AnswerRe: add dropdown list server control in classs library project Pin
Ahmad Adnan29-Oct-07 21:36
Ahmad Adnan29-Oct-07 21:36 
QuestionHow do I specify a time in a DateTime object? Pin
JoeRip29-Oct-07 14:46
JoeRip29-Oct-07 14:46 
AnswerRe: How do I specify a time in a DateTime format? Pin
Luc Pattyn29-Oct-07 14:50
sitebuilderLuc Pattyn29-Oct-07 14:50 
GeneralRe: How do I specify a time in a DateTime format? Pin
JoeRip29-Oct-07 14:53
JoeRip29-Oct-07 14:53 
AnswerRe: How do I specify a time in a DateTime object? Pin
Anthony Mushrow29-Oct-07 14:53
professionalAnthony Mushrow29-Oct-07 14:53 

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.