Willkommen auf unserem Seminar-Blog

Immer auf dem aktuellen Stand bleiben

Dieser Seminar-Blog befindet sich noch im Aufbau und wird in den kommenden Tagen entsprechend verfeinert.

Member Login

Lost your password?

Registration is closed

Sorry, you are not allowed to register by yourself on this site!

You must either be invited by one of our team member or request an invitation by email at viad.info {at} zhdk {dot} ch.

04.2 Average Color

Februar 24, 2012

Durchschnittsfarbe einer Pixelauswahl berechnen.

Processing

color getAvarageColor(PImage _img, int _posX, int _posY, int _w, int _h) {
   int vR = 0;
   int vG = 0;
   int vB = 0;
   for (int y=_posY; y<_posY+_h; y++)
   {
     for (int x=_posX; x<_posX+_w; x++)
     {
       vR += red(_img.get(x, y));
       vG += green(_img.get(x, y));
       vB += blue(_img.get(x, y));
     }
   }
   return(color(vR/(_w*_h), vG/(_w*_h), vB/(_w*_h)));
}