Loading...
Logo
Processing Forum
telmo.bacile's Profile
21 Posts
11 Responses
0 Followers

Activity Trend

Last 30 days

Loading Chart...

Show:
Private Message
    Hi, im trying to use an old code done with processing 1 in processing 2.
    The problem is that in processing 2.0 i dont see anything in the sketch, i just see i black window but i dont see the lines of the program.
    The program is suppose to create an obj from the points of the kinect each frame.


    any idea why i dont see anything?

    here is the code:





    1. import peasy.*;
    2. import org.openkinect.*;
    3. import org.openkinect.processing.*;
    4. //import superCAD.*;
    5.  
    6. boolean record = false;
    7.  
    8. float zscale = 3;
    9. float zskew = 100;
    10.  
    11. int inputWidth = 640;
    12. int inputHeight = 480;
    13.  
    14. PeasyCam cam;
    15.  
    16. PVector[][] gray = new PVector[inputHeight][inputWidth];
    17.  
    18. // We'll use a lookup table so that we don't have to repeat the math over and over
    19. float[] depthLookUp = new float[2048];
    20.  
    21.  
    22. PImage depth;
    23.  
    24. static final int gray(color value) {
    25.   return max((value >> 16) & 0xff, (value >> 8 ) & 0xff, value & 0xff);
    26. }
    27.  
    28. Kinect kinect;
    29.  
    30.  
    31. void setup() {
    32.   size(inputWidth, inputHeight, P3D);
    33.   background(0);
    34.   ///frameRate (60);
    35.   cam = new PeasyCam(this, width*2.5);
    36.   kinect = new Kinect(this);
    37.   kinect.start();
    38.   kinect.enableDepth(true);
    39.   //depth = createImage(640, 480, RGB);
    40.   stroke(255);
    41.   // Lookup table for all possible depth values (0 - 2047)
    42.   for (int i = 0; i < depthLookUp.length; i++) {
    43.     depthLookUp[i] = rawDepthToMeters(i);
    44.   }
    45. }
    46.  
    47. int counter = 0;
    48.  
    49. void draw () {
    50.   background(0);
    51.   if (record == true) {
    52.    // beginRaw("superCAD.ObjFile", "objExporter" + counter + ".obj"); //Start recording to the file
    53.   }
    54.  
    55.   //depth.pixels = NativeKinect.getDepthMap();
    56.   //depth.updatePixels();
    57.   //depth = kinect.getDepthImage();
    58.   int[] depth = kinect.getRawDepth();
    59.  
    60.   for (int y = 0; y < inputHeight; y++) {
    61.     for (int x = 0; x < inputWidth; x++) {
    62.       int offset = x+y*inputWidth;
    63.       // Convert kinect data to world xyz coordinate
    64.       int rawDepth = depth[offset];
    65.       PVector v = depthToWorld(x,y,rawDepth);
    66.       gray[y][x] = v;
    67.     }
    68.   }
    69.  
    70.  
    71.   float scaling = 400;
    72.  
    73.   // Kyle McDonald’s original source used here
    74.   translate(-inputWidth / 2, -inputHeight / 2,100);
    75.   int step = 2;
    76.   for (int y = step; y < inputHeight; y += step) {
    77.     float planephase = 0.5 - (y-(inputHeight / 2)) / zskew;
    78.     for (int x = step; x < inputWidth; x += step)
    79.     {
    80.       stroke(255);
    81.       //point(x, y, (gray[y][x] - planephase) * zscale);
    82.  
    83.       PVector v = PVector.mult(gray[y][x],200);
    84.  
    85.       if (v.z > 100 && v.z < 200) {
    86.         line(v.x,v.y,v.z,v.x,v.y,v.z);
    87.         //line(gray[y][x].x,gray[y][x].y, gray[y][x].z,gray[y][x].x,gray[y][x].y, gray[y][x].z);
    88.       }
    89.     }
    90.   }
    91.  
    92.   if (record == true) {
    93.     endRaw();
    94.     record = false; // Stop recording to the file
    95.   }
    96.   
    97.    if (key == 'R' || key == 'r') {
    98.     // Press R to save the file
    99.     record = true;
    100.     counter++;  //Thanks to Dr. Rhazes Spell for putting the counter in adding functionality.
    101.   }
    102. }
    103.  

    104.  
    105. // These functions come from: http://graphics.stanford.edu/~mdfisher/Kinect.html
    106. float rawDepthToMeters(int depthValue) {
    107.   if (depthValue < 2047) {
    108.     return (float)(1.0 / ((double)(depthValue) * -0.0030711016 + 3.3309495161));
    109.   }
    110.   return 0.0f;
    111. }
    112.  
    113. PVector depthToWorld(int x, int y, int depthValue) {
    114.  
    115.   final double fx_d = 1.0 / 5.9421434211923247e+02;
    116.   final double fy_d = 1.0 / 5.9104053696870778e+02;
    117.   final double cx_d = 3.3930780975300314e+02;
    118.   final double cy_d = 2.4273913761751615e+02;
    119.  
    120.   PVector result = new PVector();
    121.   double depth =  depthLookUp[depthValue];//rawDepthToMeters(depthValue);
    122.   result.x = (float)((x - cx_d) * depth * fx_d);
    123.   result.y = (float)((y - cy_d) * depth * fy_d);
    124.   result.z = (float)(depth);
    125.   return result;
    126. }
    Hi, gl model from the library glgraphics used to allow me to create models with thouthands of lines and points that run very fluently because it use the graphic card to make calculations.

    Since gl model is no avaliable in processing 2 anymore, i was wondering how can i create something similar using the core library of any other library for processing 2.0?


    are there any plans to make glgraphics available for processing 2.0?


    cheers


    T.
    hi, i found this blend function that works with 2 values.

    you  need to give to the function 2 numbers  and then the blending value ( from 0 to 1)


    void blend (int a, int b, float frac   )
    {
      
     resp =  a + ( frac * ( b - a));
      
     }


    blend( 0, 10, 0.5);   // will give 5 as result 




    How can i expand this function in order to work with 3 values or more instead of 2 values?
    I need to adapt this function to have 3 or more values, Can anybody help me?



    For example if a have  3 vlaues



    blend( 0, 10, 20, 0.5);       //------ > this should give 10 as result



    any idea?





    Hi list, I need to convert a code made in matlab into processing but i dont know matlab.

    Is there anybody here that know matlab that can help me with this?



    thanks in advance


    1. function f=fd(x,fs)
      x=(x-mean(x))/std(x);
      n = length(x);
      t=(0:1/fs:(n-1)/fs);
      t=t';
      x1=[t x'];
      for i=1:n-1
      d(i)=sqrt(abs(x1(i+1,1)-x1(i,1))^2+abs(x1(i+1,2)-x1(i,2))^2);
      dmax(i)=sqrt((abs(x1(i+1,1)-x1(1,1))^2+abs(x1(i+1,2)-x1(1,2))^2));
      end
      totlen=sum(d);
      avglen=mean(d);
      maxdist=max(dmax);
      numstep=double(totlen/avglen);
      den=double(maxdist/totlen);

      f=(log(numstep))/((log(den)+log(numstep))); 


    Hi list, i found a code in java that calculates fractal dimension using box counting method.

    I need to convert this code into processing, but the code has some packages and libraries.

    How can i do this?

    is it possible to use java packages and libraries in processing? 


    cheers


    1. import java.util.*;
    2. import java.lang.*;


    3. package ij.plugin.filter;
    4. import java.awt.*;
    5. import java.awt.image.*;
    6. import java.util.*;
    7. import ij.*;
    8. import ij.process.*;
    9. import ij.gui.*;
    10. import ij.measure.*;
    11. import ij.util.*;

    12. /**
    13. Calculate the so-called "capacity" fractal dimension.  The algorithm
    14. is called, in fractal parlance, the "box counting" method.  In the
    15. simplest terms, the routine counts the number of boxes of a given size
    16. needed to cover a one pixel wide, binary (black on white) border.
    17. The procedure is repeated for boxes that are 2 to 64 pixels wide. 
    18. The output consists of two columns labeled "size" and "count". A plot 
    19. is generated with the log of size on the x-axis and the log of count on
    20. the y-axis and the data is fitted with a straight line. The slope (S) 
    21. of the line is the negative of the fractal dimension, i.e. D=-S.

    22. A full description of the technique can be found in T. G. Smith,
    23. Jr., G. D. Lange and W. B. Marks, Fractal Methods and Results in Cellular Morphology,
    24. which appeared in J. Neurosci. Methods, 69:1123-126, 1996.

    25. ---
    26. 12/Jun/2006 G. Landini added "set is white" option, otherwise the plugin
    27. assumes that the object is always low-dimensional (i.e. the phase with
    28. the smallest number of pixels). Now it works fine for sets with D near to 2.0

    29. */
    30. public class FractalBoxCounter implements PlugInFilter {
    31.   static String sizes = "2,3,4,6,8,12,16,32,64";
    32.   static boolean blackBackground;
    33.   int[] boxSizes;
    34.   float[] boxCountSums;
    35.   int maxBoxSize;
    36.   int[] counts;
    37.   Rectangle roi;
    38.   int foreground;
    39.   ImagePlus imp;

    40.   public int setup(String arg, ImagePlus imp) {
    41.     this.imp = imp;
    42.     return DOES_8G+NO_CHANGES;
    43.   }

    44.   public void run(ImageProcessor ip) {

    45.     GenericDialog gd = new GenericDialog("Fractal Box Counter", IJ.getInstance());
    46.     gd.addStringField("Box Sizes:", sizes, 20);
    47.     gd.addCheckbox("Black Background", blackBackground);

    48.     gd.showDialog();
    49.     if (gd.wasCanceled())
    50.       return;

    51.     String s = gd.getNextString();

    52.     blackBackground = gd.getNextBoolean ();

    53.     if (s.equals(""))
    54.       return;
    55.     boxSizes = s2ints(s);
    56.     if (boxSizes==null || boxSizes.length<1)
    57.       return;
    58.     boxCountSums = new float[boxSizes.length];
    59.     sizes = s;
    60.     for (int i=0; i<boxSizes.length; i++)
    61.       maxBoxSize = Math.max(maxBoxSize, boxSizes[i]);
    62.     counts = new int[maxBoxSize*maxBoxSize+1];
    63.     imp.deleteRoi();
    64.     if (!ip.isBinary()) {
    65.       IJ.error("8-bit binary image (0 and 255) required.");
    66.       return;
    67.     }
    68.     if (blackBackground)
    69.       foreground = 255;
    70.     else
    71.       foreground = 0;
    72.     if (ip.isInvertedLut())
    73.       foreground = 255 - foreground;
    74.     doBoxCounts(ip);
    75.     IJ.register(FractalBoxCounter.class);  // keeps this class from being GC'd on 1.1 JVMs
    76.     return;
    77.   }

    78.   /** Breaks the specified string into an array
    79.    of ints. Returns null if there is an error.*/
    80.   public int[] s2ints(String s) {
    81.     StringTokenizer st = new StringTokenizer(s, ", \t");
    82.     int nInts = st.countTokens();
    83.     int[] ints = new int[nInts];
    84.     for(int i=0; i<nInts; i++) {
    85.       try {ints[i] = Integer.parseInt(st.nextToken());}
    86.       catch (NumberFormatException e) {IJ.log(""+e); return null;}
    87.     }
    88.     return ints;
    89.   }

    90.   boolean FindMargins(ImageProcessor ip) {
    91.     if (IJ.debugMode) IJ.log("FindMargins");
    92.     int[] histogram = new int[256];
    93.     int width = imp.getWidth();
    94.     int height = imp.getHeight();
    95.     int left, right, top, bottom;

    96.     //Find left edge
    97.      left = -1;
    98.     do {
    99.       left++;
    100.       if (left>=width) {
    101.         IJ.error("No non-backround pixels found.");
    102.         return false;
    103.       }
    104.       ip.setRoi(left, 0, 1, height);
    105.       histogram = ip.getHistogram();
    106.     } while (histogram[foreground]==0);

    107.     //Find top edge
    108.     top = -1;
    109.     do {
    110.       top++;
    111.       ip.setRoi(left, top, width-left, 1);
    112.       histogram = ip.getHistogram();
    113.     } while (histogram[foreground]==0);

    114.     //Find right edge
    115.     right =width+1;
    116.     do {
    117.       right--;
    118.       ip.setRoi(right-1, top, 1, height-top);
    119.       histogram = ip.getHistogram();
    120.     } while (histogram[foreground]==0);

    121.     //Find bottom edge
    122.     bottom =height+1;
    123.     do {
    124.       bottom--;
    125.       ip.setRoi(left, bottom-1, right-left, 1);
    126.       histogram = ip.getHistogram();
    127.     } while (histogram[foreground]==0);

    128.     roi = new Rectangle(left, top, right-left, bottom-top);
    129.     return true;
    130.   }

    131.   int count(int size, ImageProcessor ip) {
    132.     int[] histogram = new int[256];
    133.     int count;
    134.     int x = roi.x;
    135.     int y = roi.y;
    136.     int w = (size<=roi.width)?size:roi.width;
    137.     int h = (size<=roi.height)?size:roi.height;
    138.     int right = roi.x+roi.width;
    139.     int bottom = roi.y+roi.height;
    140.     int maxCount = size*size;
    141.     
    142.     for (int i=1; i<=maxCount; i++)
    143.       counts[i] = 0;
    144.     boolean done = false;
    145.     do {
    146.       ip.setRoi(x, y, w, h);
    147.       histogram = ip.getHistogram();
    148.       counts[histogram[foreground]]++;
    149.       x+=size;
    150.       if (x+size>=right) {
    151.         w = right-x;
    152.         if (x>=right) {
    153.           w = size;
    154.           x = roi.x;
    155.           y += size;
    156.           if (y+size>=bottom)
    157.             h = bottom-y;
    158.           done = y>=bottom;
    159.         }
    160.       }
    161.     } while (!done);
    162.     int boxSum = 0;
    163.     int nBoxes;
    164.     for (int i=1; i<=maxCount; i++) {
    165.       nBoxes = counts[i];
    166.       if (nBoxes!=0)
    167.         boxSum += nBoxes;
    168.     }
    169.     return boxSum;
    170.   }
    171.   
    172.   double plot() {
    173.     int n = boxSizes.length;
    174.     float[] sizes = new float[boxSizes.length];
    175.     for (int i=0; i<n; i++)
    176.       sizes[i] = (float)Math.log(boxSizes[i]);
    177.     CurveFitter cf = new CurveFitter(Tools.toDouble(sizes), Tools.toDouble(boxCountSums));
    178.     cf.doFit(CurveFitter.STRAIGHT_LINE);
    179.     double[] p = cf.getParams();
    180.     double D = -p[1];
    181.     String label = "D="+IJ.d2s(D,4);
    182.     float[] px = new float[100];
    183.     float[] py = new float[100];
    184.     double[] a = Tools.getMinMax(sizes);
    185.     double xmin=a[0], xmax=a[1]; 
    186.     a = Tools.getMinMax(boxCountSums);
    187.     double ymin=a[0], ymax=a[1]; 
    188.     double inc = (xmax-xmin)/99.0;
    189.     double tmp = xmin;
    190.     for (int i=0; i<100; i++) {
    191.       px[i]=(float)tmp;
    192.       tmp += inc;
    193.     }
    194.     for (int i=0; i<100; i++)
    195.       py[i] = (float)cf.f(p, px[i]);
    196.     a = Tools.getMinMax(py);
    197.     ymin = Math.min(ymin, a[0]);
    198.     ymax = Math.max(ymax, a[1]);
    199.     Plot plot = new Plot("Plot", "log (box size)", "log (count)", px, py);
    200.     plot.setLimits(xmin,xmax,ymin,ymax);
    201.     plot.addPoints(sizes, boxCountSums, PlotWindow.CIRCLE);
    202.     plot.addLabel(0.8, 0.2, label);
    203.     plot.show();
    204.     return D;      
    205.   }

    206.   void doBoxCounts(ImageProcessor ip) {
    207.     if (!FindMargins(ip))
    208.       return;
    209.     ResultsTable rt=ResultsTable.getResultsTable();
    210.     rt.incrementCounter();
    211.     rt.setLabel(imp.getShortTitle(), rt.getCounter()-1);
    212.     for (int i=0; i<boxSizes.length; i++) {
    213.       int boxSum = count(boxSizes[i], ip);
    214.       rt.addValue("C"+boxSizes[i], boxSum);
    215.       boxCountSums[i] = (float)Math.log(boxSum);
    216.     }
    217.     double D = plot();
    218.     rt.addValue("D", D);
    219.     rt.show("Results");
    220.     imp.deleteRoi();
    221.   }
    222. }

    Hi, i have a function that generate values.  Im adding a value  to an Arraylist each frame.

    I would like to detect when the last items in my arraylist  begins to repeat.

    How can i do this?


    Usually it repeats the last 7 elements (values) in my arraylist.


    something like this:

    [ 1.92244 ,  ……………………………

    1.9592291, 1.9729414, 1.9554538, 1.9625572, 1.9517543, 1.9695913, 1.963067, 

    1.9592291, 1.9729414, 1.9554538, 1.9625572, 1.9517543, 1.9695913, 1.963067, 

    1.9592291, 1.9729414, 1.9554538, 1.9625572, 1.9517543, 1.9695913, 1.963067,

     1.9592291, 1.9729414, 1.9554538, 1.9625572, 1.9517543, 1.9695913, 1.963067,

     1.9592291, 1.9729414, 1.9554538, 1.9625572, 1.9517543, 1.9695913, 1.963067, 

    1.9592291, 1.9729414, 1.9554538, 1.9625572, 1.9517543, 1.9695913, 1.963067 ]



    How can i detect the repetition of my last  7 elements of an ArrayList?



    thanks in advance



    T.



    Hi , i have a code  that calculates a value each frame  and then im adding that  value to an arraylist each frame and then im printing my arraylist.

    The code works fine, but when my arraylist begin to grow more than 14,000 elements my processing begins to speed down until it crashes.

    I need to have a very big arralist with more than 800 000  values.


    How can i solve this problem?




    cheers
    T.



    Hi , first i would like to thank to the forum for the help, ive made this code with the help of this forum.

    Now I would like to ask for advices or recomendations.

    The idea is to calculate the shannons entropy of an image. 

    I ve found a code in java that calculates the entropy of a string so i adapted that code:

    what im doing is to load an image and then iterate over the pixels to get the hex colors values and then i  join these values  in one string.
    At the end i end up with something like this:

    "C0C1B4BABAACBABBADBBBCAEBEBFB1BCBDAFBEBEB0C1C0B1BFBEAFC0C0AFC2C1B1BFBEAEC3C2B2C4C2B2BFC0B3C0C1B3BDBCAEBBB9ABBDBBADBFBFB0BCBBACBFBEAEBDBCACBBBAAABAB9A9BDBCACC4C3B3C2BFB0BEBFB1C0C1B3C5C4B6C0BDB0BEBCAEC2C1B2BAB9A9BEBDADC1BFAFC1BFB1BDBBABBFBEAEC0BDAEBFBCADC5C4B6C0C1B3C2C2B4C3C2B3BEBDAEBFBDAEC0BFAFBFBDADBFBDADBDBAABBFBCADC0BDAEC0BDADC0BDACC1BFB1BEBDAFBFBFB0C4C3B3C1C0B0BBB9A9BCBAABBDBCACBDBBACBAB7A8BDBAABBEBBACC1BEAEC1BEAEBFBEAFB8B7A7BCBBABC2C1B1C3C1B2C2C0B0BDBBABBEBDADBFBDAEBDBAABBCB9AABCB9AABFBCADBFBCADC1C0B0B8B7A7BFBEAEC2C1B1BDBBACBEBCADBEBCACC3C3B3C3C1B2BDBAABBDBBABBEBBACBFBCADBBB8A9C0BFAFC0BEAEC2C1B1C6C4B5C0BFAFBDBBABC2C0B0C5C5B5C0BFAFBBB9AABEBDADC0BDADBDB9A9B8B2A3C2C1B1C3C2B2C0BFAFC3C1B2C5C4B4C2C1B1C1BFB0C3C1B1C0BDAEBFBCADBFBCADBEBAA9BAB5A5BAB4A6C6C5B5C4C3B3C0BFAFBFBEAEC4C3B3C0C0AFBFBDADC1BEAFC4C1B2C6C1B3C1BCACBEB9A9BAB4A6BFBAACC3C2B2C0BEAEBFBEAEBFBEAEC0BEAFC2BFB0BFBCAEC1BEAEC6C1B1C2BCAFC0BAACBFBAA9BCB6A7BEB8AAC1C0B0BFBCADBDBAABBEBCACC2BFB0C3C0B1BFBCACC1BDACC2BEAEBEB9ABBDB9ABBFBBAAC1BCACC2BDADBFBEAEBFBDAEBAB7A8B7B4A5BEBBACBEBBABBFBBAAC5BFAFC0BCADBDB9ABB9B6A7C6C2B3CAC4B6C8C3B"


    then im calculating the entropy of that big string.


    It seems it works ok, but i was thinking that is this a real  way to calculate the entropy of an image?

    is this in reality the entropy of an image?   


    Other thing i was thinking is that instead of using the hex values of each pixel , convert each hex value in just one character , for example  convert  "B7B4A5" into "a". What do you think?  do you think that would be better?



    Do you think this is a good way to calculating the entropy of an image? or can you think an improved or better way?


    here is the code:

    1. import java.util.*;

    2. public double calculateShannonEntropy(String[] values) {
    3.   Map<String, Integer> map = new HashMap<String, Integer>();
    4.   // count the occurrences of each value
    5.   for (String sequence : values) {
    6.     if (!map.containsKey(sequence)) {
    7.       map.put(sequence, 0);
    8.     }
    9.     map.put(sequence, map.get(sequence) + 1);
    10.   }
    11.   // calculate the entropy
    12.   double result = 0.0d;
    13.   for (String sequence : map.keySet()) {
    14.     double frequency = (double) map.get(sequence) / values.length;
    15.     result -= frequency * (Math.log(frequency) / Math.log(2));
    16.   }
    17.   return result;
    18. }


    19. //Como convertir este codigo de arriba solo en processing?



    20. void setup() {
    21. /****************************************************************/
    22. size(500, 400);
    23. imageMode(CENTER);
    24. /****************************************************************/
    25. final int ww = width>>1, hh = height>>1;

    26. PImage img;  
    27. img = loadImage("imagen.png");
    28. final int imgW = img.width, imgH = img.height;
    29. final int imgLen = img.pixels.length;

    30. println(imgLen);



    31. image(img, ww, hh);
    32. /****************************************************************/
    33. int col = imgW>>2, row = imgH>>1;
    34. color colour = img.pixels[row*imgW + col];
    35. println( hex(colour) );
    36. /****************************************************************/
    37. String[] pixelsStr = new String[imgLen];
    38. for ( int i=imgLen; i!=0; pixelsStr[--i] = hex(img.pixels[i], 6) );

    39. String colStr = pixelsStr[row*imgW + col];
    40. println( colStr );
    41. println( pixelsStr );
    42. /****************************************************************/

    43. String strings = join(pixelsStr, "");
    44. println(strings);

    45. String [] sa = new String[strings.length() - 1];
    46. //println("THe collection of values we want to");
    47. //println("calculate the entropy for");
    48. for (int i = 0; i < sa.length; i++) {
    49.     sa[i] = strings.substring(i, i+2);
    50.    // println(sa[i]);
    51.  }
    52.  // The method returns a double need to cast to a float
    53. float entropy = (float) calculateShannonEntropy(sa);
    54. println("Entropy = " + entropy);
    55.   
    56.   
    57. }





     



    Hi, is there is an easy way to reduce the pixels of an image? 

    for example if i have different images with different number of pixels  i need to convert every image to 1000 pixels size.


    Is there is a easy way to achieve this?


    thanks in advance


    T.

    Hi, is it possible to use functions made in java in processing?

    or should i convert my java into processing first?



    I been trying to use this implementation of shannon entropy in processing:



    but i get errors, any idea how to make it work? here is the code:




    1. public static Double calculateShannonEntropy(List<String> values) {
    2.   Map<String, Integer> map = new HashMap<String, Integer>();
    3.   // count the occurrences of each value
    4.   for (String sequence : values) {
    5.     if (!map.containsKey(sequence)) {
    6.       map.put(sequence, 0);
    7.     }
    8.     map.put(sequence, map.get(sequence) + 1);
    9.   }

    10.   // calculate the entropy
    11.   Double result = 0.0;
    12.   for (String sequence : map.keySet()) {
    13.     Double frequency = (double) map.get(sequence) / values.size();
    14.     result -= frequency * (Math.log(frequency) / Math.log(2));
    15.   }

    16.   return result;
    17. }




    18. void setup() {
    19.   
    20.   calculateShannonEntropy("asd das ds sfffs");
    21.   
    22. }



    Hi list, i was wondering if anybody have implemented  shannon's entropy in processing?

    i was wondering how can i use shannon entropy for measure the entropy of a image? or group of pixels?

    do anybody have tried implementing this? or any idea how to implement this?



    cheers



    T.

    Hi , loadstrings puts the content of the text  file into a string array.
    How can i put all the content of my text file into one string?

    I dont need to put it inside an array of strings but inside a string.


    cheers


    T.




    Hi, i have  a big text file, and i need to select from that text file only words that are between specific characteres, lets say : ";;" and ";"

    so, for example , if i have this in my txt file :


    kjhas lkjaslk  slks ;;agge ; lkjqwe lkjjk tal ws ;;qv ; jhr


    i need to select "agge" and "qv" because both words are between ";;" and ";"



    Which is the easiest way of doing this in processing?


    thanks



    Telmo
    Hi, im new with processing, i would like to make an app that visualize a text file.

    My  txt file is very big , ithas  a lot of data  (text).
    I need to dynamically generate different kind of visualizationg based on that txt file.

    I was wondering which is the best approach for this ( when i have big .txt file) . Is it a good approach to visualizate my data reading directly from the txt file or should be a better to use a database?

    Is there any benefit of using database in terms of speed and efficiency? or should not be difference?



    thanks


    Telmo