SlideShare a Scribd company logo
1 of 8
Download to read offline
1
Muhammad Irsyadi Firdaus
P66067055
Homework 3
The turbidity (TB) varies with time and space in the reservoir. In this homework, the
regression estimated water quality based on a satellite image dataset. Then, the
turbidity is modeled with linear least squares regression (LR), and geographically
weighted regression (GWR). Which one is the better? You can select one or two
observations for validation.
In the homework, please finish the task for TB mapping.
1. Prepare the data (location x, location y, turbidity from observation; R, G, B
reflectance from satellite images).
2. Model by the linear regression,
and GWR:
𝑌𝑖 = 𝛽0(𝑢𝑖, 𝑣𝑖) + ∑ 𝛽 𝑘(𝑢𝑖, 𝑣𝑖)𝑋𝑖𝑘 + 𝜀𝑖𝑘 (1)
3. TB mapping
Firstly, coefficients are interpolated considering IDW. Since R, G, B reflectance
and coefficients are known, TB can be obtained.
Data including image file (R, G, and B reflectance) and obs.xls (10 observation data)
can be download from
https://mybox.ncku.edu.tw/navigate/s/8C86FC7A82B2428BBBADA963E2434D0
9GSY
Code is available from:
http://www.spatial-econometrics.com/spatial/gwr_models/gwr.m
Answers
1. Prepare the data (location x, location y, turbidity from observation; R, G, B
reflectance from satellite images).
Table 1. Location x, location y, turbidity from observation
X Y Z (TB Value)
203,006 2,571,625 5.4
204,510 2,571,700 3.6
204,341 2,572,172 3.2
204,314 2,573,547 4.7
206,351 2,577,336 5.1
208,939 2,578,944 8.1
2
Muhammad Irsyadi Firdaus
P66067055
208,258 2,578,681 5.4
206,745 2,575,800 4.6
204,854 2,574,015 2.7
202,857 2,571,566 4.4
 R, G, B reflectance from satellite images
