Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

What's a good convex optimization library?

I am looking for a C++ library, and I am dealing with convex objective and constraint functions.
3
votes
6answers
4k views

How do I determine if two convex polygons intersect?

Suppose there are a number of convex polygons on a plane, perhaps a map. These polygons can bump up against each other and share an edge, but cannot overlap. To test if two polygons P and Q ...
2
votes
2answers
150 views

How do I split a convex polygon into two areas of a given proportion?

Given a convex polygon P and a point A on P's boundary, how do I compute a point B also on P's boundary such that AB splits P into two areas of a given proportion? Ideally I'd like an analytical ...
1
vote
1answer
30 views

Fminunc returns indefinite hessian matrix for a convex objective

If I am minimizing a convex objective function, does it mean that the hessian matrix at minimizer should be PSD? If fminunc in Matlab returns a hessian which is not psd what does it mean? am I using a ...
1
vote
1answer
56 views

Computer Vision techniques for geometrical information

I am trying to research and implement some computer vision techniques e.g. motion tracking for a set of arbitrary points in 2D. I am producing a convex hull for the set of points I know and a convex ...
0
votes
0answers
22 views

graph partitioning terminology

Does anyone know the right term(s) for what I'm trying to do? Suppose I have a directed acyclic graph G. I want to replace a region of the graph with a single vertex representing that entire region. ...
0
votes
2answers
42 views

Line(s) Equidistant From Two Convex Polygons In 2D

Given two convex polygons in 2D space, how would you go about constructing the line segment(s ) which, at any point on the lines, is equidistant from the closest point of either convex polygon? I'm ...
0
votes
2answers
128 views

C - Convex Polygon - Sort Point (Clockwise)

I have a convex polygon expressed by points. Points are expressed by array of x-coordinates and array of y-coordinates. For example: X = {6, 1, 5, 0, 3} Y = {4, 0, 0, 4, 6} How can I sort this ...
0
votes
1answer
25 views

Android object's convex look

I am new to android animations, so if someone can help me, I want to transform an object, lets say a rectangle to have a convex look. Can I do that with some of the functions, like lets say skew or... ...
0
votes
0answers
15 views

android convex object

Does anybody know how can I make a convex look on a particular object in android, for example a rectangle. What kind of transformations do I have to do. What functions do I have to use, skew or ... I ...