How to Segment the characters ?
-
Hi .. How to segment the each and every characters from the word. Consider for an example: WORD - Segmented Characters Visualc++ ------ > V|i|s|u|a|l|c|+|+| After Segmentation Could any one how to segment eace character :thumbsup:
What do you mean by "segmenting" ? This word is stored in a char array ? If yes, then simply access each character using the [] operator. I don't really understand your problem, could you elaborate a bit ?
Cédric Moonen Software developer
Charting control [v2.0] OpenGL game tutorial in C++ -
What do you mean by "segmenting" ? This word is stored in a char array ? If yes, then simply access each character using the [] operator. I don't really understand your problem, could you elaborate a bit ?
Cédric Moonen Software developer
Charting control [v2.0] OpenGL game tutorial in C++ -
Hi .. How to segment the each and every characters from the word. Consider for an example: WORD - Segmented Characters Visualc++ ------ > V|i|s|u|a|l|c|+|+| After Segmentation Could any one how to segment eace character :thumbsup:
Do you really mean this (I can't believe)?
#include <stdio.h>
#include <string.h>
void main()
{
unsigned int i;
char word[] ="VisualC++";
for (i = 0; i<strlen(word); i++)
{
printf("%c|", word[i]);
}
printf("\n");
}:)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
Do you really mean this (I can't believe)?
#include <stdio.h>
#include <string.h>
void main()
{
unsigned int i;
char word[] ="VisualC++";
for (i = 0; i<strlen(word); i++)
{
printf("%c|", word[i]);
}
printf("\n");
}:)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
no not this... do u know captcha ? we need to Extract text from the bitmap image.. then we need to find each character
-
no not this... do u know captcha ? we need to Extract text from the bitmap image.. then we need to find each character
Are you writing a bot? :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
Are you writing a bot? :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
Image processing After Extracting the text .then We need to find identify each character on bitmap image My question is how to segment each character while extracting
You should scan lines of bitmap image. If image is very separated by rectangles its a bit easiyer to cut cells. And if each rectangle size is fixed, its easy programing. But each character donsent hava ordinary rectangle regions its hard to cut from. You must recognize each region of character at first and cut region, normalize and reconize as character next. ... it is very hard to program for me ... :doh: