私はMatlabで書かれた画像処理機能を持っています。私は実行可能ファイルに変換して、他のアプリケーションでその関数を使用できるようにします。 Matlabコーダーを試しましたが、試用版を使用しているので、Matlabコーダーはありません。何ができますか? Octaveで書かれた同じコードを実行可能ファイルに変換できますか?Matlab/Octaveコードを実行可能ファイルに変換する
img2=rgb2gray(i1);
imshow(img2);
img3=imtophat(img2,strel('disk',15));
img4=imadjust(img3);
layer=img4(:,:,1);
img5=layer>100 & layer<250;
img6=imfill(img5,'holes');
img7=bwareaopen(img6,5);
[L,ans]=bwlabeln(img7);
imshow(img7);
I=imread(i1);
Ians=CarDentIdentification(I);
% Display the original image and the segmented image side-by-side.
imshowpair(I,Ians,'montage')
いいえ、GNU Octaveではありません – Andy
[こちら](https://stackoverflow.com/questions/3843522/how-do-i-create-a-simple-octave-distributable-without-installing-octave) more info –
matlabコーダーは高価です。 opencvが唯一のオプションだと思います。とにかくありがとう。 – Harshita