-
Notifications
You must be signed in to change notification settings - Fork 75
/
U1_SaveGlasnerResult.m
51 lines (47 loc) · 1.85 KB
/
U1_SaveGlasnerResult.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
% Copyright 2010 Chih-Yuan Yang, Jia-Bin Huang, and Ming-Hsuan Yang
%
% Licensed under the Apache License, Version 2.0 (the "License");
% you may not use this file except in compliance with the License.
% You may obtain a copy of the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS,
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
% See the License for the specific language governing permissions and
% limitations under the License.
%Chih-Yuan Yang, EECS, UC Merced
%2013/2/23
%for release v1.1
function U1_SaveGlasnerResult(AllLayers,Para, IQLayer)
if Para.Zooming == 3
LayerIdx_I0 = 6;
BuildLayerNum = 5;
elseif Para.Zooming == 4
LayerIdx_I0 = 8;
BuildLayerNum = 7;
else
error('scaling factor not supported');
end
img_input_y = AllLayers(LayerIdx_I0).GridAsHighLayer;
HighImage = AllLayers(1).GridAsHighLayer; %this if only for y channel
[input_h, input_w] = size(img_input_y);
ExactHeight = input_h * Para.Zooming;
ExactWidth = input_w * Para.Zooming;
Scale = AllLayers(1).TrueHeight / ExactHeight;
GauVar = Para.B_GauVar * log(Scale) /( BuildLayerNum * log(1.25));
ExactY = GenerateSubSampleImage(HighImage, ExactHeight, ExactWidth , Scale, GauVar);
if ~isempty(IQLayer)
%restore the color information
IQLayer_high = imresize(IQLayer, [ExactHeight ExactWidth]);
ReconYIQ = ExactY;
ReconYIQ(:,:,2:3) = IQLayer_high;
ReconRGB = YIQ2RGB(ReconYIQ);
OutputImage = ReconRGB;
else
OutputImage = ExactY;
end
SaveFileName = fullfile(Para.TempDataFolder, [Para.SaveName '_Glasner.png']);
imwrite( OutputImage , SaveFileName );
end