Maximum disc containing no more than k points

graphics

    Next

  • 1. extracting distinct polyhedra from isosurface/marching cube output
    The output from isosurface/marching cubes algorithms consists of a list of vertices {V} and then a list of faces {F} defined as a ccw traverse of a list of vertices. I need to extract all closed/disjoint vertex/face sets that comprise the various polyhedra in the output. Can someone point me to a good algorithm and/or {C++/matlab/ mathematica/python} code that will answer my question? strelitz
  • 2. IK in 2D
    Have anyone already had a 2D IK algorithm? Or are there any open source projects for this category available on the net? I realized games like street fighter II use sprites instead of IK... Am I right? Thanks Jack
  • 3. Converting a 3D polyline to a smooth Nurbs curve
    Hi Guys, I have a very dense 3D polyline as a result of a surface/surface intersection. No I want to convert it in a Nurbs curve with a reasonable number of control points. I know two methods: 1) Local bicubic interpolation 2) Cubic spline interpolation The first generates about 4 times the number of control points that the polyline, the second need start and end tangents to be defined. What is the best solution to apply? Local bicubic interpolation seem more robust, should I apply a knot removal to simplify the complex curve I get? Thanks in advance for your help. Alberto
  • 4. fastest calculation for arc-line-arc triplet?
    Given two points, an angle at each point, and a minimum radius, what is the fastest way to calculate the shortest connection between the two points using arcs and lines such that the tangent of the arcs/ lines matches the angle at the first point and the opposite angle at the second? I've got some old code that makes four circles: two circles tangent at each point. It then connects the four circles with four possible lines and then determines the shortest path by comparing the length of all four possible routes. What isn't clear to me is how it calculates tangent points on the four circles for connecting the lines. Does anybody have a formula for that? Thanks.

Maximum disc containing no more than k points

Postby Nitzan Shaked » Tue, 15 Feb 2011 01:37:14 GMT

Hello. I hope this is the right place to ask (and if not could
somebody kindly direct me to where it is?)

I have the following problems: given a (large, roughly 9M) set of
points, I need to find for each point the largest disc centered at
that point that contains no more than "k" other points.

If there is no other way I can live with "the largest square" instead
of "the largest disc".

This problem can be solved off-line and not necessarily in real-time/
on-line.

Another variation on the problem that I have: each point has an
integer positive weight, and I need to find the largest disc/square
that contains no more than "k" sum-weights (that is: the sum of
weights of points in the inscribed region is no more than k).

tia!

Re: Maximum disc containing no more than k points

Postby Kaba » Tue, 15 Feb 2011 04:13:12 GMT



Hi,

It is.


Equivalent to: find the k:th nearest neighbor under the Euclidean norm.


Same problem with maximum norm.


Essentially the same problem (above the weights can be thought to be 1).

In low to moderately high dimension (say 32) you'll do very fine by 
constructing a kd-tree and searching in that. For higher dimensions a 
good answer is brute force.

-- 
 http://www.**--****.com/ 

Re: Maximum disc containing no more than k points

Postby Andrew_M » Wed, 16 Feb 2011 07:17:16 GMT





The simple method requires N*N ops (brute force). There is a way to
solve this problem by a smaller number (roughly proportional N).
Assume we have a 32 bpp bitmap. Put all of your points onto it.
Initially this bitmap is filled by zeroes. When you put a point number
i onto this bitmap, zero at corresponding point is to be replaced by
number k (number starts from one). Then you need to check each point
and find a circle around it, which contains no more than k another
points. It can be done quickly using some simple approaches (check
circle with radius r1, if it is too small multiply r1 by 1.5, if r1 is
too large divide it by 1.5 and so on. When you have two radiuses -r1
and r2 then check an average radius). There are two problems:
coordinates will be rounded and two (or more ) points will be placed
just onto one pixel. The first problem is rather simple- after you
have got set of points with rounded coordinates, check their precise
values. The second problem requires another approach. Simple (and not
elegant) is to create two, three bitmaps and if a pixel at bitmap
number one is already occupied, place a point to the bitmap number two
and so on. Much better approach is to place onto bitmap not numbers,
but pointers to buffers with numbers. This method probably will be
rally fast. You needn't have a large bitmap- ropugh approximation of
actual coordinates will be more than enough. It is an interesting task
for a programmer- to quickly allocate all beforenamed buffers.

Re: Maximum disc containing no more than k points

Postby Kaba » Wed, 16 Feb 2011 07:54:58 GMT



A grid generalizes this idea: pick an axis-aligned box to bound the 
points. Then divide it into a grid of equal-sized voxels (where each 
voxel is an aligned box). In each voxel keep up a list of points that 
are contained in it. No rounding is done.

