<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to patches</title><link href="https://sourceforge.net/p/webcamxtra/patches/" rel="alternate"/><link href="https://sourceforge.net/p/webcamxtra/patches/feed.atom" rel="self"/><id>https://sourceforge.net/p/webcamxtra/patches/</id><updated>2011-07-02T00:54:52Z</updated><subtitle>Recent changes to patches</subtitle><entry><title>Patch for compiling under MacOS 10.6</title><link href="https://sourceforge.net/p/webcamxtra/patches/2/" rel="alternate"/><published>2011-07-02T00:54:52Z</published><updated>2011-07-02T00:54:52Z</updated><author><name>Wolfgang Jung</name><uri>https://sourceforge.net/u/wollej/</uri></author><id>https://sourceforge.net26057c482e674c56c4675aac7aba525b9e6599c0</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;This patch enables the compilation of libJMyron.jnilib with XCode under 10.6&lt;/p&gt;
&lt;p&gt;The generated jnilib can be downloaded via &lt;a href="http://blog.elektrowolle.de/wp-content/uploads/2011/07/libJMyron.jnilib.zip" rel="nofollow"&gt;http://blog.elektrowolle.de/wp-content/uploads/2011/07/libJMyron.jnilib.zip&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>int[][] GlobCenters discrepancy in JMyron</title><link href="https://sourceforge.net/p/webcamxtra/patches/1/" rel="alternate"/><published>2008-07-15T14:27:29Z</published><updated>2008-07-15T14:27:29Z</updated><author><name>Timothy Groote</name><uri>https://sourceforge.net/u/recklessness/</uri></author><id>https://sourceforge.netd251ec5fc0dc80f6ea02c598c953982c133d64cb</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The java wrapper "JMyron" was not returning the last globcenter when the number of globs was uneven (1 glob, 3 globs, 5 globs)&lt;/p&gt;
&lt;p&gt;so i had a quick look at the code and noticed the following:&lt;/p&gt;
&lt;p&gt;// i changed this *********************************************************&lt;br /&gt;
public int[][] globCenters(){&lt;br /&gt;
int b[] = native_globCenters();&lt;br /&gt;
int returnArray[][] = new int[b.length/2][2];&lt;/p&gt;
&lt;p&gt;//the following line used to read&lt;br /&gt;
// for(int i=0;i&amp;lt;b.length/2-1;i++){&lt;/p&gt;
&lt;p&gt;for(int i=0;i&amp;lt;b.length/2;i++){&lt;br /&gt;
returnArray[i][0] = b[i*2  ];&lt;br /&gt;
returnArray[i][1] = b[i*2+1];&lt;br /&gt;
}&lt;br /&gt;
return returnArray;&lt;br /&gt;
}&lt;br /&gt;
//*************************************************************************&lt;/p&gt;
&lt;p&gt;i have compiled and tested this in processing, and globCenters now returns all globCenters&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>