function I_rgb = ShowEnlargedRectangle(I, LeftUpPoint, RightBottomPoint, Enlargement_Factor, LineWidth, gap)
% example I_rgb = ShowEnlargedRectangle(I, [10,20], [50,60], 1.5, 1)
if size(I,3)==1
I_rgb(:,:,1) = I;
I_rgb(:,:,2) = I;
I_rgb(:,:,3) = I;
else
I_rgb = I;
end
if ~exist('LineWidth','var')
LineWidth = 1;
end
if ~exist('Enlargement_Factor','var')
Enlargement_Factor = 1.5;
end
if ~exist('gap','var') %离左下方距离
gap = 1;
end
%% 画矩形
I_rgb = DrawRectangle(I_rgb, LeftUpPoint, RightBottomPoint, LineWidth);
%% 提取矩形区域内图像
UpRow = LeftUpPoint(1);
LeftColumn = LeftUpPoint(2);
BottomRow = RightBottomPoint(1);
RightColumn = RightBottomPoint(