Graphical Interface and Object Selection/Manipulation

Posted by ToriArendt on Programmers See other posts from Programmers or by ToriArendt
Published on 2012-09-23T21:43:40Z Indexed on 2012/09/23 21:48 UTC
Read the original article Hit count: 183

I have a project I want to try to implement, but I'm kind of stuck on how to get started. I know there are probably a lot of resources that I can look at, but I'm really just stuck on what to even search for and where to begin.

Basically, I have a program written in Java that separates 3D coordinates from a 3D reconstructed model into different objects. I then want to be able to perform a logistic regression on these objects to determine if they are type A or type B. But first, I need to classify a training set of objects as type A or B by hand. I don't know ANYTHING about graphing or user interfaces in Java, so I have been plotting the coordinates of a given object in MATLAB so that I can visualize the object and assign it a type.

Now, as I am trying to make this program more "user friendly" I want to create an interface in Java where I can simply graph all the coordinates of the objects from the entire 3D model (on the same graph). I then want to be able to click on the each object and assign it to be either of type A or type B.

I hope this description makes sense and someone can point me in the direction of something that will help me. I'm sorry if some of this terminology is off; I'm a bit new to software development.

P.S. If anyone also has some tips on implementing logistic regression in Java, I'm sure I'll need them down the road :).

© Programmers or respective owner

Related posts about java

Related posts about interfaces