Tagged Questions
An algorithm for reducing the number of points in a curve that is approximated by a series of points
1
vote
2answers
375 views
Graph Simplification Algorithm Advice Needed
I have a need to take a 2D graph of n points and reduce it the r points (where r is a specific number less than n). For example, I may have two datasets with slightly different number of total points, ...
1
vote
1answer
384 views
Douglas-Peucker - Shortest arc from a point to a circle, on the surface of a sphere
I have seen many examples in various programming languages that are using the Douglas-Peucker polyline simplification algorithm to produce a GPolyline to be used on Google Maps.
The algorithm, when ...
0
votes
1answer
23 views
I got Error in importing Tuple in Java Eclipse [closed]
Here is the code from SGimplify
and I tired compiling it as an Android Application using Java Eclipse. But there are errors.
One is in "import Tuple.*;".
Here is the code:
package ...
0
votes
1answer
43 views
How to convert this codes into Java Eclipse code? [closed]
Here is the code.
Im trying to create an Android Application using the Douglas-Peucker Algorithm. I found these sample codes but when I compile it in Java Eclipse I got an error "DataFilter cannot be ...
0
votes
1answer
66 views
Android: How to get the string of points from the line being drawn?
This is actually our Thesis, we are required to use the Ramer-Douglas-Peucker Algorithm in simplifying lines, can anyboy help me how to implement this in an Android App.
I just want to ...
0
votes
0answers
69 views
A version of Douglas-Peucker
I try to program the Douglas-Peucker algorithm in Java.
I have a version but I'm not sure that's good :
public Point[] algoDouglasPeucker(Point [] tab) {
return douglasPeuckerAux(tab,0,tab.length ...
0
votes
0answers
175 views
how to convert recursive douglas peucker into non-recursive one?
im kinda newbie to the c++ programming and im working on a grand project using douglas peucker algorithm. my first task is to convert it from recursive to non-recursive version. i have looked through ...
-1
votes
1answer
48 views
How will I convert this codes to codes compatible with Android Project? [closed]
This is my code, this was compiled as a JAVA APPLICATION. What I want to create is an Android Application. I just want to ask if how will I convert this codes into codes so that when I compile it as ...
-2
votes
0answers
41 views
How to Draw in VB.Net? [closed]
I was trying to create a program that will use the Drawing Function in VB.NET, when I compile my code, there are no errors but I can't perform drawing in the form.
Here is my code:
Imports ...
-3
votes
1answer
98 views
Douglas-Peucker algorithm in Java [closed]
I'm doing an implementation of Douglas-Peucker algorithm in JAVA.
I work on array of Points and I want an example of array Points in which I launch the Douglas-Peucker algorithm.
Someone please give ...