Book Review Task

Book Review Task

Book Review: Indians in Singapore, 1819 – 1945 – Diaspora in the Colonial Port City

Diaspora is one of the highlighted topics in studying population evolution and its features. The book “Indians in Singapore, 1819-1945: Diaspora in Colonial Port City” written by Rajesh Rai focuses on the topic of Diaspora and its associated features. The meticulously researched data is Continue reading

Report on Acute Nephritic Syndrome

Report on Acute Nephritic Syndrome

Discussion:

Background on the Disease (demographic distribution, prevalence, etc)

Acute nephritic syndrome (ANS) refers to a group of symptoms that come to the surface with some specific disorders that trigger the swelling and inflammation of the glomeruli in the kidney, or glomerulonephritis (Medline Plus, 2020). The prevalence rate of this disease is quite wider in Continue reading

Matlab Task on sphereVol

Matlab Task on sphereVol

function A09Prob1_sphereVol_kang401(radius)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ENGR 132
% Program Description
% The code computes volume of a sphere as a function of height of fluid
% The input to function call is radius
% The function does not return any variable Continue reading

Matlab Task on Computer Programming & Numerical Methods

Matlab Task on Computer Programming & Numerical Methods

A=imread(‘one.png’)
signImage=rgb2gray(A);
figure(1)
imshow(signImage)
%Detect features of first image that is read above%
signPoints=detectSURFFeatures(signImage)
figure(3)
imshow(signImage)
title(‘100 strongest features from sign image’)
hold on
%Top 100 strongest features
plot(selectStrongest(signPoints,100))

[signFeatures2, signPoints2] = extractFeatures(signImage, signPoints)

B=imread(‘two.png’)
signImage2=rgb2gray(B);
figure(4)
imshow(signImage2)
%Detect features of first image that is read above%
signPoints2=detectSURFFeatures(signImage2)
figure(5)
imshow(signImage2)
title(‘100 strongest features from sign image’)
hold on
%Top 100 strongest features
plot(selectStrongest(signPoints2,300))
[signFeatures2, signPoints2] = extractFeatures(signImage2, signPoints2)

%Punitive point matches in both the images%

picPairs=matchFeatures(signFeatures, signFeatures2);
matchedSignPoints = signPoints(picPairs(:,1),:);
matchedFindPoints = signPoints2(picPairs(:,2),:);
figure(6)
showMatchedFeatures(signImage,signImage2,matchedSignPoints, matchedFindPoints, ‘montage’)
title(‘Matched points both images’)

%Locate objects using Punitive matches%
%[tform, inlierBoxPoints, inlierScenePoints] =estimateGeometricTransform(matchedSignPoints, matchedFindPoints);
%figure;
%showMatchedFeatures(signImage, signImage2, inlierBoxPoints,inlierScenePoints, ‘montage’);
%title(‘Matched Points (Inliers Only)’);