Skip to content
Snippets Groups Projects
Commit eab3c817 authored by Nicola Vigano's avatar Nicola Vigano
Browse files

Figures: fixed copy&pasto

parent 13c26724
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ function [f, ax] = gtFigureCreateFromPicture(img, mask, varargin)
clims_img = [conf.clims(1), min(conf.clims(2), max(img(:)))];
end
img_size = [size(final_slice_RGB, 2), size(final_slice_RGB, 1)];
img_size = [size(img, 2), size(img, 1)];
f = figure();
ax = axes('parent', f);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment