Loading...
Logo
Processing Forum
I have some questions about using smooth(); and noSmooth(); if anyone can help.

I am loading images from flickr. Using smooth(); makes them look good.

When you type and press enter, it displays text and searches for a new batch of flickr photos. After a few moments, I initiate an animation that will clear the search field. The text goes down and fades out (color and alpha) simultaneously.

When smooth is on, the animation is slow and jittery. When smooth is off, the animation is great but the pictures look bad.

I've tried using smooth, and then noSmooth when the animation gets executed. But it doesn't just apply to the image, the entire screen is noSmooth, making the image blocky again.

My code is kind of a mess right now, so if you think seeing it will help you understand the problem I will post it. But for now I just wanted to know how people handle animating text, do so with multiple assets, use (or don't use) the smooth/noSmooth functions, and if those functions can be assigned to individual elements.

Replies(3)

You could use two separate PGraphics, but I'm not sure if that will help with speed.

I know that smooth() slows down the frameRate, so changing what objects it applies to will not help.
If you're using the internet to access flickr, that would explain why your frameRate is slow in the first place.

You could try threading.
I think the first example sketch shows your problem. Press the mouse to see the frameRate drop significantly. Smooth() can be assigned on an individual basis, however that unfortunately won't solve your problem, since you want to smooth exactly the image where the slowdown problem arises.

Two suggestions to tackle this issue:
  1. Do not change the display size with the image() function in the draw() loop. Instead resize the image elsewhere once and display it at the actual size.
  2. Change the renderer to OPENGL and use anti-aliasing.
Code Example (Problem)
Copy code
  1. PImage img = loadImage("http://img-fotki.yandex.ru/get/3012/lexincorp.e4/0_248ce_fb5c1e3d_XL.jpg");
  2.  
  3. void setup() {
  4.   size(600, 300);
  5.   textSize(100);
  6.   textAlign(CENTER, CENTER);
  7.   frameRate(1000);
  8. }
  9.  
  10. void draw() {
  11.   if (mousePressed) {
  12.     background(255, 0, 0);
  13.     smooth();
  14.   } else {
  15.     background(0);
  16.     noSmooth();
  17.   }
  18.   // the following line causes the problem in combination with smooth() and JAVA2D
  19.   image(img, 10, 10, width-20, height-20);
  20.   float f = frameCount%255;
  21.   fill(f, f);
  22.   text("PROBLEMS?", width/2, height/2);
  23.   frame.setTitle("fps: " + int(frameRate));
  24. }

Code Example (Solution 1)
Copy code
  1. PImage img = loadImage("http://img-fotki.yandex.ru/get/3012/lexincorp.e4/0_248ce_fb5c1e3d_XL.jpg");
  2.  
  3. void setup() {
  4.   size(600, 300);
  5.   textSize(100);
  6.   textAlign(CENTER, CENTER);
  7.   frameRate(1000);
  8.   img.resize(img.width-20, img.height-20);
  9. }
  10.  
  11. void draw() {
  12.   if (mousePressed) {
  13.     background(255, 0, 0);
  14.     smooth();
  15.   } else {
  16.     background(0);
  17.     noSmooth();
  18.   }
  19.   image(img, 10, 10);
  20.   float f = frameCount%255;
  21.   fill(f, f);
  22.   text("PROBLEMS?", width/2, height/2);
  23.   frame.setTitle("fps: " + int(frameRate));
  24. }
Thanks so much for your help.

I see what you mean about the re-sizing. My issue was that I was getting all different kinds of images dynamically from Flickr. I wanted to make sure they would be full screen, and also in the correct proportions when being scaled. So I was going to make a image loading/resizing/displaying function outside of draw, but I didn't have to.

And the reason I didn't have to was because putting the sketch in OPENGL mode fixed everything magically.

I will probably wind up going back and putting it in it's own function anyways, for the sake of cleanliness and readability. But for now I can continue my sloppy coding!