To get RGB value and row column value, I use ENVI software. So get the
value as below.
Table 2. RGB value
Red Green Blue
1.1522 2.1010 1.1610
1.1522 2.1010 1.1259
1.1012 1.9714 1.1142
1.1012 2.0038 1.1259
1.1522 2.1334 1.1610
1.3817 2.5870 1.3131
1.2542 2.3926 1.2546
1.1522 2.1334 1.1376
1.1012 2.0038 1.1259
1.1777 2.0686 1.1727
Table 3. Row and Column Value
Column Row
888 4837
1640 4800
1555 4564
1542 3876
2560 1982
3854 1178
3514 1309
2. Model by the linear regression, and GWR
Geographically weighted regression (GWR) is an exploratory technique
mainly intended to indicate where non-stationarity is taking place on the map, that
is where locally weighted regression coefficients move away from their global
values. On the linear regression model using 10 point samples and obtained linear
parameters as in the table below.
Code Linear Regression using MatLAB
3
Muhammad Irsyadi Firdaus
P66067055
Tabel 4. Linear Parameters
𝜷 𝟎 -14.8214548000326
𝜷 𝟏 7.31199506006149
𝜷 𝟐 1.15664710908197
𝜷 𝟑 7.25380884793830
Tabel 5. Result of regression linear model
Points
Turbidity Value
(Linear Regression)
TB
Observation
The difference
point value
1 4.45521355680786 5.4 0.944786443
2 4.20060486624522 3.6 0.600604866
3 3.59292208932419 3.2 0.392922089
4 3.71526701917932 4.7 0.984732981
5 4.49268892314211 5.1 0.607311077
6 7.79875124387722 8.1 0.301248756
7 6.21727185810946 5.4 0.817271858
8 4.32294979610036 4.6 0.277050204
9 3.71526701917932 2.7 1.015267019
10 4.68906362802605 4.4 0.289063628
Geographically Weighted Regression (GWR) Model
Y = 𝛽0 + 𝛽1 ∗ R + 𝛽2 ∗ G + 𝛽3 ∗ B + Residual
Or
4
Muhammad Irsyadi Firdaus
P66067055
𝑌𝑖 = 𝛽0(𝑢𝑖, 𝑣𝑖) + ∑ 𝛽 𝑘(𝑢𝑖, 𝑣𝑖)𝑋𝑖𝑘 + 𝜀𝑖
𝑘
Code GWR Parameters using MatLAB
Table 6. Beta values on each points
Number Residual
1 -17.7586 -4.7319 3.2761 17.9845 0.8475
2 -17.9070 -4.9393 3.3681 18.1482 -0.3114
3 -17.7966 -4.7354 3.3677 17.8495 -0.3159
4 -17.8423 -5.2326 3.7392 17.7107 0.8712
5 -11.4069 16.4338 0.4352 -3.4458 0.6439
6 -12.0015 17.6359 -0.2099 -2.9730 0.1810
7 -11.9806 17.3069 -0.1089 -2.8454 -0.4950
8 -11.7158 12.6489 1.6192 -1.5858 0.0913
9 -17.5399 -4.68864 3.9779 16.4639 -1.1046
10 -17.797119 -4.8620 3.2949 18.1144 -0.1356
Table 7. Result of GWR regression model
Number Turbidity Value
(GWR Regression)
TB
Observation
1
5.400 5.4
2
3.600 3.6
3
3.200 3.2
4
4.700 4.7
5
5.100 5.1
5
Muhammad Irsyadi Firdaus
P66067055
6
8.100 8.1
7
5.400 5.4
8
4.600 4.6
9
2.700 2.7
10
4.400 4.4
The turbidity is modeled with linear least squares regression (LR), and
geographically weighted regression (GWR). After comparing the results between linear
least squares regression (table 5) and geographically weighted regression (GWR)
results in Table 7, the best result for calculating the turbidity (TB) varies is the
geographically weighted regression (GWR) method because it has the same value as
TB Observation.
3. Turbidity Mapping
Code Turbidity Mapping using MatLAB
IMGBlue = imread('D:My DataSemester 1Spatial Enviromental Data
Analysis And ModelHW320090903BLUE_20090903_RN_Tiff.tif');
IMGGreen = imread('D:My DataSemester 1Spatial Enviromental Data
Analysis And ModelHW320090903GREEN_20090903_RN_Tiff.tif');
IMGRed = imread('D:My DataSemester 1Spatial Enviromental Data
Analysis And ModelHW320090903Red_20090903_RN_Tiff.tif');
TH = imread('D:My DataSemester 1Spatial Enviromental Data Analysis
And
ModelHW3NDWI_Mask_20090903NDWI_Mask_20090903NDWI_Mask_20090903_RN
_Tiff.tif');
SX=size(IMGBlue);
% Sampling
RGB1 = RGB(1:10,:);
XYZ1 = XYZ(1:10,:);
RowColumn1 = RowColumn(1:10,:);
% GWR
I = ones(10,1);
A(:,1) = I;
A(:,2) = RGB1(:,1);
A(:,3) = RGB1(:,2);
A(:,4) = RGB1(:,3);
res = gwr(XYZ1(:,3),A,RowColumn1(:,1),RowColumn1(:,2));
6
Muhammad Irsyadi Firdaus
P66067055
% Parameters
Beta = res.beta;
Residual = res.resid;
% Cropping area
R = zeros(SX(1),SX(2));
G = zeros(SX(1),SX(2));
B = zeros(SX(1),SX(2));
for i =1:SX(1)
for j=1:SX(2)
if TH(i,j)==1
R(i,j)=IMGRed(i,j);
G(i,j)=IMGGreen(i,j);
B(i,j)=IMGBlue(i,j);
else
R(i,j)=0;
G(i,j)=0;
B(i,j)=0;
end
end
end
clear IMGRed IMGGreen IMGBlue
% IDW of Parameters
X1 = RowColumn(1:10,1);
Y1 = RowColumn(1:10,2);
Xu=zeros(SX(1),1);
Yu=zeros(SX(1),1);
for i = 1:SX(1)
Xu(i)=i;
Yu(i)=i;
end
IDWLamda = IDW(X1,Y1,Beta(:,1),Xu,Yu,3,'fr',9500);
IDWRed = IDW(X1,Y1,Beta(:,2),Xu,Yu,3,'fr',9500);
IDWGreen = IDW(X1,Y1,Beta(:,3),Xu,Yu,3,'fr',9500);
IDWBlue = IDW(X1,Y1,Beta(:,4),Xu,Yu,3,'fr',9500);
IDWResidual = IDW(X1,Y1,Residual(:,1),Xu,Yu,3,'fr',9500);
% Cropping area
IDW_R = zeros(SX(1),SX(2));
IDW_G = zeros(SX(1),SX(2));
7
Muhammad Irsyadi Firdaus
P66067055
IDW_B = zeros(SX(1),SX(2));
IDW_Lamda = zeros(SX(1),SX(2));
IDW_Resid = zeros(SX(1),SX(2));
for i =1:SX(1)
for j=1:SX(2)
if TH(i,j)==1
IDW_R(i,j)=IDWRed(i,j);
IDW_G(i,j)=IDWGreen(i,j);
IDW_B(i,j)=IDWBlue(i,j);
IDW_Lamda(i,j)=IDWLamda(i,j);
IDW_Resid(i,j)=IDWResidual(i,j);
else
IDW_R(i,j)=0;
IDW_G(i,j)=0;
IDW_B(i,j)=0;
IDW_Lamda(i,j)=0;
IDW_Resid(i,j)=0;
end
end
end
% Data reshapping
RB_IDW = reshape(IDW_B,SX(1)*SX(2),1);
RG_IDW = reshape(IDW_G,SX(1)*SX(2),1);
RR_IDW = reshape(IDW_R,SX(1)*SX(2),1);
LL_IDW = reshape(IDW_Lamda,SX(1)*SX(2),1);
RES_IDW = reshape(IDW_Resid,SX(1)*SX(2),1);
% DATA RGB
RR = reshape(R,SX(1)*SX(2),1);
RG = reshape(G,SX(1)*SX(2),1);
RB = reshape(B,SX(1)*SX(2),1);
% Turbidity Mapping
for i=1:SX(1)*SX(2)
RTBgwr(i)=
LL_IDW(i,1)+(RR(i)*RR_IDW(i))+(RG(i)*RG_IDW(i))+(RB(i)*RB_IDW(i))+RES
_IDW(i);
end
RBgwr = reshape(RTBgwr,SX(1),SX(2));
image(RBgwr,'CDataMapping','scaled');
8
Muhammad Irsyadi Firdaus
P66067055
colorbar;
Figure 1. Turbidity (Linear Regression) after applying IDW model in Matlab
Figure 2. Turbidity (GWR) after applying IDW model in Matlab

More Related Content

What's hot

Method of Fracture Surface Matching Based on Mathematical Statistics
Method of Fracture Surface Matching Based on Mathematical StatisticsMethod of Fracture Surface Matching Based on Mathematical Statistics
Method of Fracture Surface Matching Based on Mathematical StatisticsIJRESJOURNAL
 
Akbari&anfinsen&doulgeris&eltoft igarss13
Akbari&anfinsen&doulgeris&eltoft igarss13Akbari&anfinsen&doulgeris&eltoft igarss13
Akbari&anfinsen&doulgeris&eltoft igarss13vak000
 
A Study of Non-Gaussian Error Volumes and Nonlinear Uncertainty Propagation f...
A Study of Non-Gaussian Error Volumes and Nonlinear Uncertainty Propagation f...A Study of Non-Gaussian Error Volumes and Nonlinear Uncertainty Propagation f...
A Study of Non-Gaussian Error Volumes and Nonlinear Uncertainty Propagation f...Justin Spurbeck
 
Assessing 50 years of tropical Peruvian glacier volume change from multitempo...
Assessing 50 years of tropical Peruvian glacier volume change from multitempo...Assessing 50 years of tropical Peruvian glacier volume change from multitempo...
Assessing 50 years of tropical Peruvian glacier volume change from multitempo...InfoAndina CONDESAN
 
Mapping Gradex values on the Tensift basin (Morocco)
Mapping Gradex values on the Tensift basin (Morocco)Mapping Gradex values on the Tensift basin (Morocco)
Mapping Gradex values on the Tensift basin (Morocco)IJERA Editor
 
Accuracy enhancement of srtm and aster dems using weight estimation regressio...
Accuracy enhancement of srtm and aster dems using weight estimation regressio...Accuracy enhancement of srtm and aster dems using weight estimation regressio...
Accuracy enhancement of srtm and aster dems using weight estimation regressio...eSAT Publishing House
 
Interpolation of meteodata using the method of regression-kriging
Interpolation of meteodata using the method of regression-krigingInterpolation of meteodata using the method of regression-kriging
Interpolation of meteodata using the method of regression-krigingAlexander Mkrtchian
 
Development of Methodology for Determining Earth Work Volume Using Combined S...
Development of Methodology for Determining Earth Work Volume Using Combined S...Development of Methodology for Determining Earth Work Volume Using Combined S...
Development of Methodology for Determining Earth Work Volume Using Combined S...IJMER
 
An improved tabular technique for presenting the various
An improved tabular technique for presenting the variousAn improved tabular technique for presenting the various
An improved tabular technique for presenting the variousAlexander Decker
 
Spatial interpolation comparison
Spatial interpolation comparisonSpatial interpolation comparison
Spatial interpolation comparisonTomislav Hengl
 
SIFT/SURF can achieve scale, rotation and illumination invariant during image...
SIFT/SURF can achieve scale, rotation and illumination invariant during image...SIFT/SURF can achieve scale, rotation and illumination invariant during image...
SIFT/SURF can achieve scale, rotation and illumination invariant during image...National Cheng Kung University
 
APPLICATION OF KRIGING IN GROUND WATER STUDIES
APPLICATION OF KRIGING IN GROUND WATER STUDIESAPPLICATION OF KRIGING IN GROUND WATER STUDIES
APPLICATION OF KRIGING IN GROUND WATER STUDIESAbhiram Kanigolla
 
Performances evaluation of surface water areas extraction techniques using l...
Performances evaluation of  surface water areas extraction techniques using l...Performances evaluation of  surface water areas extraction techniques using l...
Performances evaluation of surface water areas extraction techniques using l...Abdelazim Negm
 
Study of the effect of an unforced perturbation in the flame front of a premi...
Study of the effect of an unforced perturbation in the flame front of a premi...Study of the effect of an unforced perturbation in the flame front of a premi...
Study of the effect of an unforced perturbation in the flame front of a premi...Siddharth R. N
 
Grds international conference on pure and applied science (6)
Grds international conference on pure and applied science (6)Grds international conference on pure and applied science (6)
Grds international conference on pure and applied science (6)Global R & D Services
 

What's hot (20)

Method of Fracture Surface Matching Based on Mathematical Statistics
Method of Fracture Surface Matching Based on Mathematical StatisticsMethod of Fracture Surface Matching Based on Mathematical Statistics
Method of Fracture Surface Matching Based on Mathematical Statistics
 
Akbari&anfinsen&doulgeris&eltoft igarss13
Akbari&anfinsen&doulgeris&eltoft igarss13Akbari&anfinsen&doulgeris&eltoft igarss13
Akbari&anfinsen&doulgeris&eltoft igarss13
 
A Study of Non-Gaussian Error Volumes and Nonlinear Uncertainty Propagation f...
A Study of Non-Gaussian Error Volumes and Nonlinear Uncertainty Propagation f...A Study of Non-Gaussian Error Volumes and Nonlinear Uncertainty Propagation f...
A Study of Non-Gaussian Error Volumes and Nonlinear Uncertainty Propagation f...
 
Assessing 50 years of tropical Peruvian glacier volume change from multitempo...
Assessing 50 years of tropical Peruvian glacier volume change from multitempo...Assessing 50 years of tropical Peruvian glacier volume change from multitempo...
Assessing 50 years of tropical Peruvian glacier volume change from multitempo...
 
Mapping Gradex values on the Tensift basin (Morocco)
Mapping Gradex values on the Tensift basin (Morocco)Mapping Gradex values on the Tensift basin (Morocco)
Mapping Gradex values on the Tensift basin (Morocco)
 
Accuracy enhancement of srtm and aster dems using weight estimation regressio...
Accuracy enhancement of srtm and aster dems using weight estimation regressio...Accuracy enhancement of srtm and aster dems using weight estimation regressio...
Accuracy enhancement of srtm and aster dems using weight estimation regressio...
 
Interpolation of meteodata using the method of regression-kriging
Interpolation of meteodata using the method of regression-krigingInterpolation of meteodata using the method of regression-kriging
Interpolation of meteodata using the method of regression-kriging
 
Development of Methodology for Determining Earth Work Volume Using Combined S...
Development of Methodology for Determining Earth Work Volume Using Combined S...Development of Methodology for Determining Earth Work Volume Using Combined S...
Development of Methodology for Determining Earth Work Volume Using Combined S...
 
Research Analysis and Design of Geometric Transformations using Affine Geometry
Research Analysis and Design of Geometric Transformations using Affine GeometryResearch Analysis and Design of Geometric Transformations using Affine Geometry
Research Analysis and Design of Geometric Transformations using Affine Geometry
 
An improved tabular technique for presenting the various
An improved tabular technique for presenting the variousAn improved tabular technique for presenting the various
An improved tabular technique for presenting the various
 
Ih2616101615
Ih2616101615Ih2616101615
Ih2616101615
 
KrystianPaczkowski_iFEM
KrystianPaczkowski_iFEMKrystianPaczkowski_iFEM
KrystianPaczkowski_iFEM
 
Spatial interpolation comparison
Spatial interpolation comparisonSpatial interpolation comparison
Spatial interpolation comparison
 
SIFT/SURF can achieve scale, rotation and illumination invariant during image...
SIFT/SURF can achieve scale, rotation and illumination invariant during image...SIFT/SURF can achieve scale, rotation and illumination invariant during image...
SIFT/SURF can achieve scale, rotation and illumination invariant during image...
 
APPLICATION OF KRIGING IN GROUND WATER STUDIES
APPLICATION OF KRIGING IN GROUND WATER STUDIESAPPLICATION OF KRIGING IN GROUND WATER STUDIES
APPLICATION OF KRIGING IN GROUND WATER STUDIES
 
V8N3-6.PDF
V8N3-6.PDFV8N3-6.PDF
V8N3-6.PDF
 
Performances evaluation of surface water areas extraction techniques using l...
Performances evaluation of  surface water areas extraction techniques using l...Performances evaluation of  surface water areas extraction techniques using l...
Performances evaluation of surface water areas extraction techniques using l...
 
Study of the effect of an unforced perturbation in the flame front of a premi...
Study of the effect of an unforced perturbation in the flame front of a premi...Study of the effect of an unforced perturbation in the flame front of a premi...
Study of the effect of an unforced perturbation in the flame front of a premi...
 
Grds international conference on pure and applied science (6)
Grds international conference on pure and applied science (6)Grds international conference on pure and applied science (6)
Grds international conference on pure and applied science (6)
 
Variograms
VariogramsVariograms
Variograms
 

Similar to The Turbidity (TB) Varies with Time And Space in The Reservoir Using GWR And Linear Regression

Effect of sub classes on the accuracy of the classified image
Effect of sub classes on the accuracy of the classified imageEffect of sub classes on the accuracy of the classified image
Effect of sub classes on the accuracy of the classified imageiaemedu
 
Effective Demosaicking for Bayer Color Filter Arrays with Directional Filteri...
Effective Demosaicking for Bayer Color Filter Arrays with Directional Filteri...Effective Demosaicking for Bayer Color Filter Arrays with Directional Filteri...
Effective Demosaicking for Bayer Color Filter Arrays with Directional Filteri...IRJET Journal
 
IRJET- Effective Demosaicking for Bayer Color Filter Arrays with Direction...
IRJET- 	  Effective Demosaicking for Bayer Color Filter Arrays with Direction...IRJET- 	  Effective Demosaicking for Bayer Color Filter Arrays with Direction...
IRJET- Effective Demosaicking for Bayer Color Filter Arrays with Direction...IRJET Journal
 
Application of Image Retrieval Techniques to Understand Evolving Weather
Application of Image Retrieval Techniques to Understand Evolving WeatherApplication of Image Retrieval Techniques to Understand Evolving Weather
Application of Image Retrieval Techniques to Understand Evolving Weatherijsrd.com
 
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLINGAPPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLINGsipij
 
Review_of_phase_measuring_deflectometry.pdf
Review_of_phase_measuring_deflectometry.pdfReview_of_phase_measuring_deflectometry.pdf
Review_of_phase_measuring_deflectometry.pdfSevgulDemir
 
IGASS_Hu6.ppt
IGASS_Hu6.pptIGASS_Hu6.ppt
IGASS_Hu6.pptgrssieee
 
Image Registration Methode in Radar Interferometry
Image Registration Methode in Radar InterferometryImage Registration Methode in Radar Interferometry
Image Registration Methode in Radar Interferometryijeei-iaes
 
Detection and Classification in Hyperspectral Images using Rate Distortion an...
Detection and Classification in Hyperspectral Images using Rate Distortion an...Detection and Classification in Hyperspectral Images using Rate Distortion an...
Detection and Classification in Hyperspectral Images using Rate Distortion an...Pioneer Natural Resources
 
computervision project
computervision projectcomputervision project
computervision projectLianli Liu
 
SAR ICE IMAGE CLASSIFICATION USING PARALLELEPIPED CLASSIFIER BASED ON GRAM-SC...
SAR ICE IMAGE CLASSIFICATION USING PARALLELEPIPED CLASSIFIER BASED ON GRAM-SC...SAR ICE IMAGE CLASSIFICATION USING PARALLELEPIPED CLASSIFIER BASED ON GRAM-SC...
SAR ICE IMAGE CLASSIFICATION USING PARALLELEPIPED CLASSIFIER BASED ON GRAM-SC...cscpconf
 
Sar ice image classification using parallelepiped classifier based on gram sc...
Sar ice image classification using parallelepiped classifier based on gram sc...Sar ice image classification using parallelepiped classifier based on gram sc...
Sar ice image classification using parallelepiped classifier based on gram sc...csandit
 
Optimum range of angle tracking radars: a theoretical computing
Optimum range of angle tracking radars: a theoretical computingOptimum range of angle tracking radars: a theoretical computing
Optimum range of angle tracking radars: a theoretical computingIJECEIAES
 
V.KARTHIKEYAN PUBLISHED ARTICLE 1
V.KARTHIKEYAN PUBLISHED ARTICLE 1V.KARTHIKEYAN PUBLISHED ARTICLE 1
V.KARTHIKEYAN PUBLISHED ARTICLE 1KARTHIKEYAN V
 
Smoothing of the Surface Estimates from Radarclinometry
Smoothing of the Surface Estimates from RadarclinometrySmoothing of the Surface Estimates from Radarclinometry
Smoothing of the Surface Estimates from RadarclinometryIRJET Journal
 
HSI Classification: Analysis
HSI Classification: AnalysisHSI Classification: Analysis
HSI Classification: AnalysisIRJET Journal
 

Similar to The Turbidity (TB) Varies with Time And Space in The Reservoir Using GWR And Linear Regression (20)

N045077984
N045077984N045077984
N045077984
 
Lwrb ms
Lwrb msLwrb ms
Lwrb ms
 
Effect of sub classes on the accuracy of the classified image
Effect of sub classes on the accuracy of the classified imageEffect of sub classes on the accuracy of the classified image
Effect of sub classes on the accuracy of the classified image
 
Effective Demosaicking for Bayer Color Filter Arrays with Directional Filteri...
Effective Demosaicking for Bayer Color Filter Arrays with Directional Filteri...Effective Demosaicking for Bayer Color Filter Arrays with Directional Filteri...
Effective Demosaicking for Bayer Color Filter Arrays with Directional Filteri...
 
IRJET- Effective Demosaicking for Bayer Color Filter Arrays with Direction...
IRJET- 	  Effective Demosaicking for Bayer Color Filter Arrays with Direction...IRJET- 	  Effective Demosaicking for Bayer Color Filter Arrays with Direction...
IRJET- Effective Demosaicking for Bayer Color Filter Arrays with Direction...
 
Application of Image Retrieval Techniques to Understand Evolving Weather
Application of Image Retrieval Techniques to Understand Evolving WeatherApplication of Image Retrieval Techniques to Understand Evolving Weather
Application of Image Retrieval Techniques to Understand Evolving Weather
 
AIAA Paper dlt228
AIAA Paper dlt228AIAA Paper dlt228
AIAA Paper dlt228
 
test
testtest
test
 
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLINGAPPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
APPLYING R-SPATIOGRAM IN OBJECT TRACKING FOR OCCLUSION HANDLING
 
Review_of_phase_measuring_deflectometry.pdf
Review_of_phase_measuring_deflectometry.pdfReview_of_phase_measuring_deflectometry.pdf
Review_of_phase_measuring_deflectometry.pdf
 
IGASS_Hu6.ppt
IGASS_Hu6.pptIGASS_Hu6.ppt
IGASS_Hu6.ppt
 
Image Registration Methode in Radar Interferometry
Image Registration Methode in Radar InterferometryImage Registration Methode in Radar Interferometry
Image Registration Methode in Radar Interferometry
 
Detection and Classification in Hyperspectral Images using Rate Distortion an...
Detection and Classification in Hyperspectral Images using Rate Distortion an...Detection and Classification in Hyperspectral Images using Rate Distortion an...
Detection and Classification in Hyperspectral Images using Rate Distortion an...
 
computervision project
computervision projectcomputervision project
computervision project
 
SAR ICE IMAGE CLASSIFICATION USING PARALLELEPIPED CLASSIFIER BASED ON GRAM-SC...
SAR ICE IMAGE CLASSIFICATION USING PARALLELEPIPED CLASSIFIER BASED ON GRAM-SC...SAR ICE IMAGE CLASSIFICATION USING PARALLELEPIPED CLASSIFIER BASED ON GRAM-SC...
SAR ICE IMAGE CLASSIFICATION USING PARALLELEPIPED CLASSIFIER BASED ON GRAM-SC...
 
Sar ice image classification using parallelepiped classifier based on gram sc...
Sar ice image classification using parallelepiped classifier based on gram sc...Sar ice image classification using parallelepiped classifier based on gram sc...
Sar ice image classification using parallelepiped classifier based on gram sc...
 
Optimum range of angle tracking radars: a theoretical computing
Optimum range of angle tracking radars: a theoretical computingOptimum range of angle tracking radars: a theoretical computing
Optimum range of angle tracking radars: a theoretical computing
 
V.KARTHIKEYAN PUBLISHED ARTICLE 1
V.KARTHIKEYAN PUBLISHED ARTICLE 1V.KARTHIKEYAN PUBLISHED ARTICLE 1
V.KARTHIKEYAN PUBLISHED ARTICLE 1
 
Smoothing of the Surface Estimates from Radarclinometry
Smoothing of the Surface Estimates from RadarclinometrySmoothing of the Surface Estimates from Radarclinometry
Smoothing of the Surface Estimates from Radarclinometry
 
HSI Classification: Analysis
HSI Classification: AnalysisHSI Classification: Analysis
HSI Classification: Analysis
 

More from National Cheng Kung University

Accuracy assessment and 3D Mapping by Consumer Grade Spherical Camera
Accuracy assessment and 3D Mapping by Consumer Grade Spherical CameraAccuracy assessment and 3D Mapping by Consumer Grade Spherical Camera
Accuracy assessment and 3D Mapping by Consumer Grade Spherical CameraNational Cheng Kung University
 
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...National Cheng Kung University
 
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...National Cheng Kung University
 
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical CameraNational Cheng Kung University
 
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical CameraNational Cheng Kung University
 
Satellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
Satellite Image Classification using Decision Tree, SVM and k-Nearest NeighborSatellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
Satellite Image Classification using Decision Tree, SVM and k-Nearest NeighborNational Cheng Kung University
 
Optimal Filtering with Kalman Filters and Smoothers Using AndroSensor IMU Data
Optimal Filtering with Kalman Filters and Smoothers Using AndroSensor IMU DataOptimal Filtering with Kalman Filters and Smoothers Using AndroSensor IMU Data
Optimal Filtering with Kalman Filters and Smoothers Using AndroSensor IMU DataNational Cheng Kung University
 
Satellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
Satellite Image Classification using Decision Tree, SVM and k-Nearest NeighborSatellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
Satellite Image Classification using Decision Tree, SVM and k-Nearest NeighborNational Cheng Kung University
 
A Method of Mining Association Rules for Geographical Points of Interest
A Method of Mining Association Rules for Geographical Points of InterestA Method of Mining Association Rules for Geographical Points of Interest
A Method of Mining Association Rules for Geographical Points of InterestNational Cheng Kung University
 
Building classification model, tree model, confusion matrix and prediction ac...
Building classification model, tree model, confusion matrix and prediction ac...Building classification model, tree model, confusion matrix and prediction ac...
Building classification model, tree model, confusion matrix and prediction ac...National Cheng Kung University
 
Accuracy Analysis of Three-Dimensional Model Reconstructed by Spherical Video...
Accuracy Analysis of Three-Dimensional Model Reconstructed by Spherical Video...Accuracy Analysis of Three-Dimensional Model Reconstructed by Spherical Video...
Accuracy Analysis of Three-Dimensional Model Reconstructed by Spherical Video...National Cheng Kung University
 
Association Rule (Data Mining) - Frequent Itemset Generation, Closed Frequent...
Association Rule (Data Mining) - Frequent Itemset Generation, Closed Frequent...Association Rule (Data Mining) - Frequent Itemset Generation, Closed Frequent...
Association Rule (Data Mining) - Frequent Itemset Generation, Closed Frequent...National Cheng Kung University
 
The rotation matrix (DCM) and quaternion in Inertial Survey and Navigation Sy...
The rotation matrix (DCM) and quaternion in Inertial Survey and Navigation Sy...The rotation matrix (DCM) and quaternion in Inertial Survey and Navigation Sy...
The rotation matrix (DCM) and quaternion in Inertial Survey and Navigation Sy...National Cheng Kung University
 
3D reconstruction by photogrammetry and 4D deformation measurement
3D reconstruction by photogrammetry and 4D deformation measurement3D reconstruction by photogrammetry and 4D deformation measurement
3D reconstruction by photogrammetry and 4D deformation measurementNational Cheng Kung University
 

More from National Cheng Kung University (20)

Accuracy assessment and 3D Mapping by Consumer Grade Spherical Camera
Accuracy assessment and 3D Mapping by Consumer Grade Spherical CameraAccuracy assessment and 3D Mapping by Consumer Grade Spherical Camera
Accuracy assessment and 3D Mapping by Consumer Grade Spherical Camera
 
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
 
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
3D Rekonstruksi Bangunan Menggunakan Gambar Panorama Sebagai Upaya Untuk Miti...
 
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
 
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
3D Indoor and Outdoor Mapping from Point Cloud Generated by Spherical Camera
 
Handbook PPI Tainan Taiwan 2018
Handbook PPI Tainan Taiwan 2018Handbook PPI Tainan Taiwan 2018
Handbook PPI Tainan Taiwan 2018
 
Satellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
Satellite Image Classification using Decision Tree, SVM and k-Nearest NeighborSatellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
Satellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
 
Optimal Filtering with Kalman Filters and Smoothers Using AndroSensor IMU Data
Optimal Filtering with Kalman Filters and Smoothers Using AndroSensor IMU DataOptimal Filtering with Kalman Filters and Smoothers Using AndroSensor IMU Data
Optimal Filtering with Kalman Filters and Smoothers Using AndroSensor IMU Data
 
Satellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
Satellite Image Classification using Decision Tree, SVM and k-Nearest NeighborSatellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
Satellite Image Classification using Decision Tree, SVM and k-Nearest Neighbor
 
EKF and RTS smoother toolbox
EKF and RTS smoother toolboxEKF and RTS smoother toolbox
EKF and RTS smoother toolbox
 
Kalman Filter Basic
Kalman Filter BasicKalman Filter Basic
Kalman Filter Basic
 
A Method of Mining Association Rules for Geographical Points of Interest
A Method of Mining Association Rules for Geographical Points of InterestA Method of Mining Association Rules for Geographical Points of Interest
A Method of Mining Association Rules for Geographical Points of Interest
 
DSM Extraction from Pleiades Images Using RSP
DSM Extraction from Pleiades Images Using RSPDSM Extraction from Pleiades Images Using RSP
DSM Extraction from Pleiades Images Using RSP
 
Calibration of Inertial Sensor within Smartphone
Calibration of Inertial Sensor within SmartphoneCalibration of Inertial Sensor within Smartphone
Calibration of Inertial Sensor within Smartphone
 
Pengukuran GPS Menggunakan Trimble Secara Manual
Pengukuran GPS Menggunakan Trimble Secara ManualPengukuran GPS Menggunakan Trimble Secara Manual
Pengukuran GPS Menggunakan Trimble Secara Manual
 
Building classification model, tree model, confusion matrix and prediction ac...
Building classification model, tree model, confusion matrix and prediction ac...Building classification model, tree model, confusion matrix and prediction ac...
Building classification model, tree model, confusion matrix and prediction ac...
 
Accuracy Analysis of Three-Dimensional Model Reconstructed by Spherical Video...
Accuracy Analysis of Three-Dimensional Model Reconstructed by Spherical Video...Accuracy Analysis of Three-Dimensional Model Reconstructed by Spherical Video...
Accuracy Analysis of Three-Dimensional Model Reconstructed by Spherical Video...
 
Association Rule (Data Mining) - Frequent Itemset Generation, Closed Frequent...
Association Rule (Data Mining) - Frequent Itemset Generation, Closed Frequent...Association Rule (Data Mining) - Frequent Itemset Generation, Closed Frequent...
Association Rule (Data Mining) - Frequent Itemset Generation, Closed Frequent...
 
The rotation matrix (DCM) and quaternion in Inertial Survey and Navigation Sy...
The rotation matrix (DCM) and quaternion in Inertial Survey and Navigation Sy...The rotation matrix (DCM) and quaternion in Inertial Survey and Navigation Sy...
The rotation matrix (DCM) and quaternion in Inertial Survey and Navigation Sy...
 
3D reconstruction by photogrammetry and 4D deformation measurement
3D reconstruction by photogrammetry and 4D deformation measurement3D reconstruction by photogrammetry and 4D deformation measurement
3D reconstruction by photogrammetry and 4D deformation measurement
 

Recently uploaded

Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.Kamal Acharya
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsvanyagupta248
 
Ground Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementGround Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementDr. Deepak Mudgal
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxSCMS School of Architecture
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...josephjonse
 
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...HenryBriggs2
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...Amil baba
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdfKamal Acharya
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...drmkjayanthikannan
 
Introduction to Artificial Intelligence ( AI)
Introduction to Artificial Intelligence ( AI)Introduction to Artificial Intelligence ( AI)
Introduction to Artificial Intelligence ( AI)ChandrakantDivate1
 
fitting shop and tools used in fitting shop .ppt
fitting shop and tools used in fitting shop .pptfitting shop and tools used in fitting shop .ppt
fitting shop and tools used in fitting shop .pptAfnanAhmad53
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 
UNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxUNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxkalpana413121
 
8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessor8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessorAshwiniTodkar4
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information SystemsAnge Felix NSANZIYERA
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
Augmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptxAugmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptxMustafa Ahmed
 
Path loss model, OKUMURA Model, Hata Model
Path loss model, OKUMURA Model, Hata ModelPath loss model, OKUMURA Model, Hata Model
Path loss model, OKUMURA Model, Hata ModelDrAjayKumarYadav4
 

Recently uploaded (20)

Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
Ground Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth ReinforcementGround Improvement Technique: Earth Reinforcement
Ground Improvement Technique: Earth Reinforcement
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
 
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
scipt v1.pptxcxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
Introduction to Artificial Intelligence ( AI)
Introduction to Artificial Intelligence ( AI)Introduction to Artificial Intelligence ( AI)
Introduction to Artificial Intelligence ( AI)
 
fitting shop and tools used in fitting shop .ppt
fitting shop and tools used in fitting shop .pptfitting shop and tools used in fitting shop .ppt
fitting shop and tools used in fitting shop .ppt
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
UNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxUNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptx
 
8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessor8086 Microprocessor Architecture: 16-bit microprocessor
8086 Microprocessor Architecture: 16-bit microprocessor
 
Introduction to Geographic Information Systems
Introduction to Geographic Information SystemsIntroduction to Geographic Information Systems
Introduction to Geographic Information Systems
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Signal Processing and Linear System Analysis
Signal Processing and Linear System AnalysisSignal Processing and Linear System Analysis
Signal Processing and Linear System Analysis
 
Augmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptxAugmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptx
 
Path loss model, OKUMURA Model, Hata Model
Path loss model, OKUMURA Model, Hata ModelPath loss model, OKUMURA Model, Hata Model
Path loss model, OKUMURA Model, Hata Model
 

The Turbidity (TB) Varies with Time And Space in The Reservoir Using GWR And Linear Regression

  • 1. 1 Muhammad Irsyadi Firdaus P66067055 Homework 3 The turbidity (TB) varies with time and space in the reservoir. In this homework, the regression estimated water quality based on a satellite image dataset. Then, the turbidity is modeled with linear least squares regression (LR), and geographically weighted regression (GWR). Which one is the better? You can select one or two observations for validation. In the homework, please finish the task for TB mapping. 1. Prepare the data (location x, location y, turbidity from observation; R, G, B reflectance from satellite images). 2. Model by the linear regression, and GWR: 𝑌𝑖 = 𝛽0(𝑢𝑖, 𝑣𝑖) + ∑ 𝛽 𝑘(𝑢𝑖, 𝑣𝑖)𝑋𝑖𝑘 + 𝜀𝑖𝑘 (1) 3. TB mapping Firstly, coefficients are interpolated considering IDW. Since R, G, B reflectance and coefficients are known, TB can be obtained. Data including image file (R, G, and B reflectance) and obs.xls (10 observation data) can be download from https://mybox.ncku.edu.tw/navigate/s/8C86FC7A82B2428BBBADA963E2434D0 9GSY Code is available from: http://www.spatial-econometrics.com/spatial/gwr_models/gwr.m Answers 1. Prepare the data (location x, location y, turbidity from observation; R, G, B reflectance from satellite images). Table 1. Location x, location y, turbidity from observation X Y Z (TB Value) 203,006 2,571,625 5.4 204,510 2,571,700 3.6 204,341 2,572,172 3.2 204,314 2,573,547 4.7 206,351 2,577,336 5.1 208,939 2,578,944 8.1
  • 2. 2 Muhammad Irsyadi Firdaus P66067055 208,258 2,578,681 5.4 206,745 2,575,800 4.6 204,854 2,574,015 2.7 202,857 2,571,566 4.4  R, G, B reflectance from satellite images To get RGB value and row column value, I use ENVI software. So get the value as below. Table 2. RGB value Red Green Blue 1.1522 2.1010 1.1610 1.1522 2.1010 1.1259 1.1012 1.9714 1.1142 1.1012 2.0038 1.1259 1.1522 2.1334 1.1610 1.3817 2.5870 1.3131 1.2542 2.3926 1.2546 1.1522 2.1334 1.1376 1.1012 2.0038 1.1259 1.1777 2.0686 1.1727 Table 3. Row and Column Value Column Row 888 4837 1640 4800 1555 4564 1542 3876 2560 1982 3854 1178 3514 1309 2. Model by the linear regression, and GWR Geographically weighted regression (GWR) is an exploratory technique mainly intended to indicate where non-stationarity is taking place on the map, that is where locally weighted regression coefficients move away from their global values. On the linear regression model using 10 point samples and obtained linear parameters as in the table below. Code Linear Regression using MatLAB
  • 3. 3 Muhammad Irsyadi Firdaus P66067055 Tabel 4. Linear Parameters 𝜷 𝟎 -14.8214548000326 𝜷 𝟏 7.31199506006149 𝜷 𝟐 1.15664710908197 𝜷 𝟑 7.25380884793830 Tabel 5. Result of regression linear model Points Turbidity Value (Linear Regression) TB Observation The difference point value 1 4.45521355680786 5.4 0.944786443 2 4.20060486624522 3.6 0.600604866 3 3.59292208932419 3.2 0.392922089 4 3.71526701917932 4.7 0.984732981 5 4.49268892314211 5.1 0.607311077 6 7.79875124387722 8.1 0.301248756 7 6.21727185810946 5.4 0.817271858 8 4.32294979610036 4.6 0.277050204 9 3.71526701917932 2.7 1.015267019 10 4.68906362802605 4.4 0.289063628 Geographically Weighted Regression (GWR) Model Y = 𝛽0 + 𝛽1 ∗ R + 𝛽2 ∗ G + 𝛽3 ∗ B + Residual Or
  • 4. 4 Muhammad Irsyadi Firdaus P66067055 𝑌𝑖 = 𝛽0(𝑢𝑖, 𝑣𝑖) + ∑ 𝛽 𝑘(𝑢𝑖, 𝑣𝑖)𝑋𝑖𝑘 + 𝜀𝑖 𝑘 Code GWR Parameters using MatLAB Table 6. Beta values on each points Number Residual 1 -17.7586 -4.7319 3.2761 17.9845 0.8475 2 -17.9070 -4.9393 3.3681 18.1482 -0.3114 3 -17.7966 -4.7354 3.3677 17.8495 -0.3159 4 -17.8423 -5.2326 3.7392 17.7107 0.8712 5 -11.4069 16.4338 0.4352 -3.4458 0.6439 6 -12.0015 17.6359 -0.2099 -2.9730 0.1810 7 -11.9806 17.3069 -0.1089 -2.8454 -0.4950 8 -11.7158 12.6489 1.6192 -1.5858 0.0913 9 -17.5399 -4.68864 3.9779 16.4639 -1.1046 10 -17.797119 -4.8620 3.2949 18.1144 -0.1356 Table 7. Result of GWR regression model Number Turbidity Value (GWR Regression) TB Observation 1 5.400 5.4 2 3.600 3.6 3 3.200 3.2 4 4.700 4.7 5 5.100 5.1
  • 5. 5 Muhammad Irsyadi Firdaus P66067055 6 8.100 8.1 7 5.400 5.4 8 4.600 4.6 9 2.700 2.7 10 4.400 4.4 The turbidity is modeled with linear least squares regression (LR), and geographically weighted regression (GWR). After comparing the results between linear least squares regression (table 5) and geographically weighted regression (GWR) results in Table 7, the best result for calculating the turbidity (TB) varies is the geographically weighted regression (GWR) method because it has the same value as TB Observation. 3. Turbidity Mapping Code Turbidity Mapping using MatLAB IMGBlue = imread('D:My DataSemester 1Spatial Enviromental Data Analysis And ModelHW320090903BLUE_20090903_RN_Tiff.tif'); IMGGreen = imread('D:My DataSemester 1Spatial Enviromental Data Analysis And ModelHW320090903GREEN_20090903_RN_Tiff.tif'); IMGRed = imread('D:My DataSemester 1Spatial Enviromental Data Analysis And ModelHW320090903Red_20090903_RN_Tiff.tif'); TH = imread('D:My DataSemester 1Spatial Enviromental Data Analysis And ModelHW3NDWI_Mask_20090903NDWI_Mask_20090903NDWI_Mask_20090903_RN _Tiff.tif'); SX=size(IMGBlue); % Sampling RGB1 = RGB(1:10,:); XYZ1 = XYZ(1:10,:); RowColumn1 = RowColumn(1:10,:); % GWR I = ones(10,1); A(:,1) = I; A(:,2) = RGB1(:,1); A(:,3) = RGB1(:,2); A(:,4) = RGB1(:,3); res = gwr(XYZ1(:,3),A,RowColumn1(:,1),RowColumn1(:,2));
  • 6. 6 Muhammad Irsyadi Firdaus P66067055 % Parameters Beta = res.beta; Residual = res.resid; % Cropping area R = zeros(SX(1),SX(2)); G = zeros(SX(1),SX(2)); B = zeros(SX(1),SX(2)); for i =1:SX(1) for j=1:SX(2) if TH(i,j)==1 R(i,j)=IMGRed(i,j); G(i,j)=IMGGreen(i,j); B(i,j)=IMGBlue(i,j); else R(i,j)=0; G(i,j)=0; B(i,j)=0; end end end clear IMGRed IMGGreen IMGBlue % IDW of Parameters X1 = RowColumn(1:10,1); Y1 = RowColumn(1:10,2); Xu=zeros(SX(1),1); Yu=zeros(SX(1),1); for i = 1:SX(1) Xu(i)=i; Yu(i)=i; end IDWLamda = IDW(X1,Y1,Beta(:,1),Xu,Yu,3,'fr',9500); IDWRed = IDW(X1,Y1,Beta(:,2),Xu,Yu,3,'fr',9500); IDWGreen = IDW(X1,Y1,Beta(:,3),Xu,Yu,3,'fr',9500); IDWBlue = IDW(X1,Y1,Beta(:,4),Xu,Yu,3,'fr',9500); IDWResidual = IDW(X1,Y1,Residual(:,1),Xu,Yu,3,'fr',9500); % Cropping area IDW_R = zeros(SX(1),SX(2)); IDW_G = zeros(SX(1),SX(2));
  • 7. 7 Muhammad Irsyadi Firdaus P66067055 IDW_B = zeros(SX(1),SX(2)); IDW_Lamda = zeros(SX(1),SX(2)); IDW_Resid = zeros(SX(1),SX(2)); for i =1:SX(1) for j=1:SX(2) if TH(i,j)==1 IDW_R(i,j)=IDWRed(i,j); IDW_G(i,j)=IDWGreen(i,j); IDW_B(i,j)=IDWBlue(i,j); IDW_Lamda(i,j)=IDWLamda(i,j); IDW_Resid(i,j)=IDWResidual(i,j); else IDW_R(i,j)=0; IDW_G(i,j)=0; IDW_B(i,j)=0; IDW_Lamda(i,j)=0; IDW_Resid(i,j)=0; end end end % Data reshapping RB_IDW = reshape(IDW_B,SX(1)*SX(2),1); RG_IDW = reshape(IDW_G,SX(1)*SX(2),1); RR_IDW = reshape(IDW_R,SX(1)*SX(2),1); LL_IDW = reshape(IDW_Lamda,SX(1)*SX(2),1); RES_IDW = reshape(IDW_Resid,SX(1)*SX(2),1); % DATA RGB RR = reshape(R,SX(1)*SX(2),1); RG = reshape(G,SX(1)*SX(2),1); RB = reshape(B,SX(1)*SX(2),1); % Turbidity Mapping for i=1:SX(1)*SX(2) RTBgwr(i)= LL_IDW(i,1)+(RR(i)*RR_IDW(i))+(RG(i)*RG_IDW(i))+(RB(i)*RB_IDW(i))+RES _IDW(i); end RBgwr = reshape(RTBgwr,SX(1),SX(2)); image(RBgwr,'CDataMapping','scaled');
  • 8. 8 Muhammad Irsyadi Firdaus P66067055 colorbar; Figure 1. Turbidity (Linear Regression) after applying IDW model in Matlab Figure 2. Turbidity (GWR) after applying IDW model in Matlab