4
votes
7answers
235 views
What standard optimization refactoring can I do to my Java application?
I have a semi big Java application. It's written quite poorly and I suspect there are quite a lot of simple things I can do that will clean things up a bit and improve performance.
For exam …
0
votes
How to find unused/dead code in java projects
FindBugs is excellent for this sort of thing.
PMD (Project Mess Detector) is another tool that can be used.
However, neither can find public static methods …
1
vote
Finding most proper standard for image [Image recognition]
You would need to build a set of functions that compute the probability of a particular transform between two images f(A,B). A number of transforms have previously been suggested as answers, e.g. F …
