Filter löschen
Filter löschen

why the output image lines are doubled?

2 Ansichten (letzte 30 Tage)
sali
sali am 21 Nov. 2018
Kommentiert: sali am 22 Nov. 2018
Dear all
I have the following image1 as an input for my code,
The code is:
load('matlab')
mdl = 'TwoVoltsTanhtestmodel2';
rgbImage = imread('/home/salibensuleiman/Documents/MATLAB/Escher/Escher/image1.png');
[rows, columns, numberOfColorChannels] = size(rgbImage);
if numberOfColorChannels > 1
grayImage = rgbImage(:, :, 1); % Take red channel.
else
grayImage = rgbImage; % It's already gray scale.
end
binaryImage = grayImage < 128;
subplot(2, 2, 2);
imshow(binaryImage, []);
.
.
.
The rest of the code is a parallel processing for this image which I did not include it here for simplicity.
The output image is attached.
image1-testscript23DifferentImgBinarize.jpg
I noticed the lines are doubled although my code is just checking the pixels one by one if the neighbours are for example 1 they keep it one otherwise change it to zero.
  4 Kommentare
Image Analyst
Image Analyst am 22 Nov. 2018
I did NOT notice that there were doubled. Like I said, all I see is the input image.
I can't even run your code now without the MATLAB.MAT file. Please attach it.
sali
sali am 22 Nov. 2018

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by