Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
32 views
3 pages
Code1 Praveen
Uploaded by
jaya vamsi
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download
Save
Save code1-praveen For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
0 ratings
0% found this document useful (0 votes)
32 views
3 pages
Code1 Praveen
Uploaded by
jaya vamsi
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save code1-praveen For Later
Share
0%
0% found this document useful, undefined
0%
, undefined
Print
Embed
Report
Download
Save code1-praveen For Later
You are on page 1
/ 3
Search
Fullscreen
FUNCTIONS
clc - Clear Command Window
This MATLAB function clears all the text from the Command Window, resulting in a clear screen.
clear - Remove items from workspace, freeing up system memory
This MATLAB function removes all variables from the current workspace, releasing them from system
memory.
close - Close one or more figures
This MATLAB function closes the current figure.
VideoWriter - Create object to write video files
Use a VideoWriter object to create a video file from an array or MATLAB movie.
VideoReader - Create object to read video files
Use a VideoReader object to read files containing video data.
exist - Check existence of variable, script, function, folder, or class
This MATLAB function returns the type of name as a number.
repmat - Repeat copies of array
This MATLAB function returns an array containing n copies of A in the row and column dimensions.
writeVideo - Write video data to file
This MATLAB function writes data from an array to the video file associated with v.
disp - Display value of variable
This MATLAB function displays the value of variable X without printing the variable name.
implay - View 2-D medical image series in Video Viewer app
Medical Imaging Toolbox extends the functionality of the implay (Image Processing Toolbox) function
to display a medicalImage object.
SOURCE CODE
PROGRAM:
clc % Clear command window.
clear all %Clear variables and functions from memory
close all % closes all the open figure windows
% Create a VideoReader object (replace 'your_video.mp4' with your video file)
videoFile = 'C:\Users\user\OneDrive\Pictures\Camera Roll';
videoReader = VideoReader('testvideo.mp4');
% Create a VideoWriter object for saving the output video
outputVideoFile = 'output_motion_detected_video.avi';
outputVideoWriter = VideoWriter(outputVideoFile, 'Uncompressed AVI');
open(outputVideoWriter);
% Set motion detection threshold
motionThreshold = 5;
% Loop through each frame of the video
while hasFrame(videoReader)
% Read the frame
frame = readFrame(videoReader);
% Convert the frame to grayscale
grayFrame = rgb2gray(frame);
% Compute the difference between consecutive frames
if exist('prevFrame', 'var')
frameDiff = abs(grayFrame - prevFrame);
% Create a binary mask based on motion threshold
motionMask = frameDiff > motionThreshold;
% Apply the motion mask to the original frame
motionDetectedFrame = frame;
motionDetectedFrame(repmat(motionMask, [1, 1, 3])) = 255;
% Write the frame with motion detection to the output video
writeVideo(outputVideoWriter, motionDetectedFrame);
end
% Save the current frame for the next iteration
prevFrame = grayFrame;
end
% Close the video writer
close(outputVideoWriter);
% Display a message indicating completion
disp('Motion detection completed.');
% Optionally, play the output video
implay(outputVideoFile);
You might also like
Some Tutorials in Computer Networking Hacking
From Everand
Some Tutorials in Computer Networking Hacking
Dr. Hidaia Mahmood Alassouli
No ratings yet
The Supernaturalist
PDF
No ratings yet
The Supernaturalist
2 pages
Demo To Extract Frames and Get Frame Means From A Movie
PDF
No ratings yet
Demo To Extract Frames and Get Frame Means From A Movie
5 pages
Use The Color Thresholder App To Threshold
PDF
No ratings yet
Use The Color Thresholder App To Threshold
11 pages
Code1 Gova
PDF
No ratings yet
Code1 Gova
2 pages
Introduction To Matlab
PDF
No ratings yet
Introduction To Matlab
28 pages
Q1 Reading Given MP3 Using Audioread: CLC Clearvars
PDF
No ratings yet
Q1 Reading Given MP3 Using Audioread: CLC Clearvars
9 pages
Q1 Reading Given MP3 Using Audioread: CLC Clearvars
PDF
No ratings yet
Q1 Reading Given MP3 Using Audioread: CLC Clearvars
9 pages
Matlab Easy To Use Video
PDF
No ratings yet
Matlab Easy To Use Video
3 pages
Matlab Movies PDF
PDF
No ratings yet
Matlab Movies PDF
5 pages
Moving Object Detection Through MATLAB
PDF
No ratings yet
Moving Object Detection Through MATLAB
19 pages
FVPT
PDF
No ratings yet
FVPT
4 pages
RSA Elgamal Proposal Requirements
PDF
No ratings yet
RSA Elgamal Proposal Requirements
16 pages
ΗΜΠ 425 Matlab Tutorial in Image Video Signal Processing - Lakis - Christodoulou
PDF
No ratings yet
ΗΜΠ 425 Matlab Tutorial in Image Video Signal Processing - Lakis - Christodoulou
23 pages
Example Scripts
PDF
No ratings yet
Example Scripts
40 pages
Introduction To MATLAB With Image Processing
PDF
No ratings yet
Introduction To MATLAB With Image Processing
25 pages
Tracking Using Optical Flow
PDF
No ratings yet
Tracking Using Optical Flow
3 pages
Computer Applications Reviewer
PDF
No ratings yet
Computer Applications Reviewer
5 pages
Matlab For Image Processing: Francesca Pizzorni Ferrarese
PDF
No ratings yet
Matlab For Image Processing: Francesca Pizzorni Ferrarese
41 pages
Exp2 Motion
PDF
No ratings yet
Exp2 Motion
2 pages
Introduction To MATLAB With Image Processing
PDF
No ratings yet
Introduction To MATLAB With Image Processing
25 pages
MATLAB For Image Processing
PDF
No ratings yet
MATLAB For Image Processing
40 pages
BM6712 Digital Image Processing Laboratory
PDF
No ratings yet
BM6712 Digital Image Processing Laboratory
61 pages
MATLAB Lecture 6. Images and Movies in MATLAB
PDF
No ratings yet
MATLAB Lecture 6. Images and Movies in MATLAB
4 pages
Image Processing Using Matlab
PDF
No ratings yet
Image Processing Using Matlab
26 pages
MATLAB Tutorial
PDF
No ratings yet
MATLAB Tutorial
40 pages
Whos To Find The Variable Types
PDF
No ratings yet
Whos To Find The Variable Types
6 pages
Program 1 Aim
PDF
No ratings yet
Program 1 Aim
23 pages
Lab 1 PDF
PDF
No ratings yet
Lab 1 PDF
38 pages
Introduction To MATLAB (Basics) : Reference From: Azernikov Sergei Mesergei@tx - Technion.ac - Il
PDF
No ratings yet
Introduction To MATLAB (Basics) : Reference From: Azernikov Sergei Mesergei@tx - Technion.ac - Il
35 pages
Introduction To Matlab: Pantech Solutions
PDF
No ratings yet
Introduction To Matlab: Pantech Solutions
130 pages
Introduction Tom at Lab
PDF
No ratings yet
Introduction Tom at Lab
11 pages
Lab Manual 2 DIP Updated
PDF
No ratings yet
Lab Manual 2 DIP Updated
19 pages
Introduction To MATLAB (Basics) : Reference From: Azernikov Sergei Mesergei@tx - Technion.ac - Il
PDF
No ratings yet
Introduction To MATLAB (Basics) : Reference From: Azernikov Sergei Mesergei@tx - Technion.ac - Il
35 pages
Ball Follower
PDF
No ratings yet
Ball Follower
18 pages
Image Processing
PDF
No ratings yet
Image Processing
36 pages
Main C Matlap v1.3
PDF
No ratings yet
Main C Matlap v1.3
16 pages
Webcam Color Tracking in Matlab 2
PDF
No ratings yet
Webcam Color Tracking in Matlab 2
4 pages
Detection and Tracking of RED Color in Video Streaming by Using MATLAB
PDF
No ratings yet
Detection and Tracking of RED Color in Video Streaming by Using MATLAB
5 pages
Readme PDF
PDF
No ratings yet
Readme PDF
4 pages
Matlab Workshop Day2 - 001
PDF
No ratings yet
Matlab Workshop Day2 - 001
31 pages
Getting Started With Matlab: Cs534 Ta: Matt Mcdaniel Alrecenk@Cs - Wisc.Edu Sep 17, 2012 - Fall 2011
PDF
No ratings yet
Getting Started With Matlab: Cs534 Ta: Matt Mcdaniel Alrecenk@Cs - Wisc.Edu Sep 17, 2012 - Fall 2011
46 pages
Computer Applications Reviewer
PDF
No ratings yet
Computer Applications Reviewer
5 pages
FOIP Lab Mannual 221701006
PDF
No ratings yet
FOIP Lab Mannual 221701006
43 pages
Digital Image Processing
PDF
No ratings yet
Digital Image Processing
40 pages
Computer Vision Toolbox
PDF
100% (1)
Computer Vision Toolbox
327 pages
Introduction To Image Processing With Matlab
PDF
No ratings yet
Introduction To Image Processing With Matlab
4 pages
Adding Creative Effects Pictures and Sound
PDF
No ratings yet
Adding Creative Effects Pictures and Sound
3 pages
Matlab For CS6320 Beginners
PDF
No ratings yet
Matlab For CS6320 Beginners
10 pages
MatlabIntro - PPT 20250524 091202 0000
PDF
No ratings yet
MatlabIntro - PPT 20250524 091202 0000
25 pages
Digital Image Processing Matlab Basics
PDF
No ratings yet
Digital Image Processing Matlab Basics
46 pages
ECS-752 (Lab Manual) Updated
PDF
No ratings yet
ECS-752 (Lab Manual) Updated
25 pages
Lab Assignment 1 Aim
PDF
No ratings yet
Lab Assignment 1 Aim
6 pages
22CB604 - Scilab - Unit - 3
PDF
No ratings yet
22CB604 - Scilab - Unit - 3
66 pages
Matlab Toolbox For Learning Object Models From Video
PDF
No ratings yet
Matlab Toolbox For Learning Object Models From Video
9 pages
Python Advanced Programming: The Guide to Learn Python Programming. Reference with Exercises and Samples About Dynamical Programming, Multithreading, Multiprocessing, Debugging, Testing and More
From Everand
Python Advanced Programming: The Guide to Learn Python Programming. Reference with Exercises and Samples About Dynamical Programming, Multithreading, Multiprocessing, Debugging, Testing and More
Marcus Richards
No ratings yet
Fresher PyQt5: A Beginner’s Guide to PyQt5
From Everand
Fresher PyQt5: A Beginner’s Guide to PyQt5
Edward Chang
No ratings yet
Pyqt6 101: A Beginner’s Guide to PyQt6
From Everand
Pyqt6 101: A Beginner’s Guide to PyQt6
Edward Chang
No ratings yet
The Art of WebAssembly: Build Secure, Portable, High-Performance Applications
From Everand
The Art of WebAssembly: Build Secure, Portable, High-Performance Applications
Rick Battagline
No ratings yet
50 Recipes for Programming Node.js
From Everand
50 Recipes for Programming Node.js
Jamie Munro
3/5 (4)
How to a Developers Guide to 4k: Developer edition, #3
From Everand
How to a Developers Guide to 4k: Developer edition, #3
Xinc Cyberwizard
No ratings yet
Pigeonhole Principle
PDF
No ratings yet
Pigeonhole Principle
8 pages
VPC Best Practices Design Guide
PDF
No ratings yet
VPC Best Practices Design Guide
117 pages
Me 4 (Part A)
PDF
No ratings yet
Me 4 (Part A)
6 pages
Gino Vannelli: Canto
PDF
No ratings yet
Gino Vannelli: Canto
4 pages
Reflections and Shadows: Science For 3-5 Year-Olds
PDF
No ratings yet
Reflections and Shadows: Science For 3-5 Year-Olds
11 pages
Taekwondo Midterm Exam Rubrics 2
PDF
No ratings yet
Taekwondo Midterm Exam Rubrics 2
1 page
Dance Forms
PDF
No ratings yet
Dance Forms
4 pages
Pagsulhugon National High School: Division Festival of Talents Screening For Popdev Quiz Delegates
PDF
100% (1)
Pagsulhugon National High School: Division Festival of Talents Screening For Popdev Quiz Delegates
4 pages
11a3+11a5 Listening Exercises
PDF
No ratings yet
11a3+11a5 Listening Exercises
7 pages
122 Shades of White Color With Names, Hex, RGB, CMYK Codes - Color Meanings
PDF
No ratings yet
122 Shades of White Color With Names, Hex, RGB, CMYK Codes - Color Meanings
148 pages
Tiger Wood MK Ultra
PDF
100% (2)
Tiger Wood MK Ultra
7 pages
January 2025 Middle & High Lunch Menu
PDF
No ratings yet
January 2025 Middle & High Lunch Menu
1 page
Free Grab Food Grocery Trends 2023 Report 1711512681
PDF
No ratings yet
Free Grab Food Grocery Trends 2023 Report 1711512681
43 pages
Birds in Vancouver May
PDF
No ratings yet
Birds in Vancouver May
2 pages
EGE2024
PDF
No ratings yet
EGE2024
35 pages
2 The Kitchen As The Laboratory
PDF
No ratings yet
2 The Kitchen As The Laboratory
26 pages
Gec 5
PDF
No ratings yet
Gec 5
6 pages
Teste de Inglês: Assinale A Alternativa Correta
PDF
No ratings yet
Teste de Inglês: Assinale A Alternativa Correta
8 pages
Ricoh P 311 Manual
PDF
No ratings yet
Ricoh P 311 Manual
220 pages
Print Schedule
PDF
No ratings yet
Print Schedule
1 page
The Shore Brochure (ENG) - Web Use
PDF
No ratings yet
The Shore Brochure (ENG) - Web Use
9 pages
Naskah Soal Asas Ganjil Bing Kelas 6
PDF
No ratings yet
Naskah Soal Asas Ganjil Bing Kelas 6
6 pages
Ampero - V3.x Firmware Update Guide - EN.1574939523988
PDF
No ratings yet
Ampero - V3.x Firmware Update Guide - EN.1574939523988
6 pages
European Classical Drama
PDF
No ratings yet
European Classical Drama
10 pages
Sem 2 End
PDF
No ratings yet
Sem 2 End
2 pages
Cycling Strength Program
PDF
No ratings yet
Cycling Strength Program
9 pages
Zoro Attacks
PDF
No ratings yet
Zoro Attacks
8 pages
Heros Matrix
PDF
No ratings yet
Heros Matrix
4 pages
50 Latin Tunes
PDF
82% (11)
50 Latin Tunes
50 pages