April 26th, 2010 08:47 AM
The data are some kind of points calculated with algorithms.
They all have coordinates, they all have a so-called descriptor... but some of them have additional data associated (10 doubles, 4...
April 26th, 2010 07:57 AM
I just realized I should specializate EVERY type I use.
It's stupid doing this, so I think I need to rewrite my entire project keeping one class for all instances...
so I'm changing my...
April 25th, 2010 06:45 AM
Really can't understand your question.. do you want to print out the time difference quickly ('in a second') or in seconds difference format (like 4943 seconds between the two events) ?
And I...
April 25th, 2010 06:41 AM
Hi all,
I used a template class to hold various types of data, for example:
struct Structure1
{
int a, b;
}
April 25th, 2010 06:31 AM
To get current time: GetSystemTime
To count time: get two structures at two different times with the api above and difference-them
April 21st, 2010 03:43 PM
Thank you, nothing more than a class-copy in case of use of the = operator, right?
This sounds insane for most of C++ code, but is to blame in this case where little data is present into the class...
April 21st, 2010 11:54 AM
I read that a "template-ready" class must include a default constructor, a copy constructor and a = operator overload (information taken from http://www.codeproject.com/KB/stl/PracticalGuideStl.aspx)...
April 20th, 2010 02:19 PM
You was right, thank you!
April 20th, 2010 06:29 AM
That does not solve my problem and I still get the same error.
If I rename the file from .c to .cpp, I obtain something like 400 errors (obviously I made simple here the code for readability...
April 20th, 2010 05:41 AM
Hi all, I am receiving a
"error LNK2019: unresolved external symbol "int __cdecl _function(...)" error while trying to compile the following files:
main.cpp...
April 14th, 2010 05:26 PM
Ok, anyway thank you all guys for giving me help in solving this matter
I'll find a solution with your advices!
April 14th, 2010 04:12 PM
I'll change my question so maybe there will be more chances to succeed: an executable has been created with this same source code I am using.
Why do I get an "Access Violation" error (reading at...
April 14th, 2010 03:44 PM
I have another exe file which calls the SAME library (I compared MD5 hases and they are identical... dimensions too so let's not jump to collision exploits with fantasy) and it does not crash. It...
April 14th, 2010 02:09 PM
Thank you both for you answers. OpenCV will be the next road to be taken then.
Meanwhile, I think Paul had a point..
Here's the code of the executable that incapsulates the DLL methods in a...
April 14th, 2010 01:09 PM
I don't know dude because it's included in this package:
http://www.vision.ee.ethz.ch/~surf/SURF-V1.0.9-WinDLLVC8.tar.gz
and ****... the source isn't included.
Searching for another...
April 14th, 2010 08:41 AM
I compiled this code http://www.vision.ee.ethz.ch/~surf/download_ac.html for VC8.0 (2005) with Visual Studio 2008
The code is essentially a simple console exe file which calls an external dll...
March 20th, 2010 05:31 AM
I have a wireless camera with RGB exit cable (PAL) and I was planning to control the video via C++ code
The idea was to use something like EasyCap adapter (RCA to USB with a driver CD) to let the...
August 17th, 2009 09:49 AM
Okay, solution is on the way. I'll start working asap and if I have more problems I'll let you know
Thanks
August 14th, 2009 09:46 AM
Thank you for your interest.
I need to intercept WM_DEVICECHANGE in my C++ class. The purpose of this class was to let everyone use a HID device more easily (a wrapper for the HID apis)
So I am...
August 13th, 2009 05:54 PM
I was wondering how to intercept a WM_ specific message into a C++ class, I need to use the RegisterDeviceNotification function to register a specific WM_ message (I need a window here right?) and...
August 13th, 2009 04:57 AM
I was thinking at the "windows.h" thing.. Mfc have some problem with it and always give errors like "windows.h should not be included with mfcs", but if I do not use it what's the solution?
August 13th, 2009 04:55 AM
Perfect, exactly what I needed. Thank you both.
Just another doubt: I have to create a wrapper class for a specific protocol, the purpose of this class is to be useful and easy to use for other...
August 12th, 2009 07:41 PM
What is the equivalent of the construct
ON_MESSAGE(WM_winmessage, EventHandler)
in win32 C++? I mean without using mfcs