Loading...
Logo
Processing Forum

object not moving smoothly

in General Discussion  •  Other  •  3 months ago  
Hello EveryOne,

I have made a sketch in which a car object (i.e car.png), moving across a screen. But its not moving smoothly at every frame. It seems very choppy since moving to the pixels. I simply increase the position by an integer value. e.g. x+=5;
But didn't get the exact result ?

Can anybody help me for this query?

Regards ,

Archana

Replies(3)

Doesn't sound like you're doing anything wrong, but it's hard to tell without seeing it for ourselves...
Can you post some code that illustrates your problem?
Hi,

Thanks for your reply ...

Ya sure, this is a simple code...


Copy code
  1. import hypermedia.video.*;
  2. OpenCV opencv;
  3. PImage img;
  4. int x=0;
  5. void setup(){
  6.       size(1280,720);
  7.       opencv=new OpenCV(this);
  8.       opencv.capture(width/2,height/2);
  9.       img=loadImage("new1.png");
  10. }
  11. void draw(){
  12.       opencv.read();
  13.       image(opencv.image(),0,0,width,height);
  14.       x+=5;
  15.       image(img,x,500);
  16.       if(x>width){
  17.             x=0;     
  18.       }
  19. }
This is just the beginning of my code, actually I'm creating a sketch for a simple game.
But when I see the car object is running, then we can clearly see that its not moving smoothly ...

Thanks ...


The car is jumping 5 pixels per frame, no wonder the move isn't smooth...