我在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)for更多信息 –
matlab編碼器很貴。我想opencv是唯一的選擇。不管怎麼說,還是要謝謝你。 – Harshita