Grids are good for point data that is uniformly distributed: no voxel 
should contain many points, and there should be not many empty voxels. 
Due to exponentially growing storage needs, grids are not suitable for 
dimensions > 3.


Using a grid, the k nearest neighbors are found by examining voxels in 
order of distance from the query point until it is known that all the 
rest of the voxels can not contain closer candidates.

-- 
 http://www.**--****.com/ 

Re: Maximum disc containing no more than k points

Postby Andrew_M » Wed, 16 Feb 2011 22:23:39 GMT





I've just noticed, that what I'm talking about solves not the original
problem, but similar- how many points lays within a circle with
predefined radius R. Let's see, which approach will be the best for
the original problem (to find radius of a circle, what contents k
points) in 1D event. The quick sort algorithm, of course. Once we have
an ordered set of values, all what we need is to check 2*k neighbors
of some point (k to the left side of its position and k to the right
one). Similar method can be used for 2D event too. Let's make two
copies of our set of points. One will be ordered accordingly to x-
coordinate, the second to y- coordinate. This method gives us
significant economy too. Assume all points lays inside a square. Using
this approach, we need to check not the whole square, but a cross
within it. It means, that total number of ops will be proportional not
to N*N, but N*sqrt(N). It seems to me, that this method will be better
than grid based- at least it not depends on the way in what points are
distributed.

Re: Maximum disc containing no more than k points

Postby Kaba » Wed, 16 Feb 2011 23:17:55 GMT



In 1D, the problem can be solved in O(n log n), by sorting as you say. 

In 2D, the problem can be solved in O(n log n) too, by using Voronoi 
graphs.

But even in 2D, I'd go for a kd-tree. While there are no non-trivial 
worst-case analysis of kd-trees (as far as I know), they are a very 
practical tool for approximity queries. Expected time analyses show 
O(n log n) under some distribution assumptions. Of course, as 
dimensionality increases, the gap between the performance of kd-tree and 
brute-force gets smaller.

There are a lot of open questions on what can be assumed and what not. A 
practical approach allows for different distance measures, scales to 
higher dimensions, allows for dynamic updates on the point set, and 
works efficiently.

-- 
 http://www.**--****.com/ 

Re: Maximum disc containing no more than k points

Postby Andrew_M » Thu, 17 Feb 2011 06:21:30 GMT





may be, method, what I described, requres N*log(N) too (it is an
average number of ops, of course- not for the worst case scenario). .
N*sqrt(N) will be if one needs to check the whole cross. Real
efficiency depends on many things, some of them hardly can be known
without experiments. There is a gap between pure theory and practical
realizations. I met not once situation, when there is no adequate
theory for some events. I wrote a subroutine for quicksort, using
different approaches (recursive call and just-in-place sorting). My
input set was relatively large- millions of input points, and
recursive call was not the best- it requires too large stack. Using
assembler, I rewroute this procedure without chains of calls. This one
was better than written using C- assembler variant worked three times
faster.

Re: Maximum disc containing no more than k points

Postby Nitzan Shaked » Fri, 18 Feb 2011 02:38:43 GMT

Thank you all for the answers so far. Kaba's original reply was right
and I should have understood it right away -- what I need a simple
modification on KNN.
I went back and brushed up on my kd-tree theoretical stuff, and I
understand that it is O(n*sqrt(n)).

