Tagged Questions
9
votes
1answer
187 views
C++ library for integer trigonometry, speed optimized with optional approximations?
I've reached the point in a project where it makes more sense to start building some support classes for vectors and misc trigonometry than keep using ad-hoc functions. I expect there to be many C++ ...
4
votes
3answers
442 views
SSE normalization slower than simple approximation?
I am trying to normalize a 4d vector.
My first approch was to use SSE intrinsics - something that provided a 2 times speed boost to my vector arithmetic.
Here is the basic code: (v.v4 is the input) ...
2
votes
2answers
1k views
Approximating a shape boundary using Fourier descriptors
I am trying to approximate shape boundaries by using Fourier descriptors. I know this can be done because I've learned about it in class and read about it in several sources.
To obtain the Fourier ...
1
vote
2answers
285 views
How to implement proximity search for latitude and longitude values?
my application (Qt based mobile application) gets data from a server in the following format : latitude,longitude,description.
I need to store this data in a data structure for quick retrieval later. ...
0
votes
2answers
249 views
Reading images and approximating and recreating each pixel with closest colours?
http://pastebin.com/v0B3Vje2
I'm looking for a way to get pixels from an image, then find the closest color to that in another program(I can compile it into the source of the "Another program"; ...