How to make certain indexes of a cell array empty?
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm currently trying to write an image compression algorithm (I know this already exists in Matlab but this is for a course), and wondering if Matlab has functionality to input certain elements of a cell array as "empty". In Python and C# what I would do is set it to None/null, but I found that Matlab has no equivalent. Here is my current code where I would like to implement this:
if (y + by > imgHeight) || (x + bx > imgWidth)
pixelBlock{by + 1, bx + 1} = [-1, -1, -1]; % empty values here instead of -1
else
R = img(x + bx, y + by, 1);
G = img(x + bx, y + by, 2);
B = img(x + bx, y + by, 3);
pixelBlock{by + 1, bx + 1} = [R, G, B];
end
I'm blocking the image into 4x4 squares, but if a 4x4 square runs out of the bounds of the image I would like to put the pixel values as some sort of empty, where it can later be decoded and the program can ask (if pixel empty, skip).
Is this possible?
0 Kommentare
Akzeptierte Antwort
Voss
am 30 Nov. 2022
pixelBlock{by + 1, bx + 1} = [];
1 Kommentar
Voss
am 30 Nov. 2022
or, equivalently:
pixelBlock(by + 1, bx + 1) = {[]};
But NOT:
pixelBlock(by + 1, bx + 1) = [];
because that attempts to remove the element pixelBlock(by + 1, bx + 1).
Example:
C = {1 2; 3 4} % 2-by-2 cell array
% set element 1,2 to the empty array, using {} indexing
C{1,2} = []
% set element 2,1 to the empty array, using () indexing
C(2,1) = {[]}
Another example (of the wrong thing, in this case):
C = {1 2 3 4} % 1-by-4 cell array
% remove element 1 (not what you want)
C(1) = []
Weitere Antworten (1)
the cyclist
am 30 Nov. 2022
Here are a couple ways:
% Make up a cell array of pixelBlock
pixelBlock = {'2','3','5',7; 11, 13, '17', '19'}
% Replace a few cells with empty
pixelBlock(1,2:4) = cell(1,3)
% Replace a couple more, in a different way
pixelBlock(2,1:2) = {[],[]}
Note that one needs to be careful about when one uses parentheses vs. curly brackets.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!