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

1 回表示 (過去 30 日間)
Tejasvee Bisen
Tejasvee Bisen 2021 年 11 月 15 日
回答済み: yanqi liu 2021 年 11 月 26 日
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

回答 (1 件)

yanqi liu
yanqi liu 2021 年 11 月 26 日
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

カテゴリ

Help Center および File ExchangeImage Segmentation and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by