Results 1 to 3 of 3
Thread: Warping
- 03-30-2009, 03:56 PM #1
Member
- Join Date
- Mar 2009
- Posts
- 3
- Rep Power
- 0
Warping
hello all who read this
I was hoping that someone could help me with the following hurdle in my programming. I am tryin to apply warping to an image using source and target images placed into two seperate arrays
//source// short [][] rawPixelArray2D = new short[imHeight][imWidth];
//target// short [][] targetImage = new short[imHeight][imWidth];
I think the idea is to create two grids and pick the points in the first grid and transform the image to the second grid of points.
However, I have no idea what I need to do to apply warping in terms of code implementation.
Thank you for your time hope someone can help me
anything would be a big help
if you need further info to help just ask
- 03-30-2009, 08:02 PM #2
Senior Member
- Join Date
- Jan 2009
- Posts
- 671
- Rep Power
- 5
To do warping, you need a nonlinear transformation from one coodinate system to another. There's nothing like that in the standard Java API, but I suggest looking into JAI (Java Advanced Imaging), or JMagick, which is a thin JNI wrapper around imagemagick.
- 04-01-2009, 02:47 AM #3
Member
- Join Date
- Mar 2009
- Posts
- 3
- Rep Power
- 0
Similar Threads
-
Image Processing (warping)
By DingoAteMyBaby in forum New To JavaReplies: 0Last Post: 03-30-2009, 12:26 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks