An affine transform is a special 3x3 matrix used to apply translation, rotation, shearing or skew, and scaling to coordinate systems in two dimensional graphic contexts.

learn more… | top users | synonyms

-2
votes
1answer
23 views

draw ellipse2d around mouse click java [closed]

I am making a program that draws ellipses when the user clicks the screen. Currently when the ellipse is drawn the origin is (0,0) so it is being drawn from the top right. I want it to be drawn around ...
0
votes
2answers
67 views

Calculate transformation matrix from three 3D points

I have a 3D coordinate system of which I track the three outer points with a 3D camera. So I have three points in (x,y,z) space. Next frame I track these three points again. I use the first three ...
0
votes
1answer
81 views

PDFbox to iText coordinate conversions using AffineTransform

Question: I can't seem to get one coordinate format to work with another format. I think I'm just not using the right matrix, but I don't know enough about them to be certain. I was hoping to get ...
0
votes
0answers
44 views

Rotate an Object

In the game that I am currently woking on I need the gun to rotate around the player as the player rotates so that it always looks like the player is holding the gun. The player will always face the ...
0
votes
0answers
35 views

Using Vector2d/AffineTransform to make Image/Object rotate

In the game that I am making I just made the gun to an seperate Image/Object now the problem is that I need to make it so that it is in the player hand. I have made it so that the player always ...
0
votes
0answers
27 views

Affine Transform in Java that does not affect the Grid

I am trying to paint some 2D objects in java. I need to be able to: Zoom in/out Move the zero point around Have an x-y grid under the objects That's pretty easy: AffineTransform trans = new ...
3
votes
2answers
69 views

Applying a scale and translate transformation to UIBezierPath

I have a UIBezierPath and I would like to: Move to any coordinate on the UIView Make bigger or smaller I am drawing the UIBezierPath based off of a list of predefined coordinates. I implemented ...
-1
votes
1answer
49 views

Rotating image so that it faces another image

