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

0
votes
0answers
15 views

Rescale a transform on an image of higher resolution

I would like to know why I do not get the same transform image when I change the size of the matrix? a1 = ones(50); a2 = ones(400); HsRt = [0.9 -0.01 0; 0.01 0.98 0; -2.4 5.3 1] HupScale = [8 0 0; 0 ...
0
votes
0answers
19 views

Affine Transform - Scale Around a Point

I am trying to scale a shape that I have in Java around a certain point. When I use the AffineTransform.scale method, it scales based on the top left corner. Is there anyway to scale anchored at a ...
0
votes
1answer
22 views

Retrieve new width and height of BufferedImage bounds after a AffineTransform.rotate()

I'm working on a type of image editor which includes snapping to other elements as a feature. The snapping works by using the image width and height. However, after an AffineTransform.rotate() the ...
0
votes
1answer
25 views

AffineTansform and Graphicsd2D drawing location

Code: AffineTransform at = new AffineTransform(); at.scale(2, 1); at.rotate(Math.toRadians(45)); at = new AffineTransform(at); at.translate(-img.getWidth()/2, -img.getHeight()/2); ...
0
votes
1answer
25 views

Moving a vector image with AffineTransform

I have a program which is attempting to move a small triangle on key presses. The majority of the code is working, but the Key presses are not affecting the ship at all. Can you please take a look at ...
1
vote
0answers
39 views

Java2D: get coordinates from rotated image

I made a methode to rotate a image (most code found in stackoverflow's nice answers). Now I need to cut the image: (1) by the outline and (2) inline the image (no border shown). But I don't know how ...
2
votes
1answer
126 views

Frame Alignment --infer the geometric transformation at a lower sampling rate and apply this to imagery at a bigger sampling rate

Part 1: Alignment Code on 128*128 Images -- This part works fine images = dir('*.jpg'); [cs,index] = sort_nat({images.name}); frame_number = 1; ...
0
votes
2answers
55 views

Affinetransform center scale coordinates

I have a graphics.drawImage with a buffer that I want to draw center scaled and a Rectangle with the coordinates and scale I want the buffer to be drawn as. tr2.translate(buffer.getWidth()/2, ...
1
vote
1answer
53 views

Draw an Image in arbitrary corners

So i have a normal image. I defined Click- and Drag-Listeners on each corner of the rectangular image. I want to freely transform each of the corners and paint it on the screen. The AffineTransform ...
-2
votes
1answer
30 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
123 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
127 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
56 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
44 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
34 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
94 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
54 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
223 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
52 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
42 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
172 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
25 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
33 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
39 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
55 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
105 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
293 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
81 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
42 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
164 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
133 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
106 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
83 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
452 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
204 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
761 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
112 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
137 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
238 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
217 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
171 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
369 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 ...
1
vote
1answer
253 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
120 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
447 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
176 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
82 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
91 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
696 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 ...

1 2 3