https://github.com/gaolinorange/SDMNET_stamp
Tip revision: 5208f1210b77e3251dde3bdafc120a48dc69e833 authored by wutong on 27 March 2021, 07:58:47 UTC
Update ReconstructFromCodeMixIntegerReadingObjinAdvance.m
Update ReconstructFromCodeMixIntegerReadingObjinAdvance.m
Tip revision: 5208f12
removeoutliner.m
function pcout=removeoutliner(pc)
x=pc(:,1);
y=pc(:,2);
z=pc(:,3);
tfx=isout(x);
tfy=isout(y);
tfz=isout(z);
isouta=any([tfx,tfy,tfz],2);
pcout=pc(~isouta,:);
end