SlideShare a Scribd company logo
1 of 33
Download to read offline
MATLAB Programming
STL File and Final Project
盧家鋒 Chia-Feng Lu, Ph.D.
Department of Biomedical Imaging
and Radiological Sciences, NYCU
alvin4016@nycu.edu.tw
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
Please install MeshLab software
▹ MeshLab
■ https://www.meshlab.net/#download
2
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
Contents
▹ Generate stereolithography(STL) file
▹ Instruction of final project
3
http://cflu.lab.nycu.edu.tw/CFLu_course_matlabimage.html
Please download the handout and materials from
產生STL模型檔
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
Faces & Vertices
▹ A=zeros(10,10,10);
▹ A(2:9,2:9,2:9)=1;
▹ [F,V] = isosurface(A,0);
Face #1
V1
V2
V3
Face #2 V4
1 2 3
2 3 4
4 10 2
5 2 1
5 1 2
5 3 1
F (Faces) V (Vertices)
Each face is composed of 3 vertices.
5
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
6
Patch of a Cube
▹ A=zeros(10,10,10);
▹ A(2:9,2:9,2:9)=1;
▹ [F,V] = isosurface(A,0);
▹ figure
▹ patch('Faces',F,'Vertices',V,'FaceColor',[0 1 0])
▹ lighting gouraud, camlight(0,0), view(30,30)
▹ axis equal
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
STL format
▹ ASCII STL
■ Start with solid name
■ The file continues with any number of triangles,
each represented as follows:
■ The file concludes with endsolid name
7
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
8
STL format
▹ ASCII STL Open MImaterials_L13cube_ascii.stl using NotePad (記事本)
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
STL format
▹ Binary STL
■ Each triangle is described by twelve 32-bit
floating-point numbers
Binary STL has a
smaller file size.
9
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
Export STL
▹ stlwrite function (released by Sven Holcombe)
10
https://www.mathworks.com/matlabcentral/fileexchange/20922-stlwrite-write-
ascii-or-binary-stl-files
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
Export STL
▹ stlwrite function (released by Sven Holcombe)
stlwrite('FILENAME',faces,vertices,'MODE','ascii','TITLE','NAME')
stlwrite('FILENAME',faces,vertices,'MODE',‘binary','TITLE','NAME')
Examples:
stlwrite('cube_ascii.stl',F,V,'mode','ascii','title','CubeDemo')
stlwrite('cube_binary.stl',F,V,'mode','binary','title','CubeDemo')
11
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
Dental CT Images
Original CT images Reconstructed 3D Surface Model
12
What we had last week….
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
Dental Surface Model
13
Please select an appropriate threshold value.
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
14
Close up the Mesh
▹ Creating zero layers in the first and last slices.
https://youtu.be/LfttaAepYJ8
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
Dental STL Model
15
MImaterials_L13Dental_STL.m
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
STL Model Clean & Repair
16
Instruction of
Final Project
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
18
Syllabus – 3D Rendering & Printing
Week Topic
11 Graphic structure - curve and image display
12 3D object rendering - surface and volume rendering
13 (12/8) Introduction of 3D printing and STL file output
14 (12/15)
~
15 (12/22)
1. Operation of Slicer (G-code file) and 3D printer (self learning)
2. 3D printing hands-on at NYCU Maker Space
3. Video recording (10 min)
Please provide photos of 3D printing at MakerSpace, explanation of MATLAB
codes, product showcase, problem/solution & discussion, and work assignment.
All the required files of final report should be uploaded to E3 before 12/28
16 (12/29)
Final discussion at classroom in person
(Please bring your headphone!)
You may record the team report using Google Meet or screen recorder software.
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
Slicer and 3D Printer
▹ Creality Slicer
■ https://former.creality.com/download
▹ Operation of Slicer and 3D Printer (self-learning materials)
■ Video: https://youtu.be/xvOvckeYrKg
■ Handout: http://cflu.lab.nycu.edu.tw/Introduction_Slicer_Printer_CF.pdf
19
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
20
Final Report Files
▹ Final report video (10 min)
■ Photos of 3D printing at MakerSpace, explanation of
MATLAB codes, product showcase, problem/solution &
discussion, and work assignment.
▹ Please upload all the required files of final report to E3
system before 12/28:
■ 10-min video (*.mp4); Can be a YouTube or Google Drive link if the file size is too large.
■ PowerPoint file
■ Script file (*.m)
■ STL file
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
21
Work Assignment 小組分工範例
▹ MATLAB programming
(image processing, ROI, modeling)
▹ G-code file generation using Slicer software
▹ 3D printing (group photos at MakerSpace)
▹ PowerPoint slides and product presentation
▹ Video recording (should include all the group members)
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
22
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
23
Dental CT
+ roipoly & proper thresholding
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
24
Skull CT
+ Image interpolation and smoothing
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
25
L-Spine CT
+ Image interpolation and smoothing
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
26
L-Spine CT
Photos shared by Team #2
CR-2020
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
28
Pelvis CT
+ slice selection & proper thresholding
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
29
Upper limb CT
+ roipoly & proper thresholding
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
30
Lower limb CT
+ (roipoly) & proper thresholding
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
32
Brain MRI + roipoly & proper thresholding
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
33
Total body CT + proper thresholding
http://cflu.lab.nycu.edu.tw, Chia-Feng Lu
34
Rat skull microCT
+ proper thresholding
THE END
alvin4016@nycu.edu.tw

More Related Content

Similar to MatlabImage_Class13_CFLu.pdf

Module 5 task 1 laura vilar
Module 5 task 1 laura vilarModule 5 task 1 laura vilar
Module 5 task 1 laura vilarLaura Vilar
 
process control instrumentation lab and labview report
process control  instrumentation lab and labview  reportprocess control  instrumentation lab and labview  report
process control instrumentation lab and labview reportHari Krishna
 
Quantitative Methods for Lawyers - Bonus Module - Introduction to R, Installi...
Quantitative Methods for Lawyers - Bonus Module - Introduction to R, Installi...Quantitative Methods for Lawyers - Bonus Module - Introduction to R, Installi...
Quantitative Methods for Lawyers - Bonus Module - Introduction to R, Installi...Daniel Katz
 
Federated Non-Traditional Practical Work for Engineering Education
Federated Non-Traditional Practical Work for Engineering EducationFederated Non-Traditional Practical Work for Engineering Education
Federated Non-Traditional Practical Work for Engineering EducationTimothy Drysdale
 
Online_Examination
Online_ExaminationOnline_Examination
Online_ExaminationRupam Dey
 
Powell lynetta storyboard_week4
Powell lynetta storyboard_week4Powell lynetta storyboard_week4
Powell lynetta storyboard_week4Walden University
 
Year 5-6: Ideas for teaching coding
Year 5-6: Ideas for teaching codingYear 5-6: Ideas for teaching coding
Year 5-6: Ideas for teaching codingJoanne Villis
 
Powell lynetta storyboard_week6
Powell lynetta storyboard_week6Powell lynetta storyboard_week6
Powell lynetta storyboard_week6Walden University
 
A brief history of automation in Software Engineering
A brief history of automation in Software EngineeringA brief history of automation in Software Engineering
A brief history of automation in Software EngineeringGeorg Buske
 
Screencasting presentation-used in demo modified
Screencasting presentation-used in demo modifiedScreencasting presentation-used in demo modified
Screencasting presentation-used in demo modifiedA Cutler
 
Screencasting for Staff and Student Development - MAME 2010
Screencasting for Staff and Student Development - MAME 2010Screencasting for Staff and Student Development - MAME 2010
Screencasting for Staff and Student Development - MAME 2010mikitchenlady
 
Delivering information to students 24/7 with Camtasia.
Delivering information to students 24/7 with Camtasia.Delivering information to students 24/7 with Camtasia.
Delivering information to students 24/7 with Camtasia.Kathleen Carlson
 
The VP R&D Open Seminar on Project Management, SCRUM, Agile and Continuous De...
The VP R&D Open Seminar on Project Management, SCRUM, Agile and Continuous De...The VP R&D Open Seminar on Project Management, SCRUM, Agile and Continuous De...
The VP R&D Open Seminar on Project Management, SCRUM, Agile and Continuous De...Moshe Kaplan
 
Por que (não) Lua? - Esquenta do Hackathon CAF FIESP 2015
Por que (não) Lua? - Esquenta do Hackathon CAF FIESP 2015Por que (não) Lua? - Esquenta do Hackathon CAF FIESP 2015
Por que (não) Lua? - Esquenta do Hackathon CAF FIESP 2015Fabio Mascarenhas
 
MCLI Technology Tools in the Classroom - Elie Chmouni v2
MCLI Technology Tools in the Classroom - Elie Chmouni v2MCLI Technology Tools in the Classroom - Elie Chmouni v2
MCLI Technology Tools in the Classroom - Elie Chmouni v2Mary McGlasson
 
Technology Tools in the Classroom - Elie Chmouni
Technology Tools in the Classroom - Elie ChmouniTechnology Tools in the Classroom - Elie Chmouni
Technology Tools in the Classroom - Elie ChmouniMary McGlasson
 
Programming Without Coding Technology (PWCT) Getting Started - The Time Machine
Programming Without Coding Technology (PWCT)  Getting Started - The Time MachineProgramming Without Coding Technology (PWCT)  Getting Started - The Time Machine
Programming Without Coding Technology (PWCT) Getting Started - The Time MachineMahmoud Samir Fayed
 

Similar to MatlabImage_Class13_CFLu.pdf (20)

Module 5 task 1 laura vilar
Module 5 task 1 laura vilarModule 5 task 1 laura vilar
Module 5 task 1 laura vilar
 
process control instrumentation lab and labview report
process control  instrumentation lab and labview  reportprocess control  instrumentation lab and labview  report
process control instrumentation lab and labview report
 
Quantitative Methods for Lawyers - Bonus Module - Introduction to R, Installi...
Quantitative Methods for Lawyers - Bonus Module - Introduction to R, Installi...Quantitative Methods for Lawyers - Bonus Module - Introduction to R, Installi...
Quantitative Methods for Lawyers - Bonus Module - Introduction to R, Installi...
 
Federated Non-Traditional Practical Work for Engineering Education
Federated Non-Traditional Practical Work for Engineering EducationFederated Non-Traditional Practical Work for Engineering Education
Federated Non-Traditional Practical Work for Engineering Education
 
Online_Examination
Online_ExaminationOnline_Examination
Online_Examination
 
Iste13 carruthers
Iste13 carruthersIste13 carruthers
Iste13 carruthers
 
Powell lynetta storyboard_week4
Powell lynetta storyboard_week4Powell lynetta storyboard_week4
Powell lynetta storyboard_week4
 
Year 5-6: Ideas for teaching coding
Year 5-6: Ideas for teaching codingYear 5-6: Ideas for teaching coding
Year 5-6: Ideas for teaching coding
 
Powell lynetta storyboard_week6
Powell lynetta storyboard_week6Powell lynetta storyboard_week6
Powell lynetta storyboard_week6
 
A brief history of automation in Software Engineering
A brief history of automation in Software EngineeringA brief history of automation in Software Engineering
A brief history of automation in Software Engineering
 
Screencasting presentation-used in demo modified
Screencasting presentation-used in demo modifiedScreencasting presentation-used in demo modified
Screencasting presentation-used in demo modified
 
Screencasting for Staff and Student Development - MAME 2010
Screencasting for Staff and Student Development - MAME 2010Screencasting for Staff and Student Development - MAME 2010
Screencasting for Staff and Student Development - MAME 2010
 
Delivering information to students 24/7 with Camtasia.
Delivering information to students 24/7 with Camtasia.Delivering information to students 24/7 with Camtasia.
Delivering information to students 24/7 with Camtasia.
 
The VP R&D Open Seminar on Project Management, SCRUM, Agile and Continuous De...
The VP R&D Open Seminar on Project Management, SCRUM, Agile and Continuous De...The VP R&D Open Seminar on Project Management, SCRUM, Agile and Continuous De...
The VP R&D Open Seminar on Project Management, SCRUM, Agile and Continuous De...
 
scratch-3-tutorial.pdf
scratch-3-tutorial.pdfscratch-3-tutorial.pdf
scratch-3-tutorial.pdf
 
Face Detection And Tracking
Face Detection And TrackingFace Detection And Tracking
Face Detection And Tracking
 
Por que (não) Lua? - Esquenta do Hackathon CAF FIESP 2015
Por que (não) Lua? - Esquenta do Hackathon CAF FIESP 2015Por que (não) Lua? - Esquenta do Hackathon CAF FIESP 2015
Por que (não) Lua? - Esquenta do Hackathon CAF FIESP 2015
 
MCLI Technology Tools in the Classroom - Elie Chmouni v2
MCLI Technology Tools in the Classroom - Elie Chmouni v2MCLI Technology Tools in the Classroom - Elie Chmouni v2
MCLI Technology Tools in the Classroom - Elie Chmouni v2
 
Technology Tools in the Classroom - Elie Chmouni
Technology Tools in the Classroom - Elie ChmouniTechnology Tools in the Classroom - Elie Chmouni
Technology Tools in the Classroom - Elie Chmouni
 
Programming Without Coding Technology (PWCT) Getting Started - The Time Machine
Programming Without Coding Technology (PWCT)  Getting Started - The Time MachineProgramming Without Coding Technology (PWCT)  Getting Started - The Time Machine
Programming Without Coding Technology (PWCT) Getting Started - The Time Machine
 

Recently uploaded

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 

Recently uploaded (20)

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 

MatlabImage_Class13_CFLu.pdf