SlideShare una empresa de Scribd logo
1 de 27
Descargar para leer sin conexión
The Minkowski sum
(applied to 2d geometry)
cloderic.mars@gmail.com
http://www.crowdscontrol.net
clodericmars
Formal definition
A and B are two sets
A⊕B is the Minkowski sum of A and B
A⊕B = {a+b! a∈A, b∈B}
What if A and B are 2D shapes ?
Hard to visualize ?
Let’s see some examples...
Example 1
A is any polygon
B is a convex polygon
A
B
x
y
A⊕B
x
y
Example 2
A is any polygon
B is any disc
A
B
x
y
A⊕B
x
y
Intuitive definition
What is A⊕B ?
Take B
Dip it into some paint
Put its (0,0) on A border
Translate it along the A
perimeter
The painted area is A⊕B
What can you do with that ?
Notably, motion planning
Free space
A is an obstacle
any 2D polygon
B is a moving object
2D translation : t
shape : a convex polygon or a disc
t ∈ A⊕-B collision
Example 1
A is any polygon
B is a convex polygon
A
B
x
y
-B
A⊕-B
x
y
x
y t
t ∉ A⊕-B no collision
x
y
t
t ∈ A⊕-B collision
Example 2
A is any polygon
B is any disc
A
B=-B
x
y
A⊕-B
x
y
A⊕-B
x
y
t
t ∉ A⊕-B no collision
A⊕-B
x
y
t
t ∈ A⊕-B collision
How is it computed ?
Two convex polygons
ConvexPolygon minkowskiSum(ConvexPolygon a, ConvexPolygon b)
{
Vertex[] computedVertices;
foreach(Vertex vA in a)
{
foreach(Vertex vB in b)
{
computedVertices.push_back(vA+vB);
}
}
return convexHull(computedVertices);
}
Any polygons
Method 1 : decomposition
decompose in convex polygons
compute the sum of each couple
the final sum is the union of each sub-sum
Method 2 : convolution
cf. sources
Polygon offsetting
P is a polygon
D is a disc of radius r
Computing P⊕D = Offsetting P by a radius r
Computation
Easy for a convex polygon
cf. sources
Sources
http://www.cgal.org/Manual/3.4/doc_html/
cgal_manual/Minkowski_sum_2/Chapter_main.html
http://wapedia.mobi/en/Minkowski_addition

Más contenido relacionado

La actualidad más candente

Optimization/Gradient Descent
Optimization/Gradient DescentOptimization/Gradient Descent
Optimization/Gradient Descentkandelin
 
Image Classification And Support Vector Machine
Image Classification And Support Vector MachineImage Classification And Support Vector Machine
Image Classification And Support Vector MachineShao-Chuan Wang
 
Module 4: Model Selection and Evaluation
Module 4: Model Selection and EvaluationModule 4: Model Selection and Evaluation
Module 4: Model Selection and EvaluationSara Hooker
 
Presentation on Neural Style Transfer
Presentation on Neural Style TransferPresentation on Neural Style Transfer
Presentation on Neural Style TransferSanjoy Datta
 
Classification and Regression
Classification and RegressionClassification and Regression
Classification and RegressionMegha Sharma
 
SVM Algorithm Explained | Support Vector Machine Tutorial Using R | Edureka
SVM Algorithm Explained | Support Vector Machine Tutorial Using R | EdurekaSVM Algorithm Explained | Support Vector Machine Tutorial Using R | Edureka
SVM Algorithm Explained | Support Vector Machine Tutorial Using R | EdurekaEdureka!
 
Evolutionary Algorithms
Evolutionary AlgorithmsEvolutionary Algorithms
Evolutionary AlgorithmsReem Alattas
 
Introduction to Optimization.ppt
Introduction to Optimization.pptIntroduction to Optimization.ppt
Introduction to Optimization.pptMonarjayMalbog1
 
Understanding Feature Space in Machine Learning
Understanding Feature Space in Machine LearningUnderstanding Feature Space in Machine Learning
Understanding Feature Space in Machine LearningAlice Zheng
 
A brief introduction to mutual information and its application
A brief introduction to mutual information and its applicationA brief introduction to mutual information and its application
A brief introduction to mutual information and its applicationHyun-hwan Jeong
 
P05 deep boltzmann machines cvpr2012 deep learning methods for vision
P05 deep boltzmann machines cvpr2012 deep learning methods for visionP05 deep boltzmann machines cvpr2012 deep learning methods for vision
P05 deep boltzmann machines cvpr2012 deep learning methods for visionzukun
 
Bayesian Inference and Filtering
Bayesian Inference and FilteringBayesian Inference and Filtering
Bayesian Inference and FilteringEngin Gul
 
Hill-climbing #2
Hill-climbing #2Hill-climbing #2
Hill-climbing #2Mohamed Gad
 
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...Simplilearn
 
