

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
The aims of a lab session for cs 804, focusing on installing and configuring a personal cloud, implementing virtualization in cloud computing, and learning the basics of virtualization using an open-source operating system. Additionally, students will write a web feed program using php and html, install and configure google app engine, and perform various morphological operations using matlab. The document also includes resources for detecting cells using edge detection and morphology, line detection using the hough transform, and measuring regions in grayscale images.
Typology: Summaries
1 / 2
This page cannot be seen from the preview
Don't miss anything!
AIM 1. Study of Installation and configuration of own Cloud. AIM 2. Implementation of Virtualization in Cloud Computing to Learn Virtualization Basics, Benefits of Virtualization in Cloud using Open Source Operating System. AIM 3. Write a program for Web feed using PHP and HTML. AIM 4. Install and configure Google App Engine. AIM 5: Write a MATLAB code to perform various Morphological operations
I = imread("flowers.jpg"); subplot(2, 3, 1), imshow(I); title("Original image"); % Dilated Image se = strel("line", 7, 7); dilate = imdilate(I, se); subplot(2, 3, 2), imshow(dilate); title("Dilated image"); % Eroded image erode = imerode(I, se); subplot(2, 3, 3), imshow(erode); title("Eroded image"); % Opened image open = imopen(I, se); subplot(2, 3, 4), imshow(open); title("Opened image"); % Closed image close = imclose(I, se); subplot(2, 3, 5), imshow(close); title("Closed image");
AIM 6: MATLAB code for detecting Cell Using Edge Detection and Morphology https://www.mathworks.com/help/images/detecting-a-cell-using-image-segmentation.html AIM 7: MATLAB code for Line Detection using Hough Transform https://www.section.io/engineering-education/line-detection-using-hough-transform-in- matlab/ AIM 8: MATLAB Code for Measuring Regions in Grayscale Images https://www.mathworks.com/help/images/measuring- regions-in-grayscale-images.html AIM 9: Study of Photogrammetry -from 2D to 3D https://www.elrha.org/project-blog/2d-3d-community-based-use-photogrammetry/ #:~:text=This%20whole%20process%20is%20called,of%20an%20aerial%20photography %20flight.