Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

CS 804 Lab: Cloud Computing, Virtualization, and Image Processing, Summaries of Computer Vision

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

2021/2022

Uploaded on 04/28/2022

silent-tech
silent-tech 🇮🇳

1 document

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
File for CS 804 (D/O elective lab)
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
# Importing the image
I = imread("flowers.jpg");3
subplot(2, 3, 1),33
imshow(I);3
title("Original image");3
33
% Dilated Image3
se = strel("line", 7, 7);3
dilate = imdilate(I, se);3
subplot(2, 3, 2),33
imshow(dilate);3
title("Dilated image");3
33
% Eroded image3
erode = imerode(I, se);3
subplot(2, 3, 3),33
imshow(erode);3
title("Eroded image");3
33
% Opened image3
open = imopen(I, se);3
subplot(2, 3, 4),33
imshow(open);3
title("Opened image");3
33
% Closed image3
close = imclose(I, se);3
subplot(2, 3, 5),33
imshow(close);3
title("Closed image");3
pf2

Partial preview of the text

Download CS 804 Lab: Cloud Computing, Virtualization, and Image Processing and more Summaries Computer Vision in PDF only on Docsity!

File for CS 804 (D/O elective lab)

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

Importing the image

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.