基本的に、私は、JaveGUIからMATLABで呼び出しを行えるようにする小さなプログラムを作成しようとしています。
これは主に画像の操作とぼかし除去に使用されますが、Java側から完全なMATLAB制御を効果的に提供する方法を見つけるのに苦労しています。
私はそれがそのように機能することを望んでいます:
{
//create matlab execution call
String loadImage = " image1 = imread ('imageOnComputer.jpg'); ";
//send instruction to matlab and save the path to it so java can
//use the newly created variable
resultingVariablePath = java.sendInstructionToMatlab(loadImage);
//display on the screen
java.displayImage(resultingVariablePath);
}
基本的に、私は、matlabを(ほぼ)完全に制御できるmatlab用のプラグイン(またはいくつかのjavaパッケージ)があるかどうかを調べようとしています。