Find out whether the video content is reliable or not through the code entered in a box inside the interface
13 ビュー (過去 30 日間)
古いコメントを表示
Create a program with GUI to scan video content. If a code is found in the same content written in a box within the interface, the result will be displayed as authoritative. If it is different, it will be displayed as untrusted. If there is no code, it will be displayed as untrusted
The graphical user interface contains 1- Video selection button 2- The box for entering the code you want to search for within the selected video during all frames and all video coordinates. 3 - When pressed, the video plays and scans at the same time The result is displayed at the end of the video after matching the entered code and the code inside the video on the side —————————————————— I need this project because a graduation project is required from the university
0 件のコメント
回答 (1 件)
praguna manvi
2025 年 2 月 10 日 10:17
編集済み: praguna manvi
2025 年 2 月 10 日 10:51
As I understand, you are looking to build a GUI app to perform video processing, the following resources/steps can be useful to proceed:
1. Use "AppDesigner" to build the GUI, here is a simple example to do the same:
openExample('matlab/TutorialAppDesignerExample')
2. To select a video file from the App use "uigetfile", refer to the below documentation for the same:
3. For scaning the video frame by frame use "VideoReader", refer to the below link for examples on of its usage:
4. The text from the video frames can be read using the "ocr" function from Computer Vision Toolbox, refer to the following example:
openExample('vision/OCRExample')
Hope this helps!
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!