I am creating a game and want the enemy to face the player as it follows the player. I have tried to use AffineTransform in this way: at = new AffineTransform(); angle = Math.atan2(player.getY() - ...
0
votes
1answer
146 views

Image Registration by Manual marking of corresponding points using OpenCV

I have a processed binary image of dimension 300x300. This processed image contains few object(person or vehicle). I also have another RGB image of the same scene of dimensiion 640x480. It is ...
1
vote
2answers
49 views

Java Simple Rotation Around Point

I'm trying to use this method to rotate a point: AffineTransform at = AffineTransform.getRotateInstance(Math.toRadians(90), 1, 2); double[] pt = {0, 1}; at.transform(pt, 0, pt, 0, 1); int x = ...
0
votes
2answers
36 views

Map a rectangle to another, including rotation

I have two images, a template, and a scan page. I print the template and then scan it. The images have a point for each angle. Because the scan could be translated, rotated and can have a different ...
0
votes
1answer
132 views

Affine transformation implementation

I am trying to implement affine transformation on two images. First i find the matching pairs in both of the images. One of them is zoomed image and the other is a reference image. The pairs returned ...
0
votes
1answer
21 views

How to instantiate/use Transform interface Commons Math?

Is it possible to use Transform interface from Apache Commons Math to actually transform numerical vectors? If "yes" then how? No clues in Apidoc. If "no" then what is the purpose of this interface? ...
0
votes
1answer
29 views

multiple grapics2d objects

I need to apply different Affine Transform to different graphic objects(eg lines), is it suitable to use multiple Graphics2D objects to perform this task? Code: Graphics2D g2seconds = ...
0
votes
0answers
36 views

overlays affine transform in google map

In google map,there is a map type named 45 degree. So if I have some overlays like markers,circles in the normal layer,then if I change the map type to 45 degree,then how about the overlays? I think ...
0
votes
1answer
49 views

Java AffinetransformOp filter() screws up my image

I am trying to rotate a 32 by 64 png image with 90 degree increments by using Affinetransform.rotate() and AffinetransformOp.filter. It works fine for 0, 90 and 180 degrees but at 270 degrees only ...
1
vote
0answers
86 views

How to rotate a bufferedimage, then copy the bufferedImage into a pixel array

I am trying to rotate a bufferedImage of a missile turret so that it looks like it's following a target. Basically, I can do it easily with the AffineTransform/ affinetransform my current code in a ...
0
votes
2answers
127 views

Need help using 'this' - cannot use in a static context

I'm not extremely new to Java; I understand that static methods must be called but not-static methods must have an instance made. I am trying to make a simple 2D game. I want all my graphics to appear ...
3
votes
2answers
78 views

Shape modified by AffineTransform is rendering reverse from expectations

I have a few geometric shapes which are in different co-ordinates that I want to be brought to the center of the panel. I have written a function called "Set Scale," which is bringing it in to ...
1
vote
0answers
40 views

Derive a rotational/transformational matrix given an image and a rotated image in Java?

Need some advise and point me in the right direction. My object detection system reads in this image(see below) and returns coordinates for bounding boxes for some detection results(in this case, a ...
-1
votes
1answer
148 views

How to apply affine transform to component's childs?

Is it possible to apply transformations to custom or premade controls in Swing? By one hand transformations are allowed, by other hand there are probably some gaps in implementation with this. ...
0
votes
1answer
106 views

AffineTransform() rotates rectangle way too fast

I am trying to draw a rectangle with java awt and make it rotate with mouse cursor by mouse dragging. When I was testing it out, the rectangle was rotating ridiculously fast. My Rectangle(): ...
0
votes
0answers
78 views

Trigger MouseListener when pressing on my JComponent, even if it is transformed by an AffineTransform

I am trying to add a MouseListener to my custom JComponent. I just want the MouseListener to be triggered when pressing withing the bounds of the circle (the JComponent's painting method draws a ...
0
votes
0answers
73 views

AffineTransform vs BufferedImage for fast rendering

Using the Canvas, what is the fastest way of rendering an image which has transformations on it: Using the AffineTransorm to restore the graphics object to its original state after rendering an ...
5
votes
1answer
405 views

Affine transformation matrix offset

This has been killing me the last few days. Not even kidding, but I've been really stressing over this trying to solve it. I am currently trying to use affine transformation matrices to create an ...
2
votes
1answer
159 views

Image not at proper place after rotating (graphics)

I am trying to display two rotating wheels with diameter 512untis at different rates but i am not able to remove the previous drawn image graphics and set the rotated graphics at the correct position. ...
2
votes
2answers
591 views

How to estimate 2D affine transform by RANSAC in OpenCV?

I'm trying to search a specific object in input images by matching SIFT descriptors and finding the transformation matrix by RANSAC. The object can only be modified in scene by similarity transform in ...
0
votes
1answer
99 views

custom shape rotation issue

I am trying to rotate a custom shape around its center, but can not get the result as expected. what i want is *shape should be rotated around its center without moving itself.* what my solution ...
1
vote
0answers
125 views

Java 2d cube effect using shear

I have been stuck on this for about a week, I have searched all over the internet trying to find a solution of how to create a 2d cube effect using shear, I have tried numorous equations and this is ...
0
votes
1answer
185 views

Determine if mouseclicked inside a rotated rectangle in Java (AWT, swing)

I am having some trouble figuring out how to determine if a mouseclick event was clicked inside of a rectangle, if the rectangle has been rotated. Lets say I have a MouseAdapter as simple as this. ...
0
votes
1answer
163 views

How do I zoom on Swing components using AffineTransform?

I am trying to create a panel where I will have the possibility to zoom on custom made JComponent objects. I have tried to call the scale() method in the AffineTransform class with different values, ...
0
votes
1answer
145 views

Positioning a view after transform rotation

I'm creating a custom popover background, so I subclassed the UIPopoverBackground abstract class. While creating the layout function I came across a problem with placing and rotating the arrow for the ...
0
votes
0answers
292 views

Trying to print a buffered image via java printing api

I'm trying to write an applet to generate and print a very specific postcard on the java printing api. before it prints I add a PrinterResolution of 300 , 400 to the HashPrintRequestAttributeSet but ...
0
votes
1answer
209 views

How to implement oval GradientPaint?

We know that there are a class named RadialGradientPaint in Java and we can use it to have a gradient painting for circle. But I want to have an oval (ellipse) GradientPaint. How to implement oval ...
1
vote
2answers
113 views

How to rotate rectangle?

Here is an example of drawing the left leg of my character: g2d.fillRect(pX + (headW - bodyW)/2, pY + headH + bodyH, legW, legH); //left leg I know how to rotate images with AffineTransforms, like ...
0
votes
1answer
349 views

How to rotate a BufferedImage in Java? [duplicate]

Possible Duplicate: Rotating BufferedImage instances The method I am currently using (below) results in a BufferedImage that becomes increasingly distorted with smaller angle arguments. ...
2
votes
1answer
146 views

Create transform to map from one rectangle to another?

What is the simplest way to create AffineTransform which maps coordinates from one rectangle to another (float/double rectangles are given)? UPDATE 1 Rectangles can be absolutely different. For ...
1
vote
2answers
76 views

Getting the x and y point of a transformed object

I am transforming the barrel of a turret with AffineTransform, and I want a bullet to shoot right out of the tip of the barrel. Is there a method in shape to get these coordinates or do I have to ...
1
vote
1answer
90 views

Recover simulated affine transformation for matched asift features (Morel's implementation)

Has anyone tried to recover the simulated affine transformation for the ASIFT feature detector? (From the author's implementation). In the original paper the simulated affine is clearly recovered by ...
0
votes
1answer
549 views

How to rotate a polygon/points around a point in Java

!Solved the problem, look at the answers! I've been trying to rotate a polygon around a specified center point but everything I've tried has failed miserably. I've googled for example and found many ...
0
votes
0answers
24 views

Should I expect some display performence gain with Context2d.transform?

I need to display some geometries expressed in my own coordinate reference system (CRS) on a canvas. For that, I need to convert the geometry coordinates from my CRS to the canvas pixel CRS. Until ...
0
votes
1answer
73 views

why move position that i use affine transform in java 1.6se

i want to scale shape. so i use setToScale method in affine transform. then, not only shape's length is trans, but also shape's starting points are moved why that? public void initResize(int x, ...
1
vote
1answer
208 views

How to rotate a polygon in given angle

I am creating a compass, which is drawn on a JPanel. I translated the center of the coordinate system to the center of the JPanel. Now I want to rotate the needle in this point by a given angle, which ...
2
votes
1answer
188 views

Java - Graphics - Graphics object passed to paint() is different from Graphics object in JPanel instance

I have a JPanel that draws shapes and allows those shapes to be selected. I'm starting to add the capability to transform this view using the AffineTransform object, in conjunction with the Graphics2D ...
0
votes
1answer
123 views

Why the image color is changed after affine transform using PIL?

I am using image.transform in the Python Imaging Library to apply affine transform to a image of face detection to calibration the face accordding to the position of eyes. The result is right but the ...
0
votes
1answer
90 views

transformed image should always visible

I am trying to transform an image using Bi-linear interpolation, my input image is I, I have my affine matrix [A], which will give me transformed image I', according to bi-linear interpolation I am ...
0
votes
0answers
104 views

Trouble matching rotation angle of two shapes

I'm working on a very rushed shooter game in Java for Halloween, and I'm running into some trouble with AffineTransform again. Right now, I'm trying to set the rotation for the bullets, so when ...
0
votes
1answer
385 views

View results of affine transform

I am trying to find out the reason why when I apply affine transformations on an image in OpenCV, the result of it is not visible in the preview window, but the entire window is black.How can I find ...
2
votes
1answer
300 views

Zoom in with affinetransform swing

I'm working on my personal project using JAVA swing. The project is about drawing a map on a window. The map is zoomable using affinetransform. The problem I'm having here is whenever I zoom in or ...
1
vote
0answers
156 views

affinetransform rotate, bufferedimages being cut

I'm making a game and recently ran into a problem which occurs when rotating buffered images using affinetransform. The images are rotated around their own center. And for example when rotated 45 ...

1 2 3