webcamxtra-development Mailing List for Myron (webcamxtra)
Brought to you by:
jtnimoy
You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
(5) |
Apr
(19) |
May
(4) |
Jun
(5) |
Jul
(7) |
Aug
(4) |
Sep
(5) |
Oct
(15) |
Nov
(40) |
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
|
Feb
(16) |
Mar
(6) |
Apr
(3) |
May
(26) |
Jun
(8) |
Jul
(8) |
Aug
|
Sep
|
Oct
(4) |
Nov
(2) |
Dec
|
| 2006 |
Jan
(1) |
Feb
(6) |
Mar
|
Apr
(12) |
May
(30) |
Jun
(11) |
Jul
(5) |
Aug
(9) |
Sep
(10) |
Oct
(2) |
Nov
(2) |
Dec
(2) |
| 2007 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
(2) |
Jun
(2) |
Jul
|
Aug
(1) |
Sep
|
Oct
(5) |
Nov
|
Dec
|
| 2008 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
(2) |
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
| 2009 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: MQR M. Q. <enq...@mi...> - 2017-06-22 17:14:38
|
hi Webcamxtra http://chevrolethcm.vn/generic_search.php?jack=ck26dzmt86y1w |
|
From: jn_delong <jn_...@si...> - 2014-06-06 20:02:54
|
山东 |
|
From: Stephen B. <ss...@ya...> - 2013-03-15 13:11:51
|
http://www.exactlead.com/dauqu/aai/wrdvs/kw/jathj 3/15/2013 2:11:26 PM . Stephen Boyd |
|
From: BIGGS S. <s....@ed...> - 2012-08-12 14:56:43
|
Are you cleaning up the instance of the xtra when the programme stops? If not then you will be creating a second instance of the xtra. With one vdig available this will fail. Best. Simon Sent from a mobile device, thus the brevity. Simon Biggs si...@li...<mailto:si...@li...> s....@ed...<mailto:s....@ed...> http://www.littlepig.org.uk On 12 Aug 2012, at 15:03, "aaron hsu" <gai...@gm...<mailto:gai...@gm...>> wrote: I have a same problem in my project. because I use director with webcamxtra,My solution is restart director. 2012/8/12 Zaki Uddin <zak...@gm...<mailto:zak...@gm...>> Hello, I am using JMyron in a project of mine. Whenever i start the video capture for the first time, the video runs fine. After that i press the stop button and it closes correctly aswell. But when i press the start button again, my application crashes and i get the following error: # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x031d27cb, pid=3112, tid=1784 # # JRE version: 7.0_05-b05 # Java VM: Java HotSpot(TM) Client VM (23.1-b03 mixed mode, sharing windows-x86 ) # Problematic frame: # C [JMyron.dll+0x27cb] # # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows # # An error report file with more information is saved as: # C:\Documents and Settings\XPMUser\Desktop\Camera\hs_err_pid3112.log # # If you would like to submit a bug report, please visit: # http://bugreport.sun.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # Java Result: 1 I have pasted my code below. Looking forward to your response. Regards, Zaki Ud Din CODE /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package camera; import java.awt.Rectangle; import java.awt.image.BufferedImage; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.ImageIcon; import JMyron.JMyron; /** * * @author Zaki */ public class WebCam { GUI window = null; JMyron m;//a camera object int width = 720; int height = 576; int frameRate = 10; //fps boolean captureOn; BufferedImage captureImage; int[] imageIntArray; int cR = 255, cG = 255, cB = 255; Thread t; public WebCam(GUI window1) { this.window = window1; //make a new instance of the object } public void configure() { m = new JMyron(); System.out.println("asd"); m.start(width, height);//start a capture at 320x240 System.out.println("zxc"); m.findGlobs(0); //disable all the intelligence to speed up frame rate window.CameraView.setBounds(new Rectangle(width, height)); System.out.println("Forced Dimensions: " + m.getForcedWidth() + " " + m.getForcedHeight()); } public void getCameraImage() { captureImage = new BufferedImage(width, height, BufferedImage.OPAQUE); m.update();//update the camera view imageIntArray = m.image(); //get the normal image of the camera captureImage.setRGB(0, 0, width, height, imageIntArray, 0, width); } public void startCapture() { configure(); System.out.println("123"); captureOn = true; Runnable capture = new Runnable() { public void run() { while (captureOn) { try { getCameraImage(); window.CameraView.setIcon(new ImageIcon(captureImage)); test(); Thread.sleep(frameRate); //sleep for the time of framerate } catch (InterruptedException ex) { Logger.getLogger(WebCam.class.getName()).log(Level.SEVERE, null, ex); } } } }; Thread t = new Thread(capture); t.start(); window.btnStart.setEnabled(false); } public void test() { // Get all the pixels int w = captureImage.getWidth(null); int h = captureImage.getHeight(null); } public void stop() { // m = new JMyron(); // Get all the pixels m.stop(); captureOn = false; } } ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Webcamxtra-development mailing list Web...@li...<mailto:Web...@li...> https://lists.sourceforge.net/lists/listinfo/webcamxtra-development ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Webcamxtra-development mailing list Web...@li...<mailto:Web...@li...> https://lists.sourceforge.net/lists/listinfo/webcamxtra-development -- The University of Edinburgh is a charitable body, registered in Scotland, with registration number SC005336. |
|
From: aaron h. <gai...@gm...> - 2012-08-12 14:01:59
|
I have a same problem in my project. because I use director with webcamxtra,My solution is restart director. 2012/8/12 Zaki Uddin <zak...@gm...> > Hello, > > I am using JMyron in a project of mine. Whenever i start the video capture > for the first time, the video runs fine. After that i press the stop button > and it closes correctly aswell. But when i press the start button again, my > application crashes and i get the following error: > > # > # A fatal error has been detected by the Java Runtime Environment: > # > # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x031d27cb, pid=3112, > tid=1784 > # > # JRE version: 7.0_05-b05 > # Java VM: Java HotSpot(TM) Client VM (23.1-b03 mixed mode, sharing > windows-x86 ) > # Problematic frame: > # C [JMyron.dll+0x27cb] > # > # Failed to write core dump. Minidumps are not enabled by default on > client versions of Windows > # > # An error report file with more information is saved as: > # C:\Documents and Settings\XPMUser\Desktop\Camera\hs_err_pid3112.log > # > # If you would like to submit a bug report, please visit: > # http://bugreport.sun.com/bugreport/crash.jsp > # The crash happened outside the Java Virtual Machine in native code. > # See problematic frame for where to report the bug. > # > Java Result: 1 > > > I have pasted my code below. > > Looking forward to your response. > > Regards, > > Zaki Ud Din > > > *CODE* > /* > * To change this template, choose Tools | Templates > * and open the template in the editor. > */ > > package camera; > > import java.awt.Rectangle; > import java.awt.image.BufferedImage; > import java.util.logging.Level; > import java.util.logging.Logger; > import javax.swing.ImageIcon; > import JMyron.JMyron; > > /** > * > * @author Zaki > */ > public class WebCam { > > GUI window = null; > JMyron m;//a camera object > int width = 720; > int height = 576; > int frameRate = 10; //fps > boolean captureOn; > BufferedImage captureImage; > int[] imageIntArray; > int cR = 255, cG = 255, cB = 255; > Thread t; > > public WebCam(GUI window1) { > > this.window = window1; > //make a new instance of the object > > } > > public void configure() { > m = new JMyron(); > System.out.println("asd"); > m.start(width, height);//start a capture at 320x240 > System.out.println("zxc"); > m.findGlobs(0); //disable all the intelligence to speed up frame > rate > window.CameraView.setBounds(new Rectangle(width, height)); > System.out.println("Forced Dimensions: " + m.getForcedWidth() + " > " + m.getForcedHeight()); > } > > public void getCameraImage() { > captureImage = new BufferedImage(width, height, > BufferedImage.OPAQUE); > m.update();//update the camera view > imageIntArray = m.image(); //get the normal image of the camera > captureImage.setRGB(0, 0, width, height, imageIntArray, 0, width); > } > > public void startCapture() { > configure(); > System.out.println("123"); > captureOn = true; > Runnable capture = new Runnable() { > > public void run() { > while (captureOn) { > try { > getCameraImage(); > window.CameraView.setIcon(new > ImageIcon(captureImage)); > test(); > Thread.sleep(frameRate); //sleep for the time of > framerate > } catch (InterruptedException ex) { > > Logger.getLogger(WebCam.class.getName()).log(Level.SEVERE, null, ex); > } > } > } > }; > Thread t = new Thread(capture); > t.start(); > window.btnStart.setEnabled(false); > } > > public void test() { > // Get all the pixels > int w = captureImage.getWidth(null); > int h = captureImage.getHeight(null); > } > > public void stop() { > // m = new JMyron(); > // Get all the pixels > > m.stop(); > captureOn = false; > > } > > } > > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > Webcamxtra-development mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webcamxtra-development > > |
|
From: Zaki U. <zak...@gm...> - 2012-08-11 22:06:01
|
Hello, I am using JMyron in a project of mine. Whenever i start the video capture for the first time, the video runs fine. After that i press the stop button and it closes correctly aswell. But when i press the start button again, my application crashes and i get the following error: # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x031d27cb, pid=3112, tid=1784 # # JRE version: 7.0_05-b05 # Java VM: Java HotSpot(TM) Client VM (23.1-b03 mixed mode, sharing windows-x86 ) # Problematic frame: # C [JMyron.dll+0x27cb] # # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows # # An error report file with more information is saved as: # C:\Documents and Settings\XPMUser\Desktop\Camera\hs_err_pid3112.log # # If you would like to submit a bug report, please visit: # http://bugreport.sun.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # Java Result: 1 I have pasted my code below. Looking forward to your response. Regards, Zaki Ud Din *CODE* /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package camera; import java.awt.Rectangle; import java.awt.image.BufferedImage; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.ImageIcon; import JMyron.JMyron; /** * * @author Zaki */ public class WebCam { GUI window = null; JMyron m;//a camera object int width = 720; int height = 576; int frameRate = 10; //fps boolean captureOn; BufferedImage captureImage; int[] imageIntArray; int cR = 255, cG = 255, cB = 255; Thread t; public WebCam(GUI window1) { this.window = window1; //make a new instance of the object } public void configure() { m = new JMyron(); System.out.println("asd"); m.start(width, height);//start a capture at 320x240 System.out.println("zxc"); m.findGlobs(0); //disable all the intelligence to speed up frame rate window.CameraView.setBounds(new Rectangle(width, height)); System.out.println("Forced Dimensions: " + m.getForcedWidth() + " " + m.getForcedHeight()); } public void getCameraImage() { captureImage = new BufferedImage(width, height, BufferedImage.OPAQUE); m.update();//update the camera view imageIntArray = m.image(); //get the normal image of the camera captureImage.setRGB(0, 0, width, height, imageIntArray, 0, width); } public void startCapture() { configure(); System.out.println("123"); captureOn = true; Runnable capture = new Runnable() { public void run() { while (captureOn) { try { getCameraImage(); window.CameraView.setIcon(new ImageIcon(captureImage)); test(); Thread.sleep(frameRate); //sleep for the time of framerate } catch (InterruptedException ex) { Logger.getLogger(WebCam.class.getName()).log(Level.SEVERE, null, ex); } } } }; Thread t = new Thread(capture); t.start(); window.btnStart.setEnabled(false); } public void test() { // Get all the pixels int w = captureImage.getWidth(null); int h = captureImage.getHeight(null); } public void stop() { // m = new JMyron(); // Get all the pixels m.stop(); captureOn = false; } } |
|
From: Giuseppe B. <g.b...@mw...> - 2009-10-29 19:41:23
|
Sorry, i try to downloand the Myron Xtra 0025 but the zip files is damage. it is possible get a right version ? Best Regards Bigoni Giuseppe |
|
From: Sciss <co...@sc...> - 2009-03-25 19:48:31
|
hi, i have looked at the problem of JMyron (in Processing) crashing when you call settings(). This happens at least on Mac OS X 10.4 Intel. The problem is that settings must be called in the AppKit thread which is not the thread that the processing sketch is running in. Although i have practically no experience with Mac OS Carbon, i finally managed to get the thing working, by dispatching a carbon event that will invoke the camera settings on the main event loop. The attached file contains the diffs to the current SVN revision 30. I guess this can be incorporated in the SVN? cheers, -sciss- |
|
From: Dott. M. A. <lin...@gm...> - 2009-01-13 20:22:51
|
Hi to all !
When I try to run a example of code ( MYron_BoundingBoxes) I receive this
error :
---------------------------------------------
Exception in thread "Animation Thread" java.lang.UnsatisfiedLinkError:
C:\Documents and
Settings\marco\Desktop\processing-1.0.1\libraries\JMyron\library\JMyron.dll:
Can't find dependent libraries
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(Unknown Source)
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at JMyron.JMyron.<clinit>(JMyron.java:14)
at Myron_BoundingBoxes.setup(Myron_BoundingBoxes.java:36)
at processing.core.PApplet.handleDraw(PApplet.java:1383)
at processing.core.PApplet.run(PApplet.java:1311)
at java.lang.Thread.run(Unknown Source)
---------------------------------------------------------------------------------------
I use processing on XP
Thanks
|
|
From: Reid C. <rc...@pa...> - 2008-12-03 19:38:20
|
Can I use Webcamxtra to create a short video with audio and save this as a .mpg or .avi file. I want to then email this file for someone to view. Thanks, Reid Carter |
|
From: 情報局 <q17...@ya...> - 2008-09-22 13:41:33
|
※完全無料サイトです ※あなたの携帯で直接やりとり・待ち合わせ交渉できちゃいます 色白で美乳(本人談)の女性会員様がログイン中です 「今からで良ければ会ってみませんか?写メも送っちゃうのでそれで判断してもらってもいいですよ♪夏前に彼氏と別れました、、、。だから新しい出会いが欲しいので登録しちゃいました。あたしは色白で体型は普通だと思います。胸は大きくないけど、カタチはいいと思います☆メルアド交換希望です!待ってるね☆」 他にも登録エリアが一致した女性会員の最新情報を完全無料にて選出男性へ紹介させて頂く事を目的としたサイトなので、自信を持って無料でご紹介をさせて頂きます。 http://gtx754.com/otu/?me=C93LM8698PRQ2F6HS9LFH7R8H9LHfq6f6Q6j3H8zaH2H2HkJ86sW8LNHg877PQH8688691H3SH3MDH5NHk6V7Y9 配信拒否はこちら no...@re... |
|
From: Minoru G. <ge...@ho...> - 2008-08-27 05:07:35
|
Yes Ithink it is very possible to utilize webcamxtra for multitouch and finger tracking. I've almost there for finger tracking. for other question I am not fully understand. Regards,> From: mat...@fa...> To: web...@li...> Date: Mon, 25 Aug 2008 12:25:38 -0700> Subject: [WebCamXtra/Myron] does webcamxtra work fine for multitouch?> > im new with webcamxtra, do you think is good for tracking finger for> multitouch?> > other question , which is the difference between tracking blobs and> recognizing them?> > thanks> > matias> -- > matias desouza> mat...@fa...> > -- > http://www.fastmail.fm - Access your email from home and the web> > > -------------------------------------------------------------------------> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge> Build the coolest Linux based applications with Moblin SDK & win great prizes> Grand prize is a trip for two to an Open Source event anywhere in the world> http://moblin-contest.org/redirect.php?banner_id=100&url=/> _______________________________________________> Webcamxtra-development mailing list> Web...@li...> https://lists.sourceforge.net/lists/listinfo/webcamxtra-development _________________________________________________________________ Manage multiple email accounts with Windows Live Mail effortlessly. http://www.get.live.com/wl/all |
|
From: matias d. <mat...@fa...> - 2008-08-25 19:25:48
|
im new with webcamxtra, do you think is good for tracking finger for multitouch? other question , which is the difference between tracking blobs and recognizing them? thanks matias -- matias desouza mat...@fa... -- http://www.fastmail.fm - Access your email from home and the web |
|
From: Fabrizio N. <fnu...@vr...> - 2008-07-24 16:21:25
|
Dear Myron community. Me and my team we are hardly working on a project relying on Myron through its JMyron/Processing interface. We are at the point to contribute on the project in terms of new features and optimizations, on both the C++ and Java sides. I indentified a set of attributes for which the "gets" are missing, some new functionalities, and many optimization points. In order to be up-to-date, I decided to work on the latest 030 svn snapshot. However, there are plenty of tracking bugs that were absent in the 025 binary distribution. I leave you the screenshots of a track of the same scene done with 025 and 030. In 030 there are always fake blogs filling the whole screen. Moreover, some globs have one of their vertices forced to 0,0. http://www.di.unito.it/~nunnarif/myron/track_Myron025.PNG http://www.di.unito.it/~nunnarif/myron/track_Myron030.PNG The question is: is the community active? Can we expect to see a svn commit with such bugs fixed? I have the expertise (and the time) to work on Java binding and optimization, but I cannot afford to debug the core tracking routines. Any feedback would be appreciated. regards, Fabrizio Nunnari P.S.: Forgive me if I sent this same mail to all the available mailing lists and message boards, but given the inactivity of the project I felt as I had to make some big noise to be heard ;-) |
|
From: Fabrizio N. <fnu...@vr...> - 2008-07-03 11:02:58
|
I'm trying to compile an svn snapshot of Myron (2nd July 2008, yesterday).
My system is an iBook G4, XCode2.5 (gc 4.0.1), OSX 10.4.
At a certain point, it fails linking. In particular:
g++ -g0 -O3 -I./extern/PortVideoSDL-0.3/common
-I./extern/PortVideoSDL-0.3/macosx -arch i386 -arch ppc -dynamiclib -o
libmyron_ezcam.so \
vdigGrab.o \
macsgCamera.o \
ezcam.o \
-framework Foundation \
-framework Carbon \
-framework ApplicationServices \
-framework Quicktime \
-framework Cocoa \
-framework GLUT
ld: Undefined symbols:
__keymgr_get_and_lock_processwide_ptr
__keymgr_get_and_lock_processwide_ptr_2
__keymgr_set_and_unlock_processwide_ptr
_calloc
_dlopen
_dlsym
_free
... and many more symbols (over 100)
any cue?
Is there any plan to distribute a new Binary build for Processing (I'm
using 0135)?
Thanks,
FN
|
|
From: venya k. <ma...@ve...> - 2008-01-08 01:57:03
|
Hi
I have just recently discovered this wonderful package and am trying
to begin using it. I have downloaded the package and installed it
following the instructions provided.
When I attempt to test it in Processing using the code provided:
import JMyron.*;
void setup(){
JMyron m = new JMyron();
println(m.version());
}
I get the following information in the print output:
Exception in thread "Thread-2" java.lang.UnsatisfiedLinkError: /
Applications/Processing 0135/libraries/JMyron/library/libJMyron.jnilib:
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1676)
at java.lang.Runtime.loadLibrary0(Runtime.java:822)
at java.lang.System.loadLibrary(System.java:992)
at JMyron.JMyron.<clinit>(JMyron.java:14)
I am running Processing v0135
I can't figure out what I have done wrong
could anyone point me in the right direction?
any help would be greatly appreciated
regards
venya
Venya Krutikov: Visuals | Events| venyakrutikov - Kazimier22
contact | ma...@ve... | +44775-228-9963
|
|
From: <st...@pi...> - 2007-10-12 01:10:11
|
An initial release of my V4L interface for JMyron is up at: http://piratestudios.com/v4ljmyron/v4ljmyron-20071011.tgz Comments, feedback and bug reports are welcome. Thanks, Steve > Heck, yeah, I'm in. I had done some brief hacking on V4L but hadn't > had much time to work on it -- maybe seeing yours will inspire me to > make any additional improvements, if I see an opportunity... :) > > I assume this should work on any hardware supported by V4L, or are > there specific things you'd be interested in having people test? > > Peter > > On 10/10/07, st...@pi... <st...@pi...> wrote: >> Hello, >> >> I've seen Linux support mentioned for JMyron in the past, but it does >> not >> look like there is support based on the current released source. I have >> a >> hacked up version of the released source that works with video for Linux >> that I'd be willing to cleanup and contribute back. I posted on the help >> discussion forum, but I realized this might be a more appropriate >> location. Is there any interest out there for this code? >> >> Thanks, >> >> Steve >> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and a browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> _______________________________________________ >> Webcamxtra-development mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/webcamxtra-development >> > |
|
From: Steve D. <st...@pi...> - 2007-10-11 03:16:30
|
Right now this should work with any V4L driver that can output in RGB24. Give me a day or so to clean up the code and then I'll post it. I'm using this within Processing and I have all of the JMyron examples working, but I'm sure if people start to use this things will come up that need fixing. The only camera I have right now is a PlayStation EyeToy, so testing with additional hardware would be a good thing, too. Steve Peter Kirn wrote: > Heck, yeah, I'm in. I had done some brief hacking on V4L but hadn't > had much time to work on it -- maybe seeing yours will inspire me to > make any additional improvements, if I see an opportunity... :) > > I assume this should work on any hardware supported by V4L, or are > there specific things you'd be interested in having people test? > > Peter > > On 10/10/07, st...@pi... <st...@pi...> wrote: >> Hello, >> >> I've seen Linux support mentioned for JMyron in the past, but it does not >> look like there is support based on the current released source. I have a >> hacked up version of the released source that works with video for Linux >> that I'd be willing to cleanup and contribute back. I posted on the help >> discussion forum, but I realized this might be a more appropriate >> location. Is there any interest out there for this code? >> >> Thanks, >> >> Steve >> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and a browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> _______________________________________________ >> Webcamxtra-development mailing list >> Web...@li... >> https://lists.sourceforge.net/lists/listinfo/webcamxtra-development >> |
|
From: ben c. <bc...@ar...> - 2007-10-11 00:23:04
|
yes please!! that would be fantastic. --ben chang saic/art and technology studies Quoting Peter Kirn <pet...@gm...>: > Heck, yeah, I'm in. I had done some brief hacking on V4L but hadn't > had much time to work on it -- maybe seeing yours will inspire me to > make any additional improvements, if I see an opportunity... :) > > I assume this should work on any hardware supported by V4L, or are > there specific things you'd be interested in having people test? > > Peter > > On 10/10/07, st...@pi... <st...@pi...> wrote: > > Hello, > > > > I've seen Linux support mentioned for JMyron in the past, but it does not > > look like there is support based on the current released source. I have a > > hacked up version of the released source that works with video for Linux > > that I'd be willing to cleanup and contribute back. I posted on the help > > discussion forum, but I realized this might be a more appropriate > > location. Is there any interest out there for this code? > > > > Thanks, > > > > Steve > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Webcamxtra-development mailing list > > Web...@li... > > https://lists.sourceforge.net/lists/listinfo/webcamxtra-development > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Webcamxtra-development mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webcamxtra-development > |
|
From: Peter K. <pet...@gm...> - 2007-10-10 22:19:29
|
Heck, yeah, I'm in. I had done some brief hacking on V4L but hadn't had much time to work on it -- maybe seeing yours will inspire me to make any additional improvements, if I see an opportunity... :) I assume this should work on any hardware supported by V4L, or are there specific things you'd be interested in having people test? Peter On 10/10/07, st...@pi... <st...@pi...> wrote: > Hello, > > I've seen Linux support mentioned for JMyron in the past, but it does not > look like there is support based on the current released source. I have a > hacked up version of the released source that works with video for Linux > that I'd be willing to cleanup and contribute back. I posted on the help > discussion forum, but I realized this might be a more appropriate > location. Is there any interest out there for this code? > > Thanks, > > Steve > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Webcamxtra-development mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webcamxtra-development > |
|
From: <st...@pi...> - 2007-10-10 22:12:51
|
Hello, I've seen Linux support mentioned for JMyron in the past, but it does not look like there is support based on the current released source. I have a hacked up version of the released source that works with video for Linux that I'd be willing to cleanup and contribute back. I posted on the help discussion forum, but I realized this might be a more appropriate location. Is there any interest out there for this code? Thanks, Steve |
|
From: Hugo S. <hugosg@u.washington.edu> - 2007-08-07 16:37:35
|
Hi, I just wonder how is the status of JMyron. I do not see any update, repply, or improvment in recent months. I am working in a Java Web Start application and it works great on my Mac PPC, but it is not working in Intel Mac. There are some comments about this on the forums but they are from June 2006 so I do not know if they apply to the current version of JMyron. cheers H |
|
From: bone <bo...@gm...> - 2007-06-19 16:39:57
|
Hi The things that I found is that you need WinVDIG but version 1.1, there are some issues with Java 6 and other versions of WinVDIG. Moreover you need QuickTime for Java. If you use a QuickTime 7.x is installed by default for older versions you need to choose custom install and select QuickTime for Java. Moreover I have found somewhere that this version of QuickTime works with that version of WinVDIG (i dont remember exactly what), but this things they didn't work for me. To sum-up I use QuickTime 7.1 WinVDIG 1.1 and the latest Java and almost everything works pretty ok. Cheers bone On 6/19/07, mk77 <ind...@to...> wrote: > > > Hi, > > I have blue screen too while running a test script of the latest version > of > JMyron in Processing 124, under XP ServicePack2. The camera is a usb > Logitech Quickcam for Notebooks Deluxe, which works well with his own > software of course. WinVDIG has problems too detecting this camera, which > nevertheless has already worked with Jmyron+Processing on another > environment (but with the same XP installed). Maybe with a older version > of > processing? > > Thanks for any possible help, > > Mark Dagger > > > > altern wrote: > > > > hi > > > > just trying out latest version of Myron with Director MX and MX 2004 on > > XP Pro SP2. I get windows blue screen error (!) in both MX and MX2004 > > with the helloworld example. > > > > I tried line by line in director message window and the first time it > > just crashed director (fatal error. director will quit) after I tried to > > webcam.update() . Second time blue screen just after > > webcam.start(150,120). Put webcam returns valid webcamxtra child. <Xtra > > child "webcamxtra" 2 23ae18> > > > > I am using a USB logitech Quickcam camera that runs fine with PD+Gem via > > a USB 1 port. > > > > any ideas about the reason for this? > > > > enrike > > > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > Webcamxtra-development mailing list > > Web...@li... > > https://lists.sourceforge.net/lists/listinfo/webcamxtra-development > > > > > > -- > View this message in context: > http://www.nabble.com/blue-screen-error-on-XP-tf3805294.html#a11197578 > Sent from the webcamxtra-development mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Webcamxtra-development mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webcamxtra-development > |
|
From: mk77 <ind...@to...> - 2007-06-19 15:53:54
|
Hi, I have blue screen too while running a test script of the latest version of JMyron in Processing 124, under XP ServicePack2. The camera is a usb Logitech Quickcam for Notebooks Deluxe, which works well with his own software of course. WinVDIG has problems too detecting this camera, which nevertheless has already worked with Jmyron+Processing on another environment (but with the same XP installed). Maybe with a older version of processing? Thanks for any possible help, Mark Dagger altern wrote: > > hi > > just trying out latest version of Myron with Director MX and MX 2004 on > XP Pro SP2. I get windows blue screen error (!) in both MX and MX2004 > with the helloworld example. > > I tried line by line in director message window and the first time it > just crashed director (fatal error. director will quit) after I tried to > webcam.update() . Second time blue screen just after > webcam.start(150,120). Put webcam returns valid webcamxtra child. <Xtra > child "webcamxtra" 2 23ae18> > > I am using a USB logitech Quickcam camera that runs fine with PD+Gem via > a USB 1 port. > > any ideas about the reason for this? > > enrike > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Webcamxtra-development mailing list > Web...@li... > https://lists.sourceforge.net/lists/listinfo/webcamxtra-development > > -- View this message in context: http://www.nabble.com/blue-screen-error-on-XP-tf3805294.html#a11197578 Sent from the webcamxtra-development mailing list archive at Nabble.com. |
|
From: altern <al...@gm...> - 2007-05-23 16:58:45
|
hi just trying out latest version of Myron with Director MX and MX 2004 on XP Pro SP2. I get windows blue screen error (!) in both MX and MX2004 with the helloworld example. I tried line by line in director message window and the first time it just crashed director (fatal error. director will quit) after I tried to webcam.update() . Second time blue screen just after webcam.start(150,120). Put webcam returns valid webcamxtra child. <Xtra child "webcamxtra" 2 23ae18> I am using a USB logitech Quickcam camera that runs fine with PD+Gem via a USB 1 port. any ideas about the reason for this? enrike |