How save the image using strcat ?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Oman Wisni
el 20 de En. de 2019
Editada: Oman Wisni
el 20 de En. de 2019
Hi, I want save my Image in folder there is include the name of image using strcat, I try but error ?
here my function :
function out = uji(fname)
im=imread(fname);
outdir = 'Image Result';
mkdir(outdir);
imwrite (strcat(fname(im(outdir, '1_ori.bmp'))));
out = im;
Could help me please ? thank you
2 comentarios
Stephen23
el 20 de En. de 2019
This does not make much sense:
im(outdir, '1_ori.bmp')
If im is an image array, why are you trying to index into it using two chracter vectors?
fname(im(outdir, '1_ori.bmp'))
If fname is a character vector or a string, why are you trying to indexing into it using an image array?
strcat(fname(im(outdir, '1_ori.bmp')))
What are you concatenating together? (There is only one input argument, so you concatenate one thing ... with nothing else).
Respuesta aceptada
madhan ravi
el 20 de En. de 2019
doc sprintf
3 comentarios
Guillaume
el 20 de En. de 2019
Do not use strcat to build paths. Always use fullfile that is guaranteed to use the correct path separator regardless of which OS you use.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!