After a little bit of reading I found out about cover trees, which
perform in n*log(n). I am now looking to generalize NN to kNN on cover
trees, which I think I have.
The only(?) question remaining is whether there is an all-kNN
algorithm for cover trees, which is what I really need, and whether it
can be easily modified for my case (where I require that
sum(weight(P'))<k, not that |P'|<k). (Reminder: each point has a
weight, and I want the largest radius that contains points whose total
weight < k, I am not looking for the radius where num points < k).

Thanks again!

Re: Maximum disc containing no more than k points

Postby Nitzan Shaked » Fri, 18 Feb 2011 02:41:41 GMT

n Feb 15, 12:17m, Andrew_M < XXXX@XXXXX.COM > wrote:

The down side here is that my points are not uniformly distributed at
all (they actually represent population points in the world...), and I
have MANY of them. The required memory will be t^2, where "t" is some
resolution factor. Finally, the search itself for each point is
log(n)*log(n) (log(n) iterations of find contained points), and I
think I can do better.

Re: Maximum disc containing no more than k points

Postby Kaba » Fri, 18 Feb 2011 06:10:45 GMT



That's worst case (for 2D). The worst case almost never applies, it is 
very conservative. You should expect O(n log n) behaviour, particularly 
in low dimensions such as 2. In practice, you will have hard time 
finding a faster algorithm for this problem. Of course, you need to be 
careful on the implementation. 

Something that works really good:
* A kd-tree, where the leaf nodes contain the points, intermediate nodes 
do not.
* The sliding midpoint rule is used to split nodes (on the axis on which 
the node is longest).

-- 
 http://www.**--****.com/ 

Re: Maximum disc containing no more than k points

Postby Andrew_M » Fri, 18 Feb 2011 07:45:30 GMT

n Feb 17, 5:41m, Nitzan Shaked < XXXX@XXXXX.COM > wrote:

I told you about rather simple and probably efficient method. Assume
you have an input list of points {Xk, Yk}. Add to each member of this
list its number, so the input list will be the next: {Xk, Yk, k} where
k=0,1,...N. Make two copies of this list. Using quick sort algorithm
order the first list accordingly to X coordinate, the second one
accordingly to Y one. After this op the first list will be something
like this: {Xi, Yi, Ki} and Xi-1 <=Xi<=Xi+1 (hope, you understand,
that plus applies to index, not to coordinate). The second list will
be {Xj, Tj, Kj}. Now the third integer member of the structure
{double, double, int} after sorting points to location of an input
point number k, so you needn't waste time to look for it. Let's take a
point number k from the input array. Number i=Kk from the first list
is position of this point in the first ordered list, number j=Kk from
the list two is position of the same point in list two. Now you need
check points from the first list: i-1 and i+1, them check points from
the second list: j-1 and j+1, then from the first list: i-2, i+2, then
j-2, j+2 and so on. When to stop search? Distances fom the initial
point are not growing monotonly. On the other hand, due to the fact
that dr*dr=dx*dx+dy*dy one may be sure, that if dx=min(Xi - Xi-m, Xi+m
- Xi) it means that for all another points i+m+1, i+m+2,.. i-m-1, i-
m-2... dr will be greater then dx. Same situation with dy. Therefore,
when you find K points laying within a circle radius r with center at
point number k and after checking of the first list dx>=r check can be
stopped. This method looks rather attractive for me, simple and you
needn't to have a deal with Kd-trees and so on.

Re: Maximum disc containing no more than k points

Postby Andrew_M » Fri, 18 Feb 2011 12:37:30 GMT





I've just made a small experiment. Input data contents 190000 points.
the first attempt was to find for each point a circle with k=20
another points within it. It took 60 seconds, and average number of
points what was checked was 793. The second attempt was with k=40. It
took 90 second, and averale number was 1135. My comp has a single-core
Athlon 1300 GHz and less than 500 M of a memory. Beat me, boys, if you
can.

Re: Maximum disc containing no more than k points

Postby Kaba » Fri, 18 Feb 2011 22:10:19 GMT



I have Intel Q6600 2.40Ghz quad-core. I'm using only a single core. The 
point sets are generated from a gaussian distribution with mean 0 and 
standard deviation 1, the hardest test set I know. The norm is the 
Euclidean norm. I am searching for 20 nearest neighbors.

Using a kd-tree I described:

2D:

190000 points: 1.984s.
380000 points: 4.047s.
760000 points: 8.297s.

I am doubling the number of points in each step. It can be seen that the 
performance scales as O(n log n).

4D:

190000 points: 5.703s.
380000 points: 11.66s.
760000 points: 23.66s.

Performance scales as O(n log n).

6D:

190000 points: 21.89s.
380000 points: 46.13s.
760000 points: 98.17s.

As the dimension gets larger, the performance deteriorates from the 
O(n log n) towards O(n^2). It has already happened here, showing 
behaviour of O(n^(1.13)).

To test the 8D, I will now switch on all of the four cores to save time.

8D:

190000 points: 36.19s.
380000 points: 91.06s.
760000 points: 213.2s.

This shows behaviour similar to O(n^(1.23)). This is still far from the 
worst case O(n^(1.88)).

In summary, kd-trees a practical tool for nn searching. Explaining their 
surprising performance theoretically is still largely an open problem.

-- 
 http://www.**--****.com/ 

Re: Maximum disc containing no more than k points

Postby Andrew_M » Sat, 19 Feb 2011 07:22:03 GMT

n Feb 18, 1:10m, Kaba < XXXX@XXXXX.COM > wrote:

Well, if it works correctly, your method is better of course. I do
have couple of questions, however. How did you control obtained
results? I'm asking because there is no simple way to understand,
which group of points must be checked. Using kd-trees or any similar
method, you'll have set of groups. If one wants to find all points
within a circle with predefined radius, it is simpler- each group will
be a square and one needs to check 9 groups (the one what contains a
point and 8 another, surrounding it). But, if you wanna have set of
groups, each of them contains only k(or less) points, situation is not
so simple. Which groups will be nearest to selected one? If a bounding
box, containing some points is not a square, there is no simple way to
understand, which groups must be checked. One the other hand, you
should understand, that set of points, generated by Gaussian
distribution is the most simple event. There will be no clasters, no
stright lines and so on. My input was just with such peculiarities- it
was set of geodetical data (points was distributed mostly along curved
lines). Finally, efficiency depends on how many points one needs
check, seeking k closest to selected one (sorry, I finally realized,
that I checked more than I wroute- 3200 for k=20 and 4500 for k=40).
these numbers are too large, and this of course the main reason why my
methods works relatively slowly. How many points d'you check (I mean
an average number, of course)

Re: Maximum disc containing no more than k points

Postby Kaba » Sat, 19 Feb 2011 09:07:58 GMT



I don't understand what you are asking. Maybe how the searching 
algorithm on a kd-tree works? Here's how:

0. Set the culling distance to infinity (or to some number for fixed 
distance searches), and the current node to the root node.

1. From the current node, traverse the tree to the leaf node closest to 
the query point. On the way down, store the nodes you do _not_ visit in 
a priority queue based on distance.

2. Examine the points in the leaf node. Keep up accumulating an ordered 
list of nearest candidates. Once you have more than k of them, throw the 
excess out, and set the culling distance to the current k:th nearest 
neighbor.

3. If there are no more nodes in the priority queue, you are done. 
Otherwise, retrieve the closest node from the priority queue. If it is 
beyond the current culling distance, do step 3 again. Otherwise, go to 
step 1.

The trick is that the hierarchical space subdivision can throw out whole 
regions of points without ever considering them. 


For a space subdivision structure, clusters are easy because they are 
separated by empty space: empty space can be skipped trivially, and 
makes culling of large portions of points possible.


For the 2D point set, 61 on average.

-- 
 http://www.**--****.com/ 

Similar Threads:

1.Maximum disc containing no more than k points

Hello. I hope this is the right place to ask (and if not could
somebody kindly direct me to where it is?)

I have the following problems: given a (large, roughly 9M) set of
points, I need to find for each point the largest disc centered at
that point that contains no more than "k" other points.

If there is no other way I can live with "the largest square" instead
of "the largest disc".

This problem can be solved off-line and not necessarily in real-time/
on-line.

Another variation on the problem that I have: each point has an
integer positive weight, and I need to find the largest disc/square
that contains no more than "k" sum-weights (that is: the sum of
weights of points in the inscribed region is no more than k).

tia!

2.Problem With Edit Disc Function in Ulead DVD Movie Factory 3 Disc Creator

I have the full version of DVDMF3DC, including the June update patch.

I was using the "Edit Disc" function, to add video (an MPEG-2 file on my
computer) to a DVD-RW disc, which was formatted in the VR format, which
already had a little video on it, recorded by my set-top DVDR. There was
plenty of room for the video I was adding.

I had it all setup, and clicked the "Output" button. It started the process.
But in the middle of the processing, after about a half hour or so, I would
get the following error message:

          DVDMF Disk recorder--an internal error has occurred--
           Error code-0x80042623


The process stopped, I had to click OK, and I was back at the screen that
was present before I clicked output. I clicked Output again, after a while
the same thing happened again, same error message.

I exited the program, re-booted my computer with no background programs
running, disabled my virus scanner, etc., etc., and tried again. Once more,
same problem, same error message. I tried a few more times, always that same
error message.

Anyone know what's going on here? What does that error message mean?



3.Disc to disc form factor approximation

4.testing whether a point is contained in a quadrilateral

Hi Everyone-
In 2D or 3D, I'm trying to write a quick algorithm to test if a point is 
contatined in a quadrilateral.  I've come up with a couple of ideas, but 
both of them seem needlessly complex.  Does anyone know of a quick way 
to do this?  Or maybe you know of a resource I should check out.

Thanks in advance.  -spencer

5.projecting disc onto coordinate axes

Got disc with center in origin and radius r.  Disc plane has
normalized normal vector (nx, ny, nz).  Now, how to calculate disc
projections onto coordinate axes (ultimate goal here is to calculate
disc bounding box)?

Thanks.

6. Scratch disc location

7. Cannot copy a disc in DVD Movie Factory 2

8. Cuisinart DLC-834TX Fine Shredding Disc, fits 7 and 11-Cup Processors



Return to graphics

 

Who is online

Users browsing this forum: No registered users and 95 guest