Point is a fundamental geometry type.
-1
votes
0answers
2 views
How to create point in JMapFrame using geotools
I am new to coding. Can any one please send me java program for creating point, line or polygon features in JMapFrame using Geotools.
Thanks in Advance.
Regards,
N.Venky
0
votes
1answer
14 views
Vector.AngleBetween in WinRT
Currently i am converting a Desktop application to Windows 8 application. To get a angle between 2 points in desktop application they use Vector.AngleBetween(vector1, vector2). Using "Point" i got the ...
-1
votes
3answers
39 views
Segment Length from an arrayList of Points --Java
I am trying to calculate line segments (lengths) from an arrayList that I have created.
This is in JAVA. Everything works how I want it to, however I get this message:
"Exception in thread "main" ...
0
votes
0answers
15 views
SQL server database Column format decimal use with comma
I have a database (SQL) and have a column format decimal (18,2) When I was write 0,02 textbox on form and click save button wrong to me "Error converting data type varchar to numeric." this message. ...
1
vote
0answers
17 views
Check if point is inside a rotated rectangle (with different rectangle origins)
How can I check if a point is inside a rotaded rectangle when the rectangle can have different origins? This is basically what i'm using now:
struct Point
{
float x;
float y;
};
struct ...
-1
votes
0answers
24 views
How can I find the collision points of two Polygons in slick2d?
I'm making a top down ship game in slick2d. I'm trying to make collision physic for the ships with polygons.
if(ship.polygon.intersects(ship2.polygon)){
}
How can I find the collision ...
0
votes
2answers
55 views
Python: checking if point is inside a polygon
I have a class describing a Point (has 2 coordinates x and y) and a class describing a Polygon which has a list of Points which correspond to corners (self.corners)
I need to check if a Point is in a ...
1
vote
1answer
22 views
ECDSA: How to get y coordinate from uncompressing x using openssl
What I am trying to do with ECDSA is take an x "compressed" coordinate and a y "bit" from values taken from external ECDSA hardware (it's really a public key) and then trying to recover the y ...
1
vote
1answer
44 views
Compare two colors in an image + Which is best to draw 3D points
I know that it possible using the
GetPixel()
but is it possible to let the sw to decide which one is lighter or darker than the other.
I'm going to use a depthMap Image & I want to ...
0
votes
1answer
21 views
convert shape file to raster in matlab
I would like to convert a shape file to raster grid using matlab. First I tried to do it in Python but I have faced some difficulties and my superior recommended me to use MATLAB. I use matlab ...
0
votes
2answers
35 views
Determine if the mouse made a complete circle around a point
I have a game I am working on. I am trying to detect if the mouse has made a complete 360 degree rotation around a certain point. I am completely struggling with the logic though. The full rotation ...
0
votes
1answer
35 views
Plot Point in ZedGraph C#?
Well this is my question, I have a ZedGraph, now I want to put some points in the ZedGraph, I have my simple class Point wich it have, the X & Y values, fist I check this question, but not ...
0
votes
5answers
65 views
Why does this code cause a NullPointerException?
I made a code with that iterates through a single dimensional array of objects of type Point from java.awt.Point. I tried to fill x and y instance variables of each Point in the array with essentially ...
0
votes
0answers
29 views
Returns point(0, 0) for getting screen position of a LatLng object
My code:
Point p1 = supportMapFragment
.getMap()
.getProjection()
.toScreenLocation(new LatLng(20,20));
The problem is p1 returns like: Point(0, 0). There ...
1
vote
1answer
34 views
Procedure to know how many points are there in the matlab plot
I am wondering if there is any way in matlab which let me to know number of points in the plot ?!
In other words, if I have plot(x,y,'*'); and I want to know how many points * is there in this plot.
...
0
votes
0answers
14 views
Creating 3D line features in ArcGIS 10
Is there a way, in ArcGIS, to create a 3D line feature by connecting points in a 3D point feature class? The version of ArcGIS in question is ArcGIS 10.0, in case this helps.
1
vote
1answer
70 views
Distance of point feature to nearest polygon in R
I working on a project at the moment, where I have a point feature -- the point feature includes a 142 points -- and multiple polygon (around 10). I want to calculate the distance between every single ...
1
vote
2answers
55 views
Junction point in image skeleton
What is the meaning of a junction point in image skeleton ? I am using opencv and c++ to develop a code source to detect the main local junction point in the image .Many thanks in advace .
-1
votes
0answers
19 views
How can I make a deep copy from an array reference in Java?
public java.awt.Point getVertex(int index){
return new java.awt.Point(vertices[index].x, vertices[index].y);}
I'm attempting to make a deep copy of this vertex to return, as is required by my ...
0
votes
0answers
21 views
Ubercharts add point
it seems that nobody is using Ubercharts nowadays, i think its awesome bcs i can code all my code in java. Ubercharts is a java way of highcharts.
my problem today is dat i cant seem to find the way ...
0
votes
1answer
40 views
plot points as a trajectory of tracking from video
I think this is very easy question for some of you , but I do not have any experience in Matlab !
I am tracking a point in all the frames in video. now I want to plot this points to show the ...
0
votes
1answer
39 views
Java/ contain/equal point class
I have a list of points, and I want to use the contain method. The problem is That I have the next List: {(1,2), (2,3), (2,4)}, but when I asked list.contain((2,3)), it gives me false.
I use ...
0
votes
1answer
28 views
opengl selecting area on model
I need some help in surface area selection on a 3d model rendered in opengl by picking points through mouse. I know how to get a point in world coordinate but cant find a way to select an area. Later ...
0
votes
1answer
27 views
2D Point in triangle test implemented on Android
I want to determine if a 2D point is inside a triangle using pure java on the Android platform. I reserve a special bonus for using the same representation for 2D points that is used in Android for ...
0
votes
1answer
96 views
Rotating body around a point Box2D Cocos2d
I have a problem when rotating a triangular image like a radar detecting enemies.
b2Body *body;
CCSprite *actor;
if (b->GetType() == b2_kinematicBody && myActor == [loader ...
0
votes
0answers
20 views
Calling WSASocket from DllMain lead to hand-up
I need to destroy some object when some my dll is unloaded.
This object contains thread, that sometimes call WSASocket function (for reconnect connection).
So I call destructor from DllMain in ...
0
votes
0answers
17 views
Get Color of certain point on moving 2D background
I am trying to build a simple 2D-game where a skier has to move along in a certain "corridor".
Screenshot of the game
Therefore I created a seamless background and move it along the screen from ...
1
vote
1answer
43 views
How could I control location of external form relative to a pictureBox on another form?
I'm developing a windows application that is image viewer. This program contain main form to load picture and another form to load swf file into it dynamically .
work of my application is like this : ...
-1
votes
0answers
56 views
Overload already overloaded operator in C# (Point) [closed]
I'm currently working with C# and I woudl like to be able to do simple math operations on Point objects.
By default, the + and - operator are already overloaded as : Vector = Point +/- Point.
I just ...
0
votes
1answer
46 views
How fast is geom.Point for pure data-storage?
I'm going to need to store a large number of x/y-position pairs. Now I'm unsure about whether or not to use Flashs geom.Point-class for these, since performance will be important for my application, ...
5
votes
2answers
219 views
R draw (abline + lm) line-of-best-fit through arbitrary point
I am trying to draw a least squares regression line using abline(lm(...)) that is also forced to pass through a particular point. I see this question is related, but not quite what I want. Here's an ...
0
votes
3answers
76 views
C# “new” command
I got a question, when I try to relocate a panel e.g. named pPan, I got 2 different ways to do that:
Inside a click event of a button I write
pPan.Location = new Point (
pPan.Location.X +10 , ...
0
votes
2answers
38 views
Get all points within some distance by the path
I have multiple points with coordinates which represent the path on a map. Then I have multiple points, which represent for example restaurants. I'd like to get all the restaurants, which are near my ...
0
votes
2answers
41 views
How to eliminate the match of a point with itself?
I have applied SIFT on one image but two times ,example:
[image1, descript1, location1] = sift('book.pgm');
[image2, descript2, location2] = sift('book.pgm');
after matching function it will show ...
0
votes
3answers
38 views
Getting vector which holding certain point
I've a vector of points from a grey section of an image and written like this:
std::vector<Point> vectorg;
for(i = 0; i <= hei - 1; i++) {
for(j = 0; j <= wid - 1; j++) {
...
0
votes
0answers
20 views
Use freeBoundary after ConvexHull
Hi I want to ask about is there any way to use free Boundary after perform ConvexHull?
or maybe I can use different function as the same as freeBoundary that can possible work after perform ...
0
votes
2answers
49 views
Find polynomial function from set of points
i have a lot of point-sets. all having a x and a y coordinate. what i need is a way in vb.net to find out a polynomial function that describes as closely as possible these points. does anybody have an ...
0
votes
0answers
8 views
How to manipulate points in PointCollection
I have a PointCollection filled with Points that I apply to a Polyline, e.g. myPolyline.Points = myPointCollection. Is there a (simple) way that will allow me to do some manipulation on the points ...
2
votes
1answer
35 views
If statement with coordinates (vb)
I have this code and it has an error on the if carloc = (250,524) part. The code is to check if the car (picturebox) is somewhere then to move ti somewhere else when you push 'A'. Here's the code:
...
0
votes
1answer
22 views
Text size in standart printable points
How can I set the text size (inside TextField) in standart CSS/printable points? According to the manual:
fontSize - Only the numeric part of the value is used. Units (px, pt)
are not parsed; ...
0
votes
0answers
66 views
Can not update existing points on chart in Windows Forms
In my WinForms C# program, while increasing and decreasing X axis values using a trackbar I need to update the existing Y axis values that were already drawn on a chart ...
0
votes
1answer
26 views
heuristic approaches for matching points
I am using SIFT and SURF algorithm. But I need a research about heuristic approaches in point&feature matching. What are the heuristic approaches for matching points in image processing?
0
votes
1answer
25 views
Java move player smoothly from one point to another
All I need is to claculate the new coordinites of a player based on a click and have the player move towards it smoothly. For example player is at (20, 20) and you click at (50, 80) how would i get it ...
1
vote
0answers
20 views
I have a point set in image,how to find the External irregular shape circling all the points by Matlab
I got a point set after executing SIFT algorithm.Now I want to find the external irregular shape of those points.Is there anyone knowing the relevant functions in Matlab? Notice that I don't want the ...
0
votes
0answers
190 views
OpenCV Crop Image using four points
I am trying to crop an image then be able to display the image. I have four points in two arrays and it would make a rectangle shape. I have a code that i think would do the job but it is giving an ...
1
vote
1answer
29 views
Keeping track of points in a grid
Suppose we have an m times n rectangular room. The surface is covered with 1*1 tiles, meaning we have m*n number of square tiles. Every time a random point is given. The program is supposed to show ...
0
votes
0answers
29 views
Marking a point with non integral coordinates in an image
I need to mark a point in an image.
The point's coordinates are not integral though.
I thought of drawing two intersecting segments which intersection point lies closer to the given point than the ...
0
votes
1answer
86 views
How to show an arrow pointing to destination in android navigation?
I have an arrow and a google map in the layout. I have also marked a point in the map as destination. Now I need to point the arrow to the destination point. How to accomplish this. Please post the ...
0
votes
0answers
28 views
How to add vertices to existing linestrings in mysql?
Is it possible to add a Point at the end of a Linestring in MySql?
For example I have a Linestring as
Linestring(1 2, 1 4, 1 6)
and I want to add a Point
Point(1 7)
at the end (output should be ...
0
votes
1answer
23 views
mysql get X(point) along with join
I am trying to run a select query joining multiple tables. Ont of the tables has got a column coordinate with point type. Everything works correctly but in joins it does not allow me to select ...

