Clear Filters
Clear Filters

We are trying to develop an AI model that detects 7 types of abnormal driver behavior

2 views (last 30 days)
When first training AI, should it be trained with videos or images?
I would appreciate it if you could tell me the neural network you recommend next.
  1 Comment
Umar
Umar on 30 Jun 2024
Hi HJ,
When starting to train AI, the choice between using videos or images depends on the specific task at hand. If the AI needs to understand temporal patterns or motion, training with videos might be more beneficial. On the other hand, if the task is more focused on static features, images could suffice.
For neural networks, a popular choice is Convolutional Neural Networks (CNNs) for image-related tasks due to their ability to extract spatial features effectively. You can implement CNNs in MATLAB using functions like convolution2dLayer, maxPooling2dLayer, and fullyConnectedLayer from the Deep Learning Toolbox.
If dealing with video data, Recurrent Neural Networks (RNNs) or 3D Convolutional Neural Networks (3D CNNs) could be suitable. MATLAB provides functions like lstmLayer for RNNs and 3dConvolutionLayer for 3D CNNs in the Deep Learning Toolbox.
Hope this will help achieve your goals.

Sign in to comment.

Answers (1)

Udit06
Udit06 on 4 Jul 2024
I would recommend using video data to capture temporal dynamics and context which are necessary for accurate behaviour detection.
You can refer to the following academic papers to understand which model you should use for training:
I hope this helps.

Categories

Find more on Recognition, Object Detection, and Semantic Segmentation in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!