Euglena control applet
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
jan 96358cbf1a stop being embarrasing in the readme 7 년 전
.idea Add more comments 7 년 전
lib Calibrate works? 8 년 전
src Add mouseDragged handler and add code for freehand drawing and erasing 7 년 전
.gitignore Wrote some comments and added compile instructions to the readme 7 년 전
LICENSE.md Added GPL license 8 년 전
README.md stop being embarrasing in the readme 7 년 전
processing-intellij.iml Start javaifying 8 년 전

README.md

Euglena control applet

This is intended for use with euglena projector + microscope systems as developed by the Riedel-Kruse lab.

Written in Java and using the Processing 3 library

I (Jan Peykiewicz, anewusername at gmail) wrote this version in mid-2016, but don't really work on this project...

I haven't tested the below commands on windows, but they should be direct translations of the linux commands (which do work).

Features

  • Multiple windows (so that moving the control window around doesn't move what's on the projector.
  • Drawing using primitive shapes (lines, ellipses) and arbitrary colors.
  • Freehand drawing and erasing

Compiling

You'll need a recent JDK (eg. 1.8).

On linux,

cd src/
javac -cp .:../lib/*:../lib/video/library/*:../lib/serial/library/*:../lib/opencv_processing/library/* EuglenaApplet.java

On windows,

cd src\
javac -cp .;..\lib\*;..\lib\video\library\*;..\lib\serial\library\*;..\lib\opencv_processing\library\* EuglenaApplet.java

Running

On linux,

cd src/
java -cp .:../lib/*:../lib/video/library/*:../lib/serial/library/*:../lib/opencv_processing/library/* EuglenaApplet

On windows,

cd src\
java -cp .;..\lib\*;..\lib\video\library\*;..\lib\serial\library\*;..\lib\opencv_processing\library\* EuglenaApplet

Cleanup

On linux, rm src/*.class

On windows, del src\*.class

Troubleshooting

If everything goes dark when you start the program, try alt-tab to switch between windows, it probably just fullscreened a black window.