Borrar filtros
Borrar filtros

Error while performing the operation but not while reading the images in folders.

1 visualización (últimos 30 días)
While just reading the images its working fine but while doing encode operation its throwing error. But the encode operation is working fine for single images. Please help me where i am doing wrong.
function ret()
myfolder = ('D:\imagesa\**');
filePattern = fullfile(myfolder, '*.tif');
theFiles = dir(filePattern);
for k =1 : length(theFiles)
%baseFileName = theFiles(k).name;
fullFileName = fullfile(theFiles(k).folder,theFiles(k).name);
fprintf(1, 'Now reading %s\n', fullFileName);
i = imread(fullFileName);
encode_HTJ2K(fullFileName,i,1);
end

Respuestas (1)

yanqi liu
yanqi liu el 26 de Nov. de 2021
sir,may be upload encode_HTJ2K.m to do some analysis
or check the image dim if ask for gray image,please use rgb2gray to make it to gray

Categorías

Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by