https://github.com/reproducibilitystamp/dataset-processing
Tip revision: 36fbb80f231a8a564a730b8ad7d2787491b2a696 authored by acarlier on 20 May 2016, 09:34:24 UTC
- comments added
- comments added
Tip revision: 36fbb80
plotAllShapesAnnotations.m
function plotAllShapesAnnotations(shape,annotations,layout)
figure;
for i = 1:length(annotations)
subplot(layout(1),layout(2),i)
displayShape(shape,annotations{i})
drawnow
end
end