openCV and ogre3d VC solutions

  • Thread starter Thread starter aneuryzma
  • Start date Start date
A

aneuryzma

Hi guys,

I'm doing a project with both ogre3d and openCV and now I have to
merge the code. I have 2 Visual C++ solutions and either of them has
his own configuration.

Can you give me some suggestion on how to merge the two solutions and
use both libraries together ?

thanks!
 
Hi guys,

I'm doing a project with both ogre3d and openCV and now I have to
merge the code. I have 2 Visual C++ solutions and either of them has
his own configuration.

Can you give me some suggestion on how to merge the two solutions and
use both libraries together ?

thanks!

Hi guys, no one can give me an help ?

I need to convert the openCV Win32 console application to Win32
Project, but once i do it I got the following error

MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol
_WinMain@16 referenced in function ___tmainCRTStartup

how can I solve it (using Win32 Project) ?

thanks
 
aneuryzma said:
Hi guys, no one can give me an help ?

I need to convert the openCV Win32 console application to Win32
Project, but once i do it I got the following error

MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol
_WinMain@16 referenced in function ___tmainCRTStartup

how can I solve it (using Win32 Project) ?

Define WinMain in your program.

http://msdn.microsoft.com/en-us/library/ms633559.aspx

You can't just turn a console program into a GUI program - you need to write
a GUI as well. Or perhaps you already have a GUI in the other project? .

-cd
 
Back
Top