Changeset 10 for liacs


Ignore:
Timestamp:
Nov 30, 2009, 10:38:03 PM (15 years ago)
Author:
Rick van der Zwet
Message:

Some more playing around. But sleep is on it's way

File:
1 edited

Legend:

Unmodified
Added
Removed
  • liacs/mss/project/colour-tracking.c

    r9 r10  
    150150                    // detect 'square'
    151151                    p = 0;
    152                     const int SIZE = 2;
     152                    int SIZE = 3;
    153153                    for (i = m; i  < min(m+SIZE,height); i++)
    154154                    {
     
    163163                    }
    164164
     165                       
     166                    SIZE = 6;
    165167                    /* Make sure envirionment is 'low' */
    166168                    for (i = max(m-SIZE,0); i  < m; i++)
     
    189191                    if (p > SIZE)
    190192                    {
    191                             printf("%ix%i=%i\n",n,m,value);
     193                            //printf("%ix%i=%i\n",n,m,value);
    192194                            cmax = value;
    193195                            xmax = n;
     
    199201       
    200202        // Prepare combined output
    201         cvCopy(filter, target, NULL);
     203        // Some way of making the picture more pretty
     204        //cvSmooth(filter,target, CV_MEDIAN, 3, 3, 3, 3);
     205        cvCopy(filter,target, NULL);
    202206        cvCircle(target, cvPoint(xmax, ymax), 10, CV_RGB(255,0,0),4, 8, 0);
    203207                       
Note: See TracChangeset for help on using the changeset viewer.