interface and user experience. Responsive Design: Ensure the app is user-friendly across different device
rairaistar863
24 views
19 slides
Jun 14, 2024
Slide 1 of 19
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
About This Presentation
Creating a 3D Animated Plan Project app can be a great way to present and interact with urban planning and architectural designs. Here’s a detailed outline to help you develop such an app:
App Overview:
Name: CityVision 3D
Purpose: To visualize and interact with detailed 3D animated plans of urb...
Creating a 3D Animated Plan Project app can be a great way to present and interact with urban planning and architectural designs. Here’s a detailed outline to help you develop such an app:
App Overview:
Name: CityVision 3D
Purpose: To visualize and interact with detailed 3D animated plans of urban developments, providing stakeholders with a dynamic and engaging way to explore city designs.
Key Features:
Interactive 3D Model Viewer:
Zoom and Pan: Allows users to zoom in and out, and pan around the cityscape.
Rotational Control: Enable rotation of the model for a 360-degree view.
Layer Toggle: Users can toggle different layers (e.g., buildings, roads, green spaces).
Animation Tours:
Pre-Set Tours: Guided tours showcasing key features of the city plan.
Custom Tours: Users can create their own tours, selecting points of interest.
Detailed Information Points:
Hotspots: Clickable areas on the model that provide detailed information, images, and videos.
Pop-Up Details: Information boxes that appear when a hotspot is clicked, displaying details about specific buildings, infrastructure, or technologies.
Augmented Reality (AR) Integration:
AR View: Use AR to view the 3D model superimposed on the real world through the device’s camera.
Interactive Elements: Users can place and explore the city model in their physical environment.
Real-Time Data and Simulations:
Weather Simulation: Visualize the city under different weather conditions.
Traffic Flow: Show real-time traffic simulations and congestion points.
Sustainability and Environmental Impact:
Green Features: Highlight sustainable elements like solar panels, green roofs, and rainwater harvesting systems.
Impact Assessment: Visualize the environmental impact and benefits of various designs.
User Interaction and Feedback:
Comment and Suggest: Users can leave comments or suggestions on specific areas of the city.
Survey and Polls: Conduct surveys or polls to gather user opinions on various aspects of the plan.
Export and Share Options:
Model Export: Export the 3D model or selected views in different formats (e.g., .obj, .fbx).
Share Feature: Share the interactive model or snapshots via social media or email.
Technical Specifications:
Platform:
iOS and Android: Native app development using Swift (iOS) and Kotlin (Android).
Web Version: Progressive Web App (PWA) for broader access.
Development Tools:
Unity3D or Unreal Engine: For rendering high-quality 3D models and animations.
ARKit and ARCore: For implementing AR features.
Backend Services:
Cloud Storage: Use AWS S3 or Google Cloud Storage for storing models and data.
Database: Firebase or MongoDB for user data and feedback.
Design and UX/UI:
UI/UX Design Tools: Sketch, Figma, or Adobe XD for designing the users and screen sizes.
Size: 517.82 KB
Language: en
Added: Jun 14, 2024
Slides: 19 pages
Slide Content
HANDWRITTEN
DIGIT
RECOGNITION
(A Convolutional Neural Network Approach)
Rishabh Tyagi
(Maharaja Agrasen
Institute of Technology)
MAIN GOAL & APPLICATIONS
•Handwritten Digit Recognition is used to
recognize the Digits which are written by
hand.
•A handwritten digit recognition system is used
to visualize artificial neural networks.
•It is already widely used in the automatic
processing of bank cheques, postal addresses,
in mobile phones etc
•Scientists believe that the most intelligent
device is the Human Brain.
•There is no computer which can beat the level
of efficiency of human brain. These Inefficiencies
of the computer has lead to evolution of
“Artificial Neural Network”.
•They differ from conventional systems in the
sense that rather than being programmed these
system learn to recognize pattern.
Introduction
What are Neural Networks?
•Artificial neural networks, usually called neural networks
(NNs), are interconnected systems composed of many simple
processing elements (neurons) operating in parallel whose
function is determined by-
1) Network Structure
2) Connection Strengths
3) The Processing performed
at Computing elements or
nodes.
A neural cell in the brain
Training Dataset
•Training of the network is done by a dataset
named MNIST dataset.
•MNIST dataset has a training set of 60,000
examples, and a test set of 10,000 examples.
•All the images in the dataset are of 28x28
pixels.
•It is a good database for people who want to try learning
techniques and pattern recognition methods on real-world
data while spending minimal efforts on preprocessing and
formatting.
Why Convolutions?
Convolution is a simple mathematical operation
between two matrices in which one is multiplied to
the other element wise and sum of all these
multiplications is calculated.
Convolutions are performed for various reasons-
•Convolutions provide better feature extraction
•They save a lot of computation compared to ANNs.
•Less number of parameters are created than those in
pure fully connected layers.
•Due to less number of required parameters,
lesser fully connected layers are needed.
Architecture of a Convolutional Neural Network
Images are taken using webcam
•To take images from webcam, opencv
functions have been used
Pre-Processing of images
Pre-processing of images is done using a python library called Opencv.
It has certain functions which can be implemented to make necessary
changes in the image before passing them to network.
•Gaussian blur
–Gaussian blur is a function for smoothening an image.
•Adaptive-Threshold
–In Adaptive-Threshold, the algorithm calculate the threshold for a small
regions of the image. So we get different thresholds for different regions of
the same image and it gives us better results for images with varying
illumination.
•Dilation
–Dilation is done to make the digits bigger.
–Dilation is very useful in cases where digits have holes as noises in them
•Erosion
–Erosion is done to make the digits smaller or thinner
–This reduces the noise as thin noises get vanished after erosion.
Image after
Gaussian Blur
Image after AdaptiveThresholdImage after Dilate and Erode
Segmentation
•Segmentation of the image is done by the
concept contours in Opencv
•Contours
–Contours can be explained as simply curve joining
all the continuous points, having same color or
intensity
–The contours are a useful tool for shape analysis
and object detection and recognition.
Image after contour
extraction
Convolutional Neural Network
Architecture
This model’s architecture consists of three main parts, two convolutional
blocks and one fully connected neural network layer.
The inputs to this model are 28x28 images.
First Convolutional Block:
A 28x28 image is taken as input to this block. A padding of 2 units is added to
the image so as to retain its dimensions after a convolution operation on the
image by 16 5x5 filters/kernels.
The output of the convolution gives 16x28x28 volume, which is then input to
a ReLU activation function followed by a MaxPool operation. ReLU activation
is used to introduce some non-linearity.
This block outputs a 16x14x14 volume.
Second Convolutional Block
First step is again a convolution operation on 16x14x14 by 32
5x5kernels with padding of 2 units, obtaining a 32x14x14
volume.
It is passed through a ReLU activation followed by a MaxPool
operation.
Second convolutional block outputs a 32x7x7 volume.
Fully connected Neural Layer:
Here, a singe hidden layer of 10 nodes is taken as the fully
connected layer.
Finally, the output of the fully connected layer is passed to a
softmax function to obtain the output result of recognition.
Conclusion
•The handwritten digit recognition using
convolutional neural network has proved to
be of a fairly good efficiency.
•It works better than any other algorithm,
including artificial neural networks.
THANK YOU
Rishabh Tyagi
(Maharaja Agrasen
Institute of Technology)