Machine Learning lecture6(regularization)
Machine Learning lecture6(regularization)Machine Learning lecture6(regularization)
Machine Learning lecture6(regularization)cairo university
 
Hill Climbing Algorithm in Artificial Intelligence
Hill Climbing Algorithm in Artificial IntelligenceHill Climbing Algorithm in Artificial Intelligence
Hill Climbing Algorithm in Artificial IntelligenceBharat Bhushan
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality ReductionSaad Elbeleidy
 
Preparing your data for Machine Learning with Feature Scaling
Preparing your data for  Machine Learning with Feature ScalingPreparing your data for  Machine Learning with Feature Scaling
Preparing your data for Machine Learning with Feature ScalingRahul K Chauhan
 
Tutorial on Theory and Application of Generative Adversarial Networks
Tutorial on Theory and Application of Generative Adversarial NetworksTutorial on Theory and Application of Generative Adversarial Networks
Tutorial on Theory and Application of Generative Adversarial NetworksMLReview
 

La actualidad más candente (20)

Optimization/Gradient Descent
Optimization/Gradient DescentOptimization/Gradient Descent
Optimization/Gradient Descent
 
Image Classification And Support Vector Machine
Image Classification And Support Vector MachineImage Classification And Support Vector Machine
Image Classification And Support Vector Machine
 
Module 4: Model Selection and Evaluation
Module 4: Model Selection and EvaluationModule 4: Model Selection and Evaluation
Module 4: Model Selection and Evaluation
 
Presentation on Neural Style Transfer
Presentation on Neural Style TransferPresentation on Neural Style Transfer
Presentation on Neural Style Transfer
 
Classification and Regression
Classification and RegressionClassification and Regression
Classification and Regression
 
SVM Algorithm Explained | Support Vector Machine Tutorial Using R | Edureka
SVM Algorithm Explained | Support Vector Machine Tutorial Using R | EdurekaSVM Algorithm Explained | Support Vector Machine Tutorial Using R | Edureka
SVM Algorithm Explained | Support Vector Machine Tutorial Using R | Edureka
 
Evolutionary Algorithms
Evolutionary AlgorithmsEvolutionary Algorithms
Evolutionary Algorithms
 
Introduction to Optimization.ppt
Introduction to Optimization.pptIntroduction to Optimization.ppt
Introduction to Optimization.ppt
 
Understanding Feature Space in Machine Learning
Understanding Feature Space in Machine LearningUnderstanding Feature Space in Machine Learning
Understanding Feature Space in Machine Learning
 
A brief introduction to mutual information and its application
A brief introduction to mutual information and its applicationA brief introduction to mutual information and its application
A brief introduction to mutual information and its application
 
P05 deep boltzmann machines cvpr2012 deep learning methods for vision
P05 deep boltzmann machines cvpr2012 deep learning methods for visionP05 deep boltzmann machines cvpr2012 deep learning methods for vision
P05 deep boltzmann machines cvpr2012 deep learning methods for vision
 
Bayesian Inference and Filtering
Bayesian Inference and FilteringBayesian Inference and Filtering
Bayesian Inference and Filtering
 
Hill-climbing #2
Hill-climbing #2Hill-climbing #2
Hill-climbing #2
 
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
 
Machine Learning lecture6(regularization)
Machine Learning lecture6(regularization)Machine Learning lecture6(regularization)
Machine Learning lecture6(regularization)
 
Hill Climbing Algorithm in Artificial Intelligence
Hill Climbing Algorithm in Artificial IntelligenceHill Climbing Algorithm in Artificial Intelligence
Hill Climbing Algorithm in Artificial Intelligence
 
Dimensionality Reduction
Dimensionality ReductionDimensionality Reduction
Dimensionality Reduction
 
Preparing your data for Machine Learning with Feature Scaling
Preparing your data for  Machine Learning with Feature ScalingPreparing your data for  Machine Learning with Feature Scaling
Preparing your data for Machine Learning with Feature Scaling
 
Autoencoder
AutoencoderAutoencoder
Autoencoder
 
Tutorial on Theory and Application of Generative Adversarial Networks
Tutorial on Theory and Application of Generative Adversarial NetworksTutorial on Theory and Application of Generative Adversarial Networks
Tutorial on Theory and Application of Generative Adversarial Networks
 

Destacado

Translation, Dilation, Rotation, ReflectionTutorials Online
Translation, Dilation, Rotation, ReflectionTutorials OnlineTranslation, Dilation, Rotation, ReflectionTutorials Online
Translation, Dilation, Rotation, ReflectionTutorials OnlineWinpossible.com
 
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토dsefdtgfgrsdgrdfh
 
Translations, rotations, reflections, and dilations
Translations, rotations, reflections, and dilationsTranslations, rotations, reflections, and dilations
Translations, rotations, reflections, and dilationsWestwardEast
 
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토dsefdtgfgrsdgrdfh
 
Oliviamath problem
Oliviamath problemOliviamath problem
Oliviamath problemjbianco9910
 
Maths activity
Maths activity Maths activity
Maths activity gilem488
 
3002 a more with parrallel lines and anglesupdated 10 22-13
3002 a  more with parrallel lines and anglesupdated 10 22-133002 a  more with parrallel lines and anglesupdated 10 22-13
3002 a more with parrallel lines and anglesupdated 10 22-13jbianco9910
 
사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토dsefdtgfgrsdgrdfh
 
Proving quads are parralelograms
Proving quads are parralelogramsProving quads are parralelograms
Proving quads are parralelogramsjbianco9910
 
Linear approximations and_differentials
Linear approximations and_differentialsLinear approximations and_differentials
Linear approximations and_differentialsTarun Gehlot
 
Olivia’s math problem2
Olivia’s math problem2Olivia’s math problem2
Olivia’s math problem2jbianco9910
 
2d 3d animation and Digital services from Vinformax and Creantt
2d  3d animation and Digital services from Vinformax and Creantt 2d  3d animation and Digital services from Vinformax and Creantt
2d 3d animation and Digital services from Vinformax and Creantt Prabhu Venkatesh Subramanian
 
Math project
Math projectMath project
Math projectjnguyen20
 
Congruent figures 2013
Congruent figures 2013Congruent figures 2013
Congruent figures 2013jbianco9910
 
114333628 irisan-kerucut
114333628 irisan-kerucut114333628 irisan-kerucut
114333628 irisan-kerucuthafifa asiah
 
Deductivereasoning and bicond and algebraic proofs
Deductivereasoning and bicond and algebraic proofsDeductivereasoning and bicond and algebraic proofs
Deductivereasoning and bicond and algebraic proofsjbianco9910
 
Symmetry,rotation, reflection,translation
Symmetry,rotation, reflection,translationSymmetry,rotation, reflection,translation
Symmetry,rotation, reflection,translationEbin Santy
 
Local linear approximation
Local linear approximationLocal linear approximation
Local linear approximationTarun Gehlot
 
Graphing inverse functions
Graphing inverse functionsGraphing inverse functions
Graphing inverse functionsTarun Gehlot
 

Destacado (20)

Translation, Dilation, Rotation, ReflectionTutorials Online
Translation, Dilation, Rotation, ReflectionTutorials OnlineTranslation, Dilation, Rotation, ReflectionTutorials Online
Translation, Dilation, Rotation, ReflectionTutorials Online
 
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
 
Translations, rotations, reflections, and dilations
Translations, rotations, reflections, and dilationsTranslations, rotations, reflections, and dilations
Translations, rotations, reflections, and dilations
 
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
 
Oliviamath problem
Oliviamath problemOliviamath problem
Oliviamath problem
 
Maths activity
Maths activity Maths activity
Maths activity
 
3002 a more with parrallel lines and anglesupdated 10 22-13
3002 a  more with parrallel lines and anglesupdated 10 22-133002 a  more with parrallel lines and anglesupdated 10 22-13
3002 a more with parrallel lines and anglesupdated 10 22-13
 
사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
사설토토 <&&>∃‰∩kid85⊇∬△ <&&>사설토토 사설토토
 
Proving quads are parralelograms
Proving quads are parralelogramsProving quads are parralelograms
Proving quads are parralelograms
 
Linear approximations and_differentials
Linear approximations and_differentialsLinear approximations and_differentials
Linear approximations and_differentials
 
Olivia’s math problem2
Olivia’s math problem2Olivia’s math problem2
Olivia’s math problem2
 
2d 3d animation and Digital services from Vinformax and Creantt
2d  3d animation and Digital services from Vinformax and Creantt 2d  3d animation and Digital services from Vinformax and Creantt
2d 3d animation and Digital services from Vinformax and Creantt
 
Math project
Math projectMath project
Math project
 
Congruent figures 2013
Congruent figures 2013Congruent figures 2013
Congruent figures 2013
 
114333628 irisan-kerucut
114333628 irisan-kerucut114333628 irisan-kerucut
114333628 irisan-kerucut
 
Power series
Power seriesPower series
Power series
 
Deductivereasoning and bicond and algebraic proofs
Deductivereasoning and bicond and algebraic proofsDeductivereasoning and bicond and algebraic proofs
Deductivereasoning and bicond and algebraic proofs
 
Symmetry,rotation, reflection,translation
Symmetry,rotation, reflection,translationSymmetry,rotation, reflection,translation
Symmetry,rotation, reflection,translation
 
Local linear approximation
Local linear approximationLocal linear approximation
Local linear approximation
 
Graphing inverse functions
Graphing inverse functionsGraphing inverse functions
Graphing inverse functions
 

Último

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 

Último (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 

Minkowski Sum on 2D geometry