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
AddPartFace2TotalFace.m
function new_total_f = AddPartFace2TotalFace(total_f, part_f)
max_point = max(total_f(:));
if isempty(max_point)
new_total_f = [total_f; part_f];
else
part_f = part_f + max_point;
new_total_f = [total_f; part_f];
end
end