0
votes
1answer
91 views

Android: Take the next playing card of a stapel effect

I want that the user of my application has the effect of taking the next card from a stapel. So the user should take the next card with touching the card and sliding the topmost playing card to the ...
0
votes
2answers
190 views

Photoshop “Pucker Tool” algorithm

Could someone tell me what the name of this effect applied by the "Pucker Tool" in Photoshop? I need to deflate the characters that come in this captcha. The algorithm used or a Java class, would be ...
1
vote
1answer
1k views

Java Image/Text Pulsating Glow Effect (Graphics)

How would I make an Image have a pulsating effect to it? I already know how to draw an Image to the screen, so I just need to know how I can add a pulsating glow effect. Would I need to use tons of ...
1
vote
0answers
273 views

What's the proper way to structure an AEC (Acoustic Echo Cancellation) filter for JMF?

I'm working on connecting the Speex Library to JMF for the purpose of doing Voice Activity Detection/Noise reduction, and also for Acoustic Echo Cancellation. (I may adopt the codec at some point in ...
3
votes
2answers
2k views

Sliding Frame effect in Java Swing

Is there already workable example of a swing component which allows adding boxes/panels and then animate them to produce a sliding frame effect? What I am looking for is a simple component. It should ...
1
vote
3answers
4k views

Slide JPanel Content in a JForm on Java

I have a question. I want to make a swing form that, when clicking in a button he slides a panel (with his content) to the left so the panel on the right replaces it with a smooth effect. I Have ...
0
votes
1answer
323 views

java sound, fadeIn effect, using FloatControl

Im trying to implement fade in effect to my mp3 player. I´m using FloatControl volumeControl = (FloatControl) line.getControl(FloatControl.Type.MASTER_GAIN); because FloatControl.Type.VOLUME throws ...
1
vote
3answers
3k views

How do I blur an image?

I'm trying to implement a blurring mechanic on a java game. How do I create a blur effect on runtime?