Recommended
PDF
PPTX
Convolutional Neural Network and Its Applications
PPTX
Lecture 29 Convolutional Neural Networks - Computer Vision Spring2015
PPTX
Introduction to convolutional networks .pptx
PPTX
Convolutional Neural Network (CNN)of Deep Learning
PPT
digital image processing - convolutional networks
PPTX
Illustrative Introductory CNN
PPTX
PDF
Convolutional Neural Networks (CNN)
PDF
AI_Theory: Covolutional_neuron_network.pdf
PDF
lecture16.pdf000000000000000000000000000
PDF
PPTX
DEEP LEARNING UNIT 2 all about deep learning
PDF
PDF
Overview of Convolutional Neural Networks
PPTX
Deep Computer Vision - 1.pptx
PPTX
Introduction-to-CNN (1).pptx
PPTX
UNIT-IV.pptx Deep Learning overview algo
PPTX
PPTX
PPTX
Computer vision - edge detection
PPTX
Deep-Learning-2017-Lecture5CNN.pptx
DOCX
Deep Neural Network DNN.docx
PDF
Practical Deep Learning Using Tensor Flow - Sandeep Kath
PPTX
11_Saloni Malhotra_SummerTraining_PPT.pptx
PPTX
PDF
Classification case study + intro to cnn
PDF
Vector-Based Back Propagation Algorithm of.pdf
PDF
Cut off for Asst Professor Recruitment by HPSC i.e. Haryana Public Service Co...
PPTX
CHAPTER NO. 05 BIOLOGICAL SOURCE,CHEMICAL CONSTITUENTS AND THERAPEUTIC EFFICA...
More Related Content
PDF
PPTX
Convolutional Neural Network and Its Applications
PPTX
Lecture 29 Convolutional Neural Networks - Computer Vision Spring2015
PPTX
Introduction to convolutional networks .pptx
PPTX
Convolutional Neural Network (CNN)of Deep Learning
PPT
digital image processing - convolutional networks
PPTX
Illustrative Introductory CNN
PPTX
Similar to CNN_Image_Filtering_Presentation_Updated.pptx
PDF
Convolutional Neural Networks (CNN)
PDF
AI_Theory: Covolutional_neuron_network.pdf
PDF
lecture16.pdf000000000000000000000000000
PDF
PPTX
DEEP LEARNING UNIT 2 all about deep learning
PDF
PDF
Overview of Convolutional Neural Networks
PPTX
Deep Computer Vision - 1.pptx
PPTX
Introduction-to-CNN (1).pptx
PPTX
UNIT-IV.pptx Deep Learning overview algo
PPTX
PPTX
PPTX
Computer vision - edge detection
PPTX
Deep-Learning-2017-Lecture5CNN.pptx
DOCX
Deep Neural Network DNN.docx
PDF
Practical Deep Learning Using Tensor Flow - Sandeep Kath
PPTX
11_Saloni Malhotra_SummerTraining_PPT.pptx
PPTX
PDF
Classification case study + intro to cnn
PDF
Vector-Based Back Propagation Algorithm of.pdf
Recently uploaded
PDF
Cut off for Asst Professor Recruitment by HPSC i.e. Haryana Public Service Co...
PPTX
CHAPTER NO. 05 BIOLOGICAL SOURCE,CHEMICAL CONSTITUENTS AND THERAPEUTIC EFFICA...
PPTX
OCCULTISM IN JEHOVAH'S WITNESSES' ARTWORK
PDF
Renewable Energy Resources Unit 2 Easy notes (EduShine Classes).pdf
PPTX
Open to All Quiz Final Bagula Pathbhabana.pptx
PPTX
L5 DRG Pulsed Radiofrequency ablation.pptx
PDF
DNA.CEO: DNA-Computing For Kids, Teens, & Dummies (Like Me)
PDF
Gaming Quiz 2025- 27th October 2025, Quiz Club NITW
PPT
Clotting time - Practical - Hematology Physiology
PPTX
Haemolytic_Anaemia_UG_MBBS_Haemolysis_haemolysis
PPTX
Acid Base Titration First Year B Pharm.pptx
PPTX
Non aqueous titration First Year B. Pharm.pptx
PDF
Life-Processes-in-Animals PPT/7TH CLASS NEW NCERT /CURIOSITY SCIENCE /BY K SA...
PPTX
How to Setup Global Invoice in Odoo 19 POS
PPTX
2. Classification of vegetable and spice crops.pptx
PPTX
3. Off-season and protected cultivation of vegetable crops.pptx
PDF
Teaching and Learning (BD1TL) - B.Ed TNTEU
PPTX
Cultivation Practice of Tomato in Nepal.pptx
PPTX
Cultivation practice of Root vegetables.pptx
PPTX
Cultivation Practice of Major Cole crops in Nepal.pptx
CNN_Image_Filtering_Presentation_Updated.pptx 1. 2. Overview
• This presentation demonstrates how a CNN
with a Sobel filter processes images:
• - Applies Sobel filter to original and blurred
images
• - Visualizes edge detection behavior
• - Uses a single Conv2D layer without activation
3. Step 1: Install Dependencies
• !pip install tensorflow opencv-python
matplotlib --quiet
4. Step 2: Download Image
• Download a sample image from Wikimedia:
• - URL: Golden retriever image
• - Saved as 'dog.jpg'
5. Step 3: Load & Preprocess Image
• - Convert to grayscale
• - Resize to 128x128
• - Normalize pixel values
• - Reshape to (1, 128, 128, 1)
6. Step 4: Build CNN Model
• - Single Conv2D layer
• - 1 filter, 3x3 kernel
• - No activation function
• - No bias
7. Step 5: Set Sobel Filter
• Manually set the Conv2D weights to a Sobel X
filter:
• [[-1, 0, 1], [-2, 0, 2], [-1, 0, 1]]
• Detects vertical edges
8. Step 6: Apply Filter to Original
• - Use model.predict on the original image
• - Get 2D filtered output
• - Shows detected edges
9. Step 7: Blur and Filter Again
• - Apply Gaussian blur to original
• - Filter blurred image using same CNN
• - Shows reduced edge intensity
10. 11. Conclusion
• This example demonstrates:
• - How CNNs use filters for feature detection
• - Sobel filter behavior
• - Effect of blurring on edge detection
12. What is a CNN Model?
• A Convolutional Neural Network (CNN) is a
deep learning model used primarily for image
processing tasks.
• Key Components:
• 1. **Convolutional Layers** – Extract local
features from the input image using filters.
• 2. **Activation Function (ReLU)** – Adds non-
linearity to the network.