Search Results

0
votes

Is using unsigned integer overflow good practice?

Since signed numbers on CPUs can be represented in different ways, 99.999% of all current CPUs use twos-complement notation. Since this is the majority of machines out there, it is difficult to fin …
-1
votes

How to make a function return a pointer to a function? (C++)

I'm assuming C here (no objects, but C++ comment style :) : // Type of function which takes a char and returns an int: typedef int (*Func)(char a); // An example of the function yo …
2
votes

OpenCV: Accessing And Taking The Square Root Of Pixels

Assuming img_ is of type IplImage, and assuming 16 bit unsigned integer data, I would say unsigned short pixel_value = ((unsigned short *)&(img_->imageData[img_->widthStep …
2
votes

Solving our versioning and build problems

Git in itself is perfectly suited for having a multitude of branches of source code. However, the maintenance of those branches will always reside at the user and lies outside the scope of a given …
7
votes

Hide a file or directory using the Windows API from C

You can do it by calling SetFileAttributes and setting the FILE_ATTRIBUTE_HIDDEN flag. See http://msdn.micr …
1
vote

openmp for linux

OpenMP is in the default gcc distribution for at least Debian, and probably on other also. See 'man gcc' and look for '-fopenmp'. For gcc 4.4, it appears you might need package libg …
0
votes

Portable Compare And Swap (atomic operations) C/C++ library?

You could also look at libsync for inspiration from http://www.ioremap.net/node/224 , which is quite new (maybe too new), but it is bein …