Clear Filters
Clear Filters

How to save set of images as logical images (0 and 1)

2 views (last 30 days)
Image_Blocks is a 1x663 structure array with 32x32 image blocks and in logical format (0 and 1).
I want to save the output as logical image but the code output keeps giving me the images in 0-255 (8bits).
Kindly assist.
Thanks
for Block_Index = 1: length(Image_Blocks)
imwrite(Image_Blocks(Block_Index).Blocks,fullfile(path1, File_Prefix + "_" + num2str(Block_Index) + ".jpg"));
end

Accepted Answer

KSSV
KSSV on 19 Oct 2022
Try converiting logicals into double using double.

More Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!