inputdlg string and convert variable to string

Hello, I'm trying to achieve the following:
I need an input dialog box to open and type in a string. For example rock. Then I want rock to be a string (and not 'rock' with apostrophes) Because then rock can be recognized in the second line of code.
image = inputdlg('Enter file name!')
mask = tga_read_image([image '.mask.tga']);
I also tried to convert the variable image to a string, but that didn't work.
Can anybody help me? Cheers, Jonas.

 Risposta accettata

Stephen23
Stephen23 il 21 Giu 2017
Modificato: Stephen23 il 21 Giu 2017
You should start by actually reading the documentation of the functions that you are using. If you had done this then you would have learned that inputdlg's "returned variable answer is a cell array containing one answer per text entry field, starting from the top of the dialog box."
So you can simply access the contents of that cell array, giving you:
C = inputdlg('Enter file name!');
mask = tga_read_image([C{1},'.mask.tga']);
Even better would be to use uigetfile or uiputfile.

4 Commenti

I tried using the uigetfile. The problem was that there was always the .m or .jpg attached. I just wanted the file name without its ending.
Any suggestions?
Use fileparts to get the filename without the extension:
[pathstr,name,ext] = fileparts(filename)
You should also use sprintf to generate the new name (not concatenation):
newname = sprintf('%s.mask.tga',name);
tga_read_image(newname);
Why is it not possible to simply browse to the .tga file directly?
filename = uigetfile('*.txt');
[pathstr,filename,ext] = fileparts(filename);
newname = sprintf('%s.mask.tga',filename)
tga_read_image(newname);
got it, thank you! i need the reference for multiple file formats with all the same name (img1.txt img1.mask.tga img1.1.tga img1.2.tga and so on)
@Jonas K: good work. And for a final improvement you could also use fullfile to generate the complete filepath:
[filename,pathstr] = uigetfile('*.txt');
[~,filename] = fileparts(filename);
newname = sprintf('%s.mask.tga',filename);
newpath = fullfile(pathstr,newname);
tga_read_image(newpath);
The advantage is that the code will correctly process that file regardless of what folder it is in (i.e. your code and the files you are processing do not need to be all in the same folder).

Accedi per commentare.

Più risposte (2)

The single quotes will appear in the output because the value is a character array. It will work if you use cell array indexing to return the character array from the cell:
imgstr = inputdlg('Enter file name! ');
imgname = imgstr{:}
test_output = [imgname '.mask.tga']
imgname =
'rock'
test_output =
'rock.mask.tga'
Also, please do not use ‘image’ as a variable name. It is the name of a built-in MATLAB function that you may need later, and won’t be able to use because you will have ‘overshadowed’ it.

2 Commenti

thank you, and i will. always learning:)
My pleasure!

Accedi per commentare.

I combined both answers now.
img = uigetfile('./psmImages/*.txt');
img = strrep(img,'.txt','')
mask = tga_read_image([img '.mask.tga']);
Thanks everybody.

1 Commento

Using strrep to remove the file extension like that is not robust code. Consider this filename:
A.txt-2.txt
A much better way to remove the extension is to use the tool that is designed exactly for that purpose, which I showed you in a comment to my answer. Using the correct tool for a task makes your code clearer, less buggy, easier to understand,... and that is why any tool exists.
Also note that sprintf is preferred to string concatenation for generating filenames.

Accedi per commentare.

Categorie

Scopri di più su Scripts in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by