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

1 view (last 30 days)
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

Answers (1)

yanqi liu
yanqi liu on 26 Nov 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

Community Treasure Hunt

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

Start Hunting!