Click here to Skip to main content
15,902,114 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralERROR:cannot open file "nafxcwd.lib" Pin
JoeMass25-Feb-04 3:16
JoeMass25-Feb-04 3:16 
GeneralRe: ERROR:cannot open file "nafxcwd.lib" Pin
Prakash Nadar25-Feb-04 3:23
Prakash Nadar25-Feb-04 3:23 
GeneralRe: ERROR:cannot open file "nafxcwd.lib" Pin
Michael Dunn25-Feb-04 4:51
sitebuilderMichael Dunn25-Feb-04 4:51 
GeneralGetting text of selected combobox item Pin
monrobot1325-Feb-04 3:14
monrobot1325-Feb-04 3:14 
GeneralRe: Getting text of selected combobox item Pin
Prakash Nadar25-Feb-04 3:20
Prakash Nadar25-Feb-04 3:20 
GeneralRe: Getting text of selected combobox item Pin
David Crow25-Feb-04 3:35
David Crow25-Feb-04 3:35 
GeneralRe: Getting text of selected combobox item Pin
monrobot1325-Feb-04 4:13
monrobot1325-Feb-04 4:13 
GeneralCODE Pin
Goh Hui Beng25-Feb-04 2:59
Goh Hui Beng25-Feb-04 2:59 
// Show head
if (features->Head.bHeadFound)
{
const SHeadFeatures *pHead = &features->Head;

// Show head features (by green color)
if (pHead->bHeadSizeFound)
{
image.DrawMarker(pHead->iHeadTopX,pHead->iHeadTopY, sz,0, 0x00ff00);
image.DrawMarker(pHead->iHeadLeftX, pHead->iHeadLeftY, sz,0, 0x00ff00);
image.DrawMarker(pHead->iHeadRightX, pHead->iHeadRightY, sz,0,0x00ff00);
image.DrawMarker(pHead->iChinCenterX, pHead->iChinCenterY, sz,0, 0x00ff00);
image.DrawMarker(pHead->iChinLeftX, pHead->iChinLeftY, sz,0, 0x00ff00);
image.DrawMarker(pHead->iChinRightX, pHead->iChinRightY, sz,0, 0x00ff00);
}

if (pHead->bLeftTempleFound)
image.DrawMarker(pHead->iTempleLeftX, pHead->iTempleLeftY, sz,0, 0x00ff00);
if (pHead->bRightTempleFound)
image.DrawMarker(pHead->iTempleRightX,pHead->iTempleRightY, sz,0, 0x00ff00);

if (pHead->bSplFaceFound)
DrawSpline(pHead->hSpl_face,image,0x00ff00);

// Show head bounding box (by green color)
if (pHead->bBoundsFound)
{
image.DrawRect(features->Head.iLeftTopBoundX, features->Head.iLeftTopBoundY,
features->Head.iRightTopBoundX, features->Head.iRightTopBoundY,
features->Head.iLeftBotBoundX, features->Head.iLeftBotBoundY,
features->Head.iRightBotBoundX, features->Head.iRightBotBoundY,0x00ff00);

image.DrawLine(pHead->iFaceLeftTopBoundX, pHead->iFaceLeftTopBoundY,
pHead->iFaceRightTopBoundX, pHead->iFaceRightTopBoundY,0x00ff00);

}
}


CAN SOMEONE EXPLAIN TO ME THIS SET OF CODE

THANK ALOT
GeneralRe: CODE Pin
Prakash Nadar25-Feb-04 3:18
Prakash Nadar25-Feb-04 3:18 
GeneralRe: CODE Pin
Maximilien25-Feb-04 3:26
Maximilien25-Feb-04 3:26 
GeneralRe: CODE Pin
Goh Hui Beng25-Feb-04 3:49
Goh Hui Beng25-Feb-04 3:49 
GeneralPrinter fonts setting Pin
El'Cachubrey25-Feb-04 2:56
El'Cachubrey25-Feb-04 2:56 
GeneralRe: Printer fonts setting Pin
ana_v1237-Aug-07 11:52
ana_v1237-Aug-07 11:52 
QuestionHow to create hidden Dialog Window ? Pin
vgrigor25-Feb-04 2:42
vgrigor25-Feb-04 2:42 
AnswerRe: How to create hidden Dialog Window ? Pin
David Crow25-Feb-04 2:52
David Crow25-Feb-04 2:52 
GeneralRe: How to create hidden Dialog Window ? Pin
vgrigor25-Feb-04 3:04
vgrigor25-Feb-04 3:04 
GeneralRe: How to create hidden Dialog Window ? Pin
David Crow25-Feb-04 3:08
David Crow25-Feb-04 3:08 
GeneralRe: How to create hidden Dialog Window ? Pin
vgrigor25-Feb-04 3:19
vgrigor25-Feb-04 3:19 
GeneralRe: How to create hidden Dialog Window ? Pin
David Crow25-Feb-04 3:28
David Crow25-Feb-04 3:28 
GeneralRe: How to create hidden Dialog Window ? Pin
Prakash Nadar25-Feb-04 3:32
Prakash Nadar25-Feb-04 3:32 
GeneralRe: How to create hidden Dialog Window ? Pin
David Crow25-Feb-04 3:37
David Crow25-Feb-04 3:37 
GeneralRe: How to create hidden Dialog Window ? Pin
Prakash Nadar25-Feb-04 4:13
Prakash Nadar25-Feb-04 4:13 
GeneralRe: How to create hidden Dialog Window ? Pin
vgrigor25-Feb-04 4:16
vgrigor25-Feb-04 4:16 
GeneralRe: How to create hidden Dialog Window ? Pin
vgrigor25-Feb-04 3:33
vgrigor25-Feb-04 3:33 
AnswerRe: How to create hidden Dialog Window ? Pin
Monty225-Feb-04 2:58
Monty225-Feb-04 2:58 

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.