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)
23 views
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 now
Download
Save code1-praveen For Later
Download
Save
Save code1-praveen For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
23 views
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 now
Download
Save code1-praveen For Later
Carousel Previous
Carousel Next
Save
Save code1-praveen For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
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
SP-FP Trutzchler
PDF
100% (2)
SP-FP Trutzchler
230 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
Whos To Find The Variable Types
PDF
No ratings yet
Whos To Find The Variable Types
6 pages
MATLAB Tutorial
PDF
No ratings yet
MATLAB Tutorial
40 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
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
PHP Package Mastery: 100 Essential Tools in One Hour - 2024 Edition
From Everand
PHP Package Mastery: 100 Essential Tools in One Hour - 2024 Edition
Kanto
No ratings yet
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
3
PDF
No ratings yet
3
6 pages
Matlab Toolbox For Learning Object Models From Video
PDF
No ratings yet
Matlab Toolbox For Learning Object Models From Video
9 pages
Intro To Matlab and Image Processing
PDF
No ratings yet
Intro To Matlab and Image Processing
14 pages
Image Lab
PDF
No ratings yet
Image Lab
35 pages
Dip Lab 2
PDF
No ratings yet
Dip Lab 2
13 pages
Matlab Image Processing
PDF
No ratings yet
Matlab Image Processing
26 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)
Milq2 LC4
PDF
No ratings yet
Milq2 LC4
6 pages
UNFPA Career Guide
PDF
100% (1)
UNFPA Career Guide
31 pages
Challenges Faced by HR PDF
PDF
No ratings yet
Challenges Faced by HR PDF
5 pages
PDF Proposal Paper For Spelling Bee Competition
PDF
No ratings yet
PDF Proposal Paper For Spelling Bee Competition
9 pages
Crossfire Signal Cfx324 Manual - PDF NEW
PDF
No ratings yet
Crossfire Signal Cfx324 Manual - PDF NEW
6 pages
Basic Needs Approach
PDF
No ratings yet
Basic Needs Approach
4 pages
Script Conference
PDF
No ratings yet
Script Conference
2 pages
MZ500 Final Exam
PDF
No ratings yet
MZ500 Final Exam
3 pages
Gek105060 File0060
PDF
No ratings yet
Gek105060 File0060
12 pages
POINT I/O 120vac Input Module: Catalog Numbers 1734-IA2, 1734-IA4, Series C
PDF
No ratings yet
POINT I/O 120vac Input Module: Catalog Numbers 1734-IA2, 1734-IA4, Series C
24 pages
Algebra 1-Handouts
PDF
No ratings yet
Algebra 1-Handouts
3 pages
DART-SD410 v1.01 Datasheet: Snapdragon 410 - Based System-on-Module
PDF
No ratings yet
DART-SD410 v1.01 Datasheet: Snapdragon 410 - Based System-on-Module
42 pages
FSMS - Advance Planning
PDF
No ratings yet
FSMS - Advance Planning
28 pages
Download Full New Light Through Old Windows Exploring Contemporary Science Through 12 Classic Science Fiction Tales Stephen Webb PDF All Chapters
PDF
100% (3)
Download Full New Light Through Old Windows Exploring Contemporary Science Through 12 Classic Science Fiction Tales Stephen Webb PDF All Chapters
55 pages
Oil Based Muds
PDF
No ratings yet
Oil Based Muds
12 pages
Model Question Paper
PDF
No ratings yet
Model Question Paper
5 pages
Two_samples_t_test_same_n
PDF
No ratings yet
Two_samples_t_test_same_n
1 page
3 Idiots
PDF
100% (4)
3 Idiots
20 pages
CAT 3516b
PDF
100% (1)
CAT 3516b
946 pages
Math 8 - Week 1 - Lesson 1
PDF
No ratings yet
Math 8 - Week 1 - Lesson 1
16 pages
Acctloaded - Products
PDF
No ratings yet
Acctloaded - Products
1 page
Isolationforest1 Python
PDF
No ratings yet
Isolationforest1 Python
7 pages
Practice of Statistics in the Life Sciences Brigitte Baldi - The ebook is available for quick download, easy access to content
PDF
No ratings yet
Practice of Statistics in the Life Sciences Brigitte Baldi - The ebook is available for quick download, easy access to content
69 pages
4th Lesson Plan - Metric Conversion
PDF
No ratings yet
4th Lesson Plan - Metric Conversion
3 pages
RA Homework - Merged
PDF
No ratings yet
RA Homework - Merged
17 pages
التكتلات-الإقتصادية-في-إفريقيا-بين-المقومات-والمعوقات
PDF
No ratings yet
التكتلات-الإقتصادية-في-إفريقيا-بين-المقومات-والمعوقات
14 pages
Booking Invoice - M06AI25I01104186
PDF
No ratings yet
Booking Invoice - M06AI25I01104186
1 page
Final VT Pump Ss No Price r0 Web
PDF
No ratings yet
Final VT Pump Ss No Price r0 Web
1 page
GROUP 2 - IE104 - Group Task
PDF
No ratings yet
GROUP 2 - IE104 - Group Task
19 pages