You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
491 B
11 lines
491 B
'use strict';
|
|
|
|
const vr = require('../controllers/videoRecognitionDemo');
|
|
|
|
module.exports = function (app, router, opts) {
|
|
const { middlewares: { auth } } = app
|
|
|
|
router.post('/videoRecognition/demo', vr.vrdemo, { content: '视频帧识别', visible: true });
|
|
router.get('/videoRecognition/vrReslt', vr.vrReslt, { content: '视频帧识别结果', visible: true });
|
|
router.post('/videoRecognition/play/report', vr.reportPlay, { content: '视频播放上报', visible: true });
|
|
};
|
|
|