Click here to Skip to main content
15,888,121 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: what is c++ ?? Pin
Jijo.Raj11-Jan-04 18:33
Jijo.Raj11-Jan-04 18:33 
QuestionHow can I rename random files? Pin
tadees10-Jan-04 1:43
tadees10-Jan-04 1:43 
AnswerRe: How can I rename random files? Pin
Antti Keskinen10-Jan-04 2:36
Antti Keskinen10-Jan-04 2:36 
AnswerRe: How can I rename random files? Pin
Ernesto D.10-Jan-04 14:54
Ernesto D.10-Jan-04 14:54 
GeneralNeed Help (detecting file open dialog popup) Pin
Zee man9-Jan-04 22:17
Zee man9-Jan-04 22:17 
GeneralRe: Need Help (detecting file open dialog popup) Pin
Monty210-Jan-04 1:43
Monty210-Jan-04 1:43 
Generalneuronal network Pin
andreas.schaerer9-Jan-04 22:14
andreas.schaerer9-Jan-04 22:14 
GeneralRe: neuronal network Pin
Daniel Turini9-Jan-04 23:13
Daniel Turini9-Jan-04 23:13 
1. You are probably searching for the wrong words, that's why you didn't find a lot of articles here. The common English term is 'neural networks', not neuronal. Here on Codeproject there is a great series about AI algorithms, including neural networks, made on C#, but it should be clear enough for anyone who knows C++.
2. A neural network (NN) is usually not the full solution. In an OCR, as an example, you can't feed the NN with a bitmap and have all the chars on the other side. The NN only takes place when it is needed to 'find something similar'. There are lots of other things involved in an OCR, like identifying lines of text, separating chars, decomposing chars on vectors for font independance, and then, the last step is the NN. I did an OCR for damaged images in the past and I know that the NN is the easiest part.
In your case, you won't be able to feed a NN with a image and train it to detect if it's a male jpg or a female jpg, unless the samples are really limited. The solution is much more complex, and involves separating the image in its components, like hair, eyes, nose, mouth, etc, vectorizing them in some form and only then feeding the NN with those vectors and classifying them as male or female.
Again, it's not an easy task to do, and it would certainly not be the first NN I would do. You should start with simpler examples first.

Trying to make bits uncopyable is like trying to make water not wet.
-- Bruce Schneier


By the way, dog_spawn isn't a nickname - it is my name with an underscore instead of a space. -- dog_spawn
GeneralRe: neuronal network Pin
abc87610-Jan-04 18:36
abc87610-Jan-04 18:36 
GeneralRe: neuronal network Pin
Daniel Turini10-Jan-04 22:23
Daniel Turini10-Jan-04 22:23 
Generalclass member have no valid adress!!please help! Pin
andreas.schaerer9-Jan-04 21:36
andreas.schaerer9-Jan-04 21:36 
GeneralRe: class member have no valid adress!!please help! Pin
valikac10-Jan-04 5:31
valikac10-Jan-04 5:31 
GeneralRe: class member have no valid adress!!please help! Pin
andreas.schaerer10-Jan-04 6:03
andreas.schaerer10-Jan-04 6:03 
GeneralRe: class member have no valid adress!!please help! Pin
valikac10-Jan-04 7:39
valikac10-Jan-04 7:39 
GeneralRe: class member have no valid adress!!please help! Pin
andreas.schaerer10-Jan-04 9:45
andreas.schaerer10-Jan-04 9:45 
GeneralRe: class member have no valid adress!!please help! Pin
Daniel Turini11-Jan-04 2:01
Daniel Turini11-Jan-04 2:01 
GeneralRe: class member have no valid adress!!please help! Pin
DaFrawg11-Jan-04 8:17
DaFrawg11-Jan-04 8:17 
QuestionGetOpenFileName options? Pin
Randy Trulson9-Jan-04 21:02
Randy Trulson9-Jan-04 21:02 
GeneralLooking for an IDE/Editor with source code Pin
Jagadeesh VN9-Jan-04 19:28
Jagadeesh VN9-Jan-04 19:28 
GeneralRe: Looking for an IDE/Editor with source code Pin
John R. Shaw10-Jan-04 8:57
John R. Shaw10-Jan-04 8:57 
GeneralRe: Looking for an IDE/Editor with source code Pin
John R. Shaw10-Jan-04 9:09
John R. Shaw10-Jan-04 9:09 
GeneralSetting focus on the control Pin
Member 7383649-Jan-04 18:54
Member 7383649-Jan-04 18:54 
GeneralRe: Setting focus on the control Pin
Prakash Nadar10-Jan-04 1:06
Prakash Nadar10-Jan-04 1:06 
GeneralRe: Setting focus on the control Pin
Ernesto D.10-Jan-04 15:01
Ernesto D.10-Jan-04 15:01 
GeneralFile Size Pin
picasso29-Jan-04 18:01
picasso29-Jan-04 18:01 

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.