필터 지우기
필터 지우기

How to convert my gui program to an exe file?

조회 수: 71 (최근 30일)
Yucel
Yucel 2011년 2월 23일
편집: per isakson 2018년 3월 15일
How to convert my gui program to an exe file? I have Matlab 2010b and my operating system is 32-bit. The same question asked newly and someones said that you could use "deploytool". How can i use it? I'll wait for your answers...
  댓글 수: 2
Walter Roberson
Walter Roberson 2011년 2월 23일
Do you have a license for the Matlab compiler?
Are you using Windows?
Which compiler do you have installed? Only some very specific compilers are supported.
Yucel
Yucel 2011년 2월 23일
I use windows 7. How can i understand which compiler i have?

댓글을 달려면 로그인하십시오.

채택된 답변

Matt Tearle
Matt Tearle 2011년 2월 23일
  1. Make sure you have MATLAB Compiler and a supported C compiler
  2. Run the command mbuild -setup to select your C compiler
  3. Enter deploytool to open the deployment tool window; create a new project at the prompt
  4. Under the "build" tab, click the links "add main file" and "add files/directory" and add your MATLAB GUI code files (and data files, if necessary)
  5. Click the "build" button.
  댓글 수: 2
Yucel
Yucel 2011년 2월 23일
Thank you Matt...
S. Gopal
S. Gopal 2015년 7월 23일
But Matt when I tried this there is the error like this what's the problem ? Please help... >> mbuild -setup
Welcome to mbuild -setup. This utility will help you set up a default compiler. For a list of supported compilers, see http://www.mathworks.com/support/compilers/R2013a/win32.html
Please choose your compiler for building shared libraries or COM components:
Would you like mbuild to locate installed compilers [y]/n? y
No supported SDK or compiler was found on this computer. For a list of supported compilers, see http://www.mathworks.com/support/compilers/R2013a/win32.html
Error using mbuild (line 189) Unable to complete successfully.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

UTHM
UTHM 2011년 9월 29일
편집: Walter Roberson 2016년 12월 15일
Hi.
I am new in matlab. I have window XP and and 2009 Matlab I have tried the command mbuild and I got 2 options:
[1] Lcc-win32 C 2.4.1 in C:\PROGRA~1\MATLAB\R2009b\sys\lcc
[0] None
Compiler:
I choose 1 and then I got error.
Trying to update options file: C:\Documents and Settings\user\Application Data\MathWorks\MATLAB\R2009b\compopts.bat
From template: C:\PROGRA~1\MATLAB\R2009b\bin\win32\mbuildopts\lcccompp.bat
Done . . .
Usage:
MBUILD [option1 ... optionN] sourcefile1 [... sourcefileN]
[objectfile1 ... objectfileN] [libraryfile1 ... libraryfileN]
[exportfile1 ... exportfileN]
Use the -help option for more information, or consult the MATLAB Compiler
User's Guide.
C:\PROGRA~1\MATLAB\R2009B\BIN\MEX.PL: Error: No file names given.
??? Error using ==> mbuild at 191 Unable to complete successfully.
Could you tell me what should I do?
Thanks.
  댓글 수: 5
UTHM
UTHM 2011년 9월 29일
thank you very much.
It is building, but does it take long time?
more than 10 minutes has passed...
Praveen Hashantha
Praveen Hashantha 2016년 12월 15일
편집: Praveen Hashantha 2016년 12월 15일
remove unnecessary tool boxes from the settings in the deploytool. your code probably uses unnecessary toolboxes. go to settings->Toolboxes on Path, and uncheck the stuff you don't need. Building process will be faster afterwards

댓글을 달려면 로그인하십시오.


talel kchih
talel kchih 2018년 3월 14일
편집: per isakson 2018년 3월 15일
I have a MATLAB code on the script and I have turned into a guide, I have some problem ?? is it possible to help me ??
clear all;
close all
clc
grayImage = imread('img1.jpg');
[rows columns numberOfColorBands] = size(grayImage);
if numberOfColorBands > 1
grayImage = rgb2gray(grayImage);
end
I3=double(grayImage)/255;
subplot(3, 3, 1);
imshow(grayImage, []);
title('Original Grayscale Image');
set(gcf, 'Position', get(0,'Screensize'));
set(gcf,'name','Demo by ImageAnalyst','numbertitle','off')
[pixelCount grayLevels] = imhist(grayImage);
subplot(3, 3, 2);
bar(pixelCount);
title('Histogram of original image');
xlim([0 grayLevels(end)]);
binaryImage = grayImage < 150;
subplot(3, 3, 3);
imshow(binaryImage, []);
title('Binary Image');
binaryImage = imclearborder(binaryImage);
subplot(3, 3, 4);
imshow(binaryImage, []);
title('Border cleared');
I2=~binaryImage;
se=strel('disk',3);
I2=imerode(I2,se);
subplot(3,3,5),imshow(I2);
%bw = im2bw(grayImage); % conversion dans une image binaire - fonction im2bw
II = im2double(I2);
Label = bwlabel(II);
E = regionprops(Label,'Area');
[pasbesoin,idx] = sort([E.Area],'descend');
Lbw= Label==idx(2);
figure,imshow(Lbw)
imgf=Lbw.*I3;
figure,imshow(imgf);i;

카테고리

Help CenterFile Exchange에서 C Shared Library Integration에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by