You can use ismember() to select blobs to extract based on their label number
labeledImage = bwlabel(binaryImage);
% Get rid of blobs # 1, 3, and 5
newBinaryImage = ismember(labeledImage, [1,3,5]) > 0;
Or you can use the bwselect() function. See its documentation.