Loading...
Logo
Processing Forum
romeedelabigne's Profile
6 Posts
14 Responses
0 Followers

Activity Trend

Last 30 days

Loading Chart...

Show:
Private Message
    Hi all,
    I'm would like to use the build-in java class  java.io.File to collect the number of .jpg in my data folder.
    When I want to use it in my code, to set a int, I got a message error "Cannot convert int[] to int"
    I want to convert it to a int because my code'd display randomly one of the jpg from my data folder.
    The error comes from line 21.
    1. void setup(){

    2.     // have a look in the data folder
    3.     java.io.File folder = new java.io.File(dataPath(""));

    4.     // this is the filter (returns true if file's extension is .jpg)
    5.     java.io.FilenameFilter jpgFilter = new java.io.FilenameFilter() {
    6.       public boolean accept(File dir, String name) {
    7.         return name.toLowerCase().endsWith(".jpg");
    8.       }
    9.     };

    10.     // list the files in the data folder
    11.     String[] numberofpics = folder.list(jpgFilter);

    12.     // get the number of jpg files
    13.     println(numberofpics.length + " jpg files in specified directory");
    14.     
    15.     int numberofpics_int = int (numberofpics);
    16.     xPic = numberofpics_int;
    17.     
    18.     //Pic loading
    19.     Pic = random(1,xPic);
    20.     int PicFragNumber = int (Pic);
    21.     img = loadImage("Pic_" + PicFragNumber +".jpg");
    Does anyone know how to do this magic trick?

    Thank's a lot.



    Hi all!
    I try to code a program which display successively thousands of pics and hundreds of Gif.
    I cant' declare them all so a float load one randomly while the previous one is displaying.

    The part with the pics only worked just fine.
    I tried to add the same program for diplaying Gif too (randomly choosing between a Gif and a Pic) and it just doesn't work

    The Gifs are displaying fine (successively and randomly) but one pic (and always the same each time I launch the program) is displaying too, while the gifs are running.

    So two questions here.
    Why it's always the same Pic and the float isn't working?
    How do I stop the Pic display function while the Gif is looping.

    Here is my code.

    1.   /**
    2.     BBGif
    3.     Correction: romée by basile
    4.   */

    5.  
    6.   PImage img;
    7.   String[] files;
    8.   int timer;
    9.   float Pic ;
    10.   int PicFragNumber;
    11.   int xPic = 1191;
    12.   int speed;
    13.   
    14.   import gifAnimation.*;
    15.   PImage[] animation;
    16.   float Gifanime;
    17.   int GifFragNumber;
    18.   int xGif = 74;
    19.   int n;
    20.   int framesPlayed = 0;
    21.   
    22.   int picorgif;
    23.   int boopicorgif;
    24.   
    25.   
    26.   void setup() {
    27.     size(1300,760);
    28.   
    29.   //Pic loading
    30.   
    31.   float Pic = random(1,xPic);// a est une valeur au hasard comprise entre les deux valeurs données (n'apelle pas tes images "0001" mais "1");
    32.    int PicFragNumber = int (Pic);//fragNumber est l'arrondi de a (10,55 --> 11)
    33.    img = loadImage("Pic_" + PicFragNumber +".jpg");
    34.  
    35.  
    36.  //Gif loading
    37.  
    38.  float Gifanime = random(1,xGif);// a est une valeur au hasard comprise entre les deux valeurs données (n'apelle pas tes images "0001" mais "1");
    39.    int GifFragNumber = int (Gifanime);//GifFragNumber est l'arrondi de a (10,55 --> 11)

    40.  animation = Gif.getPImages(this, "Gif_" + GifFragNumber + ".gif");
    41.   
    42.   frameRate(12);
    43.   
    44.  
    45.     timer=0;
    46.     speed=150;
    47.   }




    48.    
    49.   void draw() {
    50.     
    51.     //The random program for choosing between a Gif and a Pic
    52.     //An average of 1 Gif for 10 Pics
    53.     float picorgif = random (1, 10);
    54.     int pog = int (picorgif);
    55.     println (pog);

    56.     if (pog == 1)
    57.     {
    58.       boopicorgif = 0;
    59.     }
    60.     else
    61.     {
    62.       boopicorgif = 1;
    63.     }
    64.     
    65.     
    66.     //Loading and Displaying a Pic
    67.     if (boopicorgif == 0) {
    68.     
    69.     if(timer==0)
    70.     {  
    71.       background(255); 
    72.       smooth();
    73.       if (img.width>screen.width) { img.resize(screen.width,0); } // conditional resize width
    74.       if (img.height>screen.height) { img.resize(0,screen.height); } // conditional resize height
    75.       imageMode(CENTER); // set image mode to centered
    76.       image(img, width/2, height/2); // display image in center of the sketch     
    77.     }
    78.    
    79.     else if(timer==1)
    80.     {
    81.       
    82.          float Pic = random(1,xPic);
    83.    int PicFragNumberPlus=int (Pic);//PicFragNumberPlus is the Picture randomly loaded
    84.    img = loadImage("Pic_" + PicFragNumberPlus +".jpg");
    85.       print(PicFragNumberPlus + "  -  ");
    86.       println(pog);
    87.      
    88.      delay(speed); //this decides how long an image should be displayed
    89.      timer=(timer+1)%2;
    90.      
    91.      print ("PIC! - ");
    92.      println (PicFragNumberPlus);
    93.     
    94.   }
    95.   
    96.  }
    97.       
    98.       
    99.       //Loading and Displaying a Gif
    100.       else if (boopicorgif == 1) {
    101.         
    102.         background(255);
    103.         imageMode(CENTER);
    104.         image(animation[framesPlayed % animation.length], width/2, height/2);

    105.         
    106.          framesPlayed++;

    107.   float Gifanime = random (1, xGif);
    108.   int GifFragNumberPlus= int (Gifanime);
    109.   
    110.   float n = random (2,5); //n is a little fonction for displaying the gif for random number of reapeat (between 2 and 5 times)
    111.   int gifrepeats = int (n);
    112.   
    113.   if(framesPlayed >= gifrepeats*animation.length){
    114.     framesPlayed = 0;
    115.     // replace gif with a new one
    116.     animation = Gif.getPImages(this, "Gif_" + GifFragNumberPlus + ".gif");
    117.     }
    118.     
    119.     print ("GIF! - ");
    120.     println (GifFragNumberPlus);
    121.   
    122.   boopicorgif = 0;
    123.    
    124.    }
    125.     
    126.  
    127. }



    Thank's a lot
    Hi guys,
    I got a problem on a project.
    I want to display some gif randomly and repeat each x times.
    Displaying them randomly isn't a problem. I managed to do it with jpeg so it won't be hard I think.
    The problem is the repeat program.
    I'm using the library gifAnimation
    file://localhost/Users/Romee/Documents/Processing/libraries/gifAnimation/docs/index.html

    and I think that the amount of repeats is set into the gif himself
    when I use the methods 
    int getRepeat()

    it repeat itself perpetually as if my gifs were set for infinite repeats.

    Does anyone knows how to set (or reset more precisely) the number of repeats into the gif?
    I'm not sure it can be done with processing. Photoshop maybe?

    Thank's a lot!

    Hi all!
    I'm as new here as in programming :)
    I created a small program for my degree project. I'm in an art school.
    It's a program that loads pictures like a slideshow, very quickly.
    I've got thousands of pictures with different sizes.

    How could I say
    if the picture width is bigger than than the screen width, width pictures == screen width,
    f the pictures height is bigger than than the screen height, height pictures == screen height,
    ??

    I'm sure it so simple but I'm a bit of a Newbee :)

    Thank's all
    Here is my code.

    PS: I'm sure it could be optimized so if you see anything that could be coding better, PLEASE tell me!!



      /**
        Brainwashing
        Correction: romée by basile
      */

     
      PImage img;
      String[] files;
      int timer;
      float a ;
      int fragNumber;

      
      void setup() {
        size(1300,760);
     
      
      float a = random(0,1327);// a est une valeur au hasard comprise entre les deux valeurs données (n'apelle pas tes images "0001" mais "1");
       int fragNumber = int (a);//fragNumber est l'arrondi de a (10,55 --> 11)

      
       img = loadImage("pic_" + fragNumber +".jpg");
     println(fragNumber);
        timer=0;
      }

       
      void draw() {
        background(255);
        if(timer==0)
        {
          smooth();
          imageMode(CENTER);
          image(img,650,380);//Si tu veux leur donner à toute une taille commune (les adapter à la fen^tre par ex:
          //               il te suffit de mettre  image(img,0,0,largeur,hauteur);
          
          
        }
        else if(timer==1)
        {
            
             a = random(0,1327);
       int fragNumberPlus=int (a);//fragNumberPlus est l'image qui charge pendant ce temps (une autre épreuve de "a")
       img = loadImage("pic_" + fragNumberPlus +".jpg");
     

         println(fragNumberPlus);
         delay(130); //this decides how long an image should be displayed
        }
        timer=(timer+1)%2;
        
      }