Here are some JMyron problems and my solutions, hopefully others can read this and have an easier time getting JMyron to work on a PC. I am running JMyron 0025, Processing 0115, and Windows XP.
Solution: Went here
http://webcamxtra.sourceforge.net/download.shtml
and
downloaded JMyron0025. PC specific fixes were added in version 0025, so
make sure to upgrade to 0025. Okay, then I opened up JMyron0025 folder. It
contains 4 items: text document "How to install.txt"
, folder "JMyron"
,
folder "JMyron"
folder "JMyron Examples"
, folder "Extra DLL's"
.
I followed
the steps in the install guide; this entailed the following:
"myron_ezcam.dll not found"
Solution: Need to drag the extra dlls into windows/system. (see above). Also, you probably need to restart processing.
Solution: The parameters passed to size()
are incorrect. The size function
is probably called like this: size(320, 240)
, but your camera does not
support this resolution. What you need to do is find out your camera's
resolution through one of the following methods:
size(320, 240)
to size(352, 288)
and you should be fine.
"Myron_fasterSimpleCamera"
. Is it running? It's
probably still scrambled but that's ok. Look in the processing output
console (that black area at the bottom of the processing window) and read
off your camera's "forced dimensions." These are the parameters you must
pass to size()
to get a clear image.