Atlas 200(非DK)+mxVision+rtsp
收藏回复举报
Atlas 200(非DK)+mxVision+rtsp
t('forum.solved') 已解决
新人帖
发表于2023-05-03 17:40:40
0 查看

【操作步骤&问题现象】

1、参考样例:https://gitee.com/ascend/mindxsdk-referenceapps/tree/master/contrib/ActionRecognition

2、环境:硬件:atlas200(非DK) 软件:cann 5.0.4.6,cann-toolkit5.0.4.6, mxVision2.0.4.6 ,python3.9.2,OpenCV3.4.0 ,ffmpeg4.3.2 ,项目在开发板上运行

3、pipeline 配置

{
    "detection+tracking": {
        "stream_config": {
            "deviceId": "0"
        },
        "mxpi_rtspsrc0": {
            "props": {
                "rtspUrl": "rtsp://192.168.1.2:8000/A_001.264"
                },
            "factory": "mxpi_rtspsrc",
            "next": "mxpi_videodecoder0"
        },
        "mxpi_videodecoder0":{
            "props": {
                "vdecChannelId": "0"
                },
            "factory": "mxpi_videodecoder",
            "next": "mxpi_imageresize0"
        },
        "mxpi_imageresize0":{            
            "props": {
                "dataSource": "mxpi_videodecoder0",
                "resizeHeight": "416",
                "resizeWidth": "416"
            },
            "factory": "mxpi_imageresize",
            "next": "mxpi_tensorinfer0"
        },
        "mxpi_tensorinfer0":{
            "props": {
                "dataSource": "mxpi_imageresize0",
                "modelPath": "./models/yolov3/yolov3_tf_bs1_fp16.om"
            },
            "factory": "mxpi_tensorinfer",
            "next": "mxpi_objectpostprocessor0"
        },
        "mxpi_objectpostprocessor0": {
            "props": {
                "dataSource": "mxpi_tensorinfer0",
                "funcLanguage":"c++",
                "postProcessConfigPath": "./models/yolov3/yolov3_tf_bs1_fp16.cfg",
                "labelPath": "./models/yolov3/coco.names",
                "postProcessLibPath": "../../lib/modelpostprocessors/libyolov3postprocess.so"
            },
            "factory": "mxpi_objectpostprocessor",
            "next": "mxpi_motsimplesort0"
        },
        "mxpi_motsimplesort0": {
             "props": {
                "dataSourceDetection": "mxpi_objectpostprocessor0"
            },
            "factory": "mxpi_motsimplesort",
            "next": "mxpi_pluginalone0"
        },
        "mxpi_pluginalone0": {
            "props": {
                "dataSourceTrack": "mxpi_motsimplesort0",
                "dataSourceDetection": "mxpi_objectpostprocessor0",
                "detectThresh": "8",
                "detectRatio": "0.8",
                "detectSleep": "270"
            },
            "factory": "mxpi_pluginalone",
            "next": "mxpi_dataserialize0"
        },
        "mxpi_dataserialize0": {
            "props": {
                "outputDataKeys": "mxpi_pluginalone0"
            },
            "factory": "mxpi_dataserialize",
            "next": "appsink0"
        },
        "appsink0": {
            "props": {
                "blocksize": "4096000"
            },
            "factory": "appsink"
        }
    }
}

4.编译插线并修改.so文件权限已经修改,如下图。

true

5.main.py未作修改,模型文件已经在自己环境下进行转换,live555可以正常起流。 true

6.运行日志如下 错误1 Fail to read SEPARATE_SCORE_THRESH from config, default value(0.3) will be used as separateScoreThresh_. 错误2:GetResultWithUniqueId error. errorCode=2017, errorMsg=[mxpi_pluginalone0][2017][DVPP: metadata is null] Metadata is NULL, failed

HwHiAiUser@davinci-mini:~/tool/mxVision/samples/ActionRecognition$ ./run.sh 
Begin to initialize Log.
WARNING: Logging before InitGoogleLogging() is written to STDERR
W20230503 08:37:40.413559  2673 ConfigUtil.h:103] [1016][Object, file or other resource doesn't exist] Fail to read (log_prefix) from config, default is: 1
W20230503 08:37:40.414052  2673 ConfigUtil.h:103] [1016][Object, file or other resource doesn't exist] Fail to read (colorlogtostderr) from config, default is: 1
W20230503 08:37:40.414219  2673 ConfigUtil.h:103] [1016][Object, file or other resource doesn't exist] Fail to read (stop_logging_if_full_disk) from config, default is: 1
The output directory of logs file exist.
Save logs information to specified directory.
I20230503 08:37:40.419394  2673 MxStreamManagerDptr.cpp:619] log rotate day(7).
I20230503 08:37:40.420042  2673 MxStreamManagerDptr.cpp:628] log rotate file number(50).
I20230503 08:37:40.552503  2673 MxsmElement.cpp:484] Gets appsink factory successfully.
I20230503 08:37:40.552963  2673 MxsmStream.cpp:1884] Validates appsink0 element successfully.
I20230503 08:37:40.561981  2673 MxsmElement.cpp:484] Gets mxpi_dataserialize factory successfully.
I20230503 08:37:40.562291  2673 MxsmStream.cpp:1884] Validates mxpi_dataserialize0 element successfully.
I20230503 08:37:40.569574  2673 MxsmElement.cpp:484] Gets mxpi_imageresize factory successfully.
I20230503 08:37:40.569870  2673 MxsmStream.cpp:1884] Validates mxpi_imageresize0 element successfully.
I20230503 08:37:40.575850  2673 MxsmElement.cpp:484] Gets mxpi_motsimplesort factory successfully.
I20230503 08:37:40.576120  2673 MxsmStream.cpp:1884] Validates mxpi_motsimplesort0 element successfully.
I20230503 08:37:40.583086  2673 MxsmElement.cpp:484] Gets mxpi_objectpostprocessor factory successfully.
I20230503 08:37:40.583374  2673 MxsmStream.cpp:1884] Validates mxpi_objectpostprocessor0 element successfully.
I20230503 08:37:40.588169  2673 MxsmElement.cpp:484] Gets mxpi_pluginalone factory successfully.
I20230503 08:37:40.588469  2673 MxsmStream.cpp:1884] Validates mxpi_pluginalone0 element successfully.
I20230503 08:37:40.591326  2673 MxsmElement.cpp:484] Gets mxpi_rtspsrc factory successfully.
I20230503 08:37:40.591571  2673 MxsmStream.cpp:1884] Validates mxpi_rtspsrc0 element successfully.
I20230503 08:37:40.600958  2673 MxsmElement.cpp:484] Gets mxpi_tensorinfer factory successfully.
I20230503 08:37:40.601241  2673 MxsmStream.cpp:1884] Validates mxpi_tensorinfer0 element successfully.
I20230503 08:37:40.607057  2673 MxsmElement.cpp:484] Gets mxpi_videodecoder factory successfully.
I20230503 08:37:40.607328  2673 MxsmStream.cpp:1884] Validates mxpi_videodecoder0 element successfully.
I20230503 08:37:40.607892  2673 MxsmStream.cpp:651] Gets the value of stream_config deviceId(0).
I20230503 08:37:40.608310  2673 MxsmStream.cpp:709] Add element to stream, element name is appsink0
I20230503 08:37:40.608722  2673 MxsmElement.cpp:137] Sets element(appsink0) to async.
I20230503 08:37:40.608927  2673 MxsmElement.cpp:227] Handles appsink factory successfully.
I20230503 08:37:40.609158  2673 MxsmElement.cpp:261] Sets blocksize property successfully.
I20230503 08:37:40.609350  2673 MxsmElement.cpp:387] Sets element(appsink0) properties successfully.
I20230503 08:37:40.609515  2673 MxsmElement.cpp:429] Creates appsink0 element successfully.
I20230503 08:37:40.609856  2673 MxsmStream.cpp:492] Adds appsink0 element to Stream successfully.
I20230503 08:37:40.610069  2673 MxsmStream.cpp:709] Add element to stream, element name is mxpi_dataserialize0
I20230503 08:37:40.610538  2673 MxsmElement.cpp:227] Handles mxpi_dataserialize factory successfully.
I20230503 08:37:40.610800  2673 MxsmElement.cpp:261] Sets deviceId property successfully.
I20230503 08:37:40.610994  2673 MxsmElement.cpp:292] Sets element(mxpi_dataserialize0) to use stream_config deviceId(0).
I20230503 08:37:40.611271  2673 MxsmElement.cpp:261] Sets outputDataKeys property successfully.
I20230503 08:37:40.611470  2673 MxsmElement.cpp:387] Sets element(mxpi_dataserialize0) properties successfully.
I20230503 08:37:40.611644  2673 MxsmElement.cpp:429] Creates mxpi_dataserialize0 element successfully.
I20230503 08:37:40.611912  2673 MxsmStream.cpp:492] Adds mxpi_dataserialize0 element to Stream successfully.
I20230503 08:37:40.612093  2673 MxsmStream.cpp:709] Add element to stream, element name is mxpi_imageresize0
I20230503 08:37:40.612569  2673 MxsmElement.cpp:227] Handles mxpi_imageresize factory successfully.
I20230503 08:37:40.612833  2673 MxsmElement.cpp:261] Sets deviceId property successfully.
I20230503 08:37:40.613031  2673 MxsmElement.cpp:292] Sets element(mxpi_imageresize0) to use stream_config deviceId(0).
I20230503 08:37:40.613370  2673 MxsmElement.cpp:261] Sets dataSource property successfully.
I20230503 08:37:40.613634  2673 MxsmElement.cpp:261] Sets resizeHeight property successfully.
I20230503 08:37:40.613961  2673 MxsmElement.cpp:261] Sets resizeWidth property successfully.
I20230503 08:37:40.614163  2673 MxsmElement.cpp:387] Sets element(mxpi_imageresize0) properties successfully.
I20230503 08:37:40.614342  2673 MxsmElement.cpp:429] Creates mxpi_imageresize0 element successfully.
I20230503 08:37:40.614642  2673 MxsmStream.cpp:492] Adds mxpi_imageresize0 element to Stream successfully.
I20230503 08:37:40.614851  2673 MxsmStream.cpp:709] Add element to stream, element name is mxpi_motsimplesort0
I20230503 08:37:40.615263  2673 MxsmElement.cpp:227] Handles mxpi_motsimplesort factory successfully.
I20230503 08:37:40.615521  2673 MxsmElement.cpp:261] Sets deviceId property successfully.
I20230503 08:37:40.615720  2673 MxsmElement.cpp:292] Sets element(mxpi_motsimplesort0) to use stream_config deviceId(0).
I20230503 08:37:40.615995  2673 MxsmElement.cpp:261] Sets dataSourceDetection property successfully.
I20230503 08:37:40.616196  2673 MxsmElement.cpp:387] Sets element(mxpi_motsimplesort0) properties successfully.
I20230503 08:37:40.616364  2673 MxsmElement.cpp:429] Creates mxpi_motsimplesort0 element successfully.
I20230503 08:37:40.616631  2673 MxsmStream.cpp:492] Adds mxpi_motsimplesort0 element to Stream successfully.
I20230503 08:37:40.616813  2673 MxsmStream.cpp:709] Add element to stream, element name is mxpi_objectpostprocessor0
I20230503 08:37:40.617301  2673 MxsmElement.cpp:227] Handles mxpi_objectpostprocessor factory successfully.
I20230503 08:37:40.617539  2673 MxsmElement.cpp:261] Sets deviceId property successfully.
I20230503 08:37:40.617789  2673 MxsmElement.cpp:292] Sets element(mxpi_objectpostprocessor0) to use stream_config deviceId(0).
I20230503 08:37:40.618096  2673 MxsmElement.cpp:261] Sets dataSource property successfully.
I20230503 08:37:40.618350  2673 MxsmElement.cpp:261] Sets funcLanguage property successfully.
I20230503 08:37:40.618598  2673 MxsmElement.cpp:261] Sets labelPath property successfully.
I20230503 08:37:40.618840  2673 MxsmElement.cpp:261] Sets postProcessConfigPath property successfully.
I20230503 08:37:40.619094  2673 MxsmElement.cpp:261] Sets postProcessLibPath property successfully.
I20230503 08:37:40.619299  2673 MxsmElement.cpp:387] Sets element(mxpi_objectpostprocessor0) properties successfully.
I20230503 08:37:40.619467  2673 MxsmElement.cpp:429] Creates mxpi_objectpostprocessor0 element successfully.
I20230503 08:37:40.619724  2673 MxsmStream.cpp:492] Adds mxpi_objectpostprocessor0 element to Stream successfully.
I20230503 08:37:40.619932  2673 MxsmStream.cpp:709] Add element to stream, element name is mxpi_pluginalone0
I20230503 08:37:40.620359  2673 MxsmElement.cpp:227] Handles mxpi_pluginalone factory successfully.
I20230503 08:37:40.620623  2673 MxsmElement.cpp:261] Sets deviceId property successfully.
I20230503 08:37:40.620818  2673 MxsmElement.cpp:292] Sets element(mxpi_pluginalone0) to use stream_config deviceId(0).
I20230503 08:37:40.621094  2673 MxsmElement.cpp:261] Sets dataSourceDetection property successfully.
I20230503 08:37:40.621338  2673 MxsmElement.cpp:261] Sets dataSourceTrack property successfully.
I20230503 08:37:40.621613  2673 MxsmElement.cpp:261] Sets detectRatio property successfully.
I20230503 08:37:40.621868  2673 MxsmElement.cpp:261] Sets detectSleep property successfully.
I20230503 08:37:40.622175  2673 MxsmElement.cpp:261] Sets detectThresh property successfully.
I20230503 08:37:40.622375  2673 MxsmElement.cpp:387] Sets element(mxpi_pluginalone0) properties successfully.
I20230503 08:37:40.622543  2673 MxsmElement.cpp:429] Creates mxpi_pluginalone0 element successfully.
I20230503 08:37:40.622808  2673 MxsmStream.cpp:492] Adds mxpi_pluginalone0 element to Stream successfully.
I20230503 08:37:40.622997  2673 MxsmStream.cpp:709] Add element to stream, element name is mxpi_rtspsrc0
I20230503 08:37:40.623397  2673 MxpiRtspSrc.cpp:918] MxpiRtspsrc(mxpi_rtspsrc0) construct start.
I20230503 08:37:40.646960  2673 MxpiRtspSrc.cpp:933] MxpiRtspsrc(mxpi_rtspsrc0) start create stream guarder thread for reconnect.
I20230503 08:37:40.647500  2673 MxpiRtspSrc.cpp:937] MxpiRtspsrc(mxpi_rtspsrc0) finish create stream guarder thread for reconnect.
I20230503 08:37:40.647704  2673 MxpiRtspSrc.cpp:938] MxpiRtspsrc(mxpi_rtspsrc0) construct end.
I20230503 08:37:40.647984  2673 MxsmElement.cpp:227] Handles Tee pipe fitting factory successfully.
I20230503 08:37:40.648252  2673 MxsmElement.cpp:227] Handles Template factory successfully.
I20230503 08:37:40.648454  2673 MxsmElement.cpp:227] Handles buffer channelid generator factory successfully.
I20230503 08:37:40.648640  2673 MxsmElement.cpp:227] Handles H.265 parser factory successfully.
I20230503 08:37:40.648864  2673 MxsmElement.cpp:227] Handles CapsFilter factory successfully.
I20230503 08:37:40.649047  2673 MxsmElement.cpp:227] Handles RTP H265 depayloader factory successfully.
I20230503 08:37:40.649273  2673 MxsmElement.cpp:227] Handles buffer channelid generator factory successfully.
I20230503 08:37:40.649458  2673 MxsmElement.cpp:227] Handles H.264 parser factory successfully.
I20230503 08:37:40.649685  2673 MxsmElement.cpp:227] Handles CapsFilter factory successfully.
I20230503 08:37:40.649871  2673 MxsmElement.cpp:227] Handles RTP H264 depayloader factory successfully.
I20230503 08:37:40.650136  2673 MxsmElement.cpp:227] Handles RTSP packet receiver factory successfully.
I20230503 08:37:40.650314  2673 MxsmElement.cpp:227] Handles mxpi_rtspsrc factory successfully.
I20230503 08:37:40.650612  2673 MxsmElement.cpp:261] Sets rtspUrl property successfully.
I20230503 08:37:40.650797  2673 MxsmElement.cpp:387] Sets element(mxpi_rtspsrc0) properties successfully.
I20230503 08:37:40.651022  2673 MxsmElement.cpp:429] Creates mxpi_rtspsrc0 element successfully.
I20230503 08:37:40.651398  2673 MxsmStream.cpp:492] Adds mxpi_rtspsrc0 element to Stream successfully.
I20230503 08:37:40.651607  2673 MxsmStream.cpp:709] Add element to stream, element name is mxpi_tensorinfer0
I20230503 08:37:40.652194  2673 MxsmElement.cpp:227] Handles mxpi_tensorinfer factory successfully.
I20230503 08:37:40.652458  2673 MxsmElement.cpp:261] Sets deviceId property successfully.
I20230503 08:37:40.652638  2673 MxsmElement.cpp:292] Sets element(mxpi_tensorinfer0) to use stream_config deviceId(0).
I20230503 08:37:40.653012  2673 MxsmElement.cpp:261] Sets dataSource property successfully.
I20230503 08:37:40.653245  2673 MxsmElement.cpp:261] Sets modelPath property successfully.
I20230503 08:37:40.653427  2673 MxsmElement.cpp:387] Sets element(mxpi_tensorinfer0) properties successfully.
I20230503 08:37:40.653635  2673 MxsmElement.cpp:429] Creates mxpi_tensorinfer0 element successfully.
I20230503 08:37:40.653862  2673 MxsmStream.cpp:492] Adds mxpi_tensorinfer0 element to Stream successfully.
I20230503 08:37:40.654131  2673 MxsmStream.cpp:709] Add element to stream, element name is mxpi_videodecoder0
I20230503 08:37:40.654577  2673 MxsmElement.cpp:227] Handles mxpi_videodecoder factory successfully.
I20230503 08:37:40.654819  2673 MxsmElement.cpp:261] Sets deviceId property successfully.
I20230503 08:37:40.654999  2673 MxsmElement.cpp:292] Sets element(mxpi_videodecoder0) to use stream_config deviceId(0).
I20230503 08:37:40.655293  2673 MxsmElement.cpp:261] Sets vdecChannelId property successfully.
I20230503 08:37:40.655476  2673 MxsmElement.cpp:387] Sets element(mxpi_videodecoder0) properties successfully.
I20230503 08:37:40.655685  2673 MxsmElement.cpp:429] Creates mxpi_videodecoder0 element successfully.
I20230503 08:37:40.655933  2673 MxsmStream.cpp:492] Adds mxpi_videodecoder0 element to Stream successfully.
I20230503 08:37:40.657577  2673 MxsmStream.cpp:608] Links all elements successfully.
I20230503 08:37:40.657799  2673 MxsmElement.cpp:980] Element(appsink0) register probe function successfully.
I20230503 08:37:40.658051  2673 MxsmElement.cpp:972] Element(mxpi_rtspsrc0) register probe function successfully.
I20230503 08:37:40.658509  2673 MxGstBase.cpp:792] element(mxpi_dataserialize0) gst_change_state NULL_TO_READY.
I20230503 08:37:40.744247  2673 MxGstBase.cpp:792] element(mxpi_pluginalone0) gst_change_state NULL_TO_READY.
I20230503 08:37:40.744745  2673 MxGstBase.cpp:792] element(mxpi_motsimplesort0) gst_change_state NULL_TO_READY.
I20230503 08:37:40.745026  2673 MxGstBase.cpp:792] element(mxpi_objectpostprocessor0) gst_change_state NULL_TO_READY.
I20230503 08:37:40.745360  2673 MxGstBase.cpp:792] element(mxpi_tensorinfer0) gst_change_state NULL_TO_READY.
I20230503 08:37:40.745627  2673 MxGstBase.cpp:792] element(mxpi_imageresize0) gst_change_state NULL_TO_READY.
I20230503 08:37:40.745972  2673 MxGstBase.cpp:792] element(mxpi_videodecoder0) gst_change_state NULL_TO_READY.
I20230503 08:37:40.746485  2673 MxGstBase.cpp:792] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) gst_change_state NULL_TO_READY.
I20230503 08:37:40.747136  2673 MxGstBase.cpp:799] element(mxpi_dataserialize0) gst_change_state READY_TO_PAUSED.
I20230503 08:37:40.747334  2673 MxGstBase.cpp:712] element(mxpi_dataserialize0) No dataSource property.
I20230503 08:37:40.747603  2673 MxGstBase.cpp:749] element(mxpi_dataserialize0) dataSourceKey is mxpi_pluginalone0
I20230503 08:37:40.747798  2673 MxpiDataSerialize.cpp:21] Begin to initialize MxpiDataSerialize(mxpi_dataserialize0).
I20230503 08:37:40.748068  2673 MxpiDataSerialize.cpp:24] outputDataKeys(mxpi_pluginalone0).
I20230503 08:37:40.748252  2673 MxpiDataSerialize.cpp:26] End to initialize MxpiDataSerialize(mxpi_dataserialize0).
I20230503 08:37:40.748513  2673 MxGstBase.cpp:799] element(mxpi_pluginalone0) gst_change_state READY_TO_PAUSED.
I20230503 08:37:40.748692  2673 MxGstBase.cpp:702] element(mxpi_pluginalone0) dataSourceKey=dataSourceDetection, dataSourceValue=mxpi_objectpostprocessor0
I20230503 08:37:40.748903  2673 MxGstBase.cpp:702] element(mxpi_pluginalone0) dataSourceKey=dataSourceTrack, dataSourceValue=mxpi_motsimplesort0
I20230503 08:37:40.749102  2673 MxGstBase.cpp:749] element(mxpi_pluginalone0) dataSourceKey is mxpi_motsimplesort0
I20230503 08:37:40.749328  2673 PluginAlone.cpp:26] PluginAlone::Init start.
I20230503 08:37:40.749648  2673 MxGstBase.cpp:799] element(mxpi_motsimplesort0) gst_change_state READY_TO_PAUSED.
I20230503 08:37:40.749846  2673 MxGstBase.cpp:702] element(mxpi_motsimplesort0) dataSourceKey=dataSourceDetection, dataSourceValue=mxpi_objectpostprocessor0
I20230503 08:37:40.750165  2673 MxGstBase.cpp:702] element(mxpi_motsimplesort0) dataSourceKey=dataSourceFeature, dataSourceValue=
I20230503 08:37:40.750372  2673 MxGstBase.cpp:749] element(mxpi_motsimplesort0) dataSourceKey is mxpi_objectpostprocessor0
I20230503 08:37:40.750557  2673 MxpiMotSimpleSortBase.cpp:32] Begin to initialize MxpiMotSimpleSort(mxpi_motsimplesort0).
I20230503 08:37:40.750797  2673 MxpiMotSimpleSortBase.cpp:35] The detectionDataSource is mxpi_objectpostprocessor0(mxpi_motsimplesort0).
I20230503 08:37:40.750977  2673 MxpiMotSimpleSortBase.cpp:38] The featureDataSource is (mxpi_motsimplesort0).
I20230503 08:37:40.751214  2673 MxpiMotSimpleSortBase.cpp:48] End to initialize MxpiMotSimpleSort(mxpi_motsimplesort0).
I20230503 08:37:40.751432  2673 MxGstBase.cpp:799] element(mxpi_objectpostprocessor0) gst_change_state READY_TO_PAUSED.
I20230503 08:37:40.751628  2673 MxGstBase.cpp:702] element(mxpi_objectpostprocessor0) dataSourceKey=dataSource, dataSourceValue=mxpi_tensorinfer0
I20230503 08:37:40.751819  2673 MxGstBase.cpp:702] element(mxpi_objectpostprocessor0) dataSourceKey=dataSourceImage, dataSourceValue=auto
I20230503 08:37:40.752038  2673 MxGstBase.cpp:702] element(mxpi_objectpostprocessor0) dataSourceKey=dataSourceResize, dataSourceValue=auto
I20230503 08:37:40.752182  2673 MxGstBase.cpp:702] element(mxpi_objectpostprocessor0) dataSourceKey=dataSourceRoiBoxes, dataSourceValue=auto
I20230503 08:37:40.752447  2673 MxGstBase.cpp:749] element(mxpi_objectpostprocessor0) dataSourceKey is mxpi_tensorinfer0
I20230503 08:37:40.752636  2673 MxpiObjectPostProcessor.cpp:40] Begin to initialize MxpiObjectPostProcessor(mxpi_objectpostprocessor0).
I20230503 08:37:40.752929  2673 MxImagePostProcessorBase.cpp:35] Begin to initialize MxImagePostProcessorBase(mxpi_objectpostprocessor0).
I20230503 08:37:40.753093  2673 MxModelPostProcessorBase.cpp:148] Begin to initialize MxModelPostProcessorPluginBase(mxpi_objectpostprocessor0).
I20230503 08:37:40.753322  2673 MxModelPostProcessorBase.cpp:167] element(mxpi_objectpostprocessor0) property dataSource(mxpi_tensorinfer0).
I20230503 08:37:40.756379  2673 MxModelPostProcessorBase.cpp:178] End to initialize MxModelPostProcessorPluginBase(mxpi_objectpostprocessor0).
I20230503 08:37:40.756609  2673 MxImagePostProcessorBase.cpp:49] dataSourceRoiBoxes_: auto
I20230503 08:37:40.756754  2673 MxImagePostProcessorBase.cpp:53] dataSourceResize_: auto
I20230503 08:37:40.756984  2673 MxImagePostProcessorBase.cpp:55] dataSourceImage_: auto
I20230503 08:37:40.757148  2673 MxImagePostProcessorBase.cpp:57] End to initialize MxImagePostProcessorBase(mxpi_objectpostprocessor0).
I20230503 08:37:40.757372  2673 Yolov3PostProcess.cpp:225] Begin to get Yolov3PostProcess instance.
I20230503 08:37:40.757584  2673 Yolov3PostProcess.cpp:230] End to get Yolov3PostProcess instance.
I20230503 08:37:40.757925  2673 FileUtils.cpp:395] Check Owner group permission: Current permission is 6, but required no greater than 4.
I20230503 08:37:40.758100  2673 FileUtils.cpp:395] Check Other group permission: Current permission is 4, but required no greater than 0.
I20230503 08:37:40.758476  2673 FileUtils.cpp:395] Check Owner group permission: Current permission is 6, but required no greater than 4.
I20230503 08:37:40.758625  2673 FileUtils.cpp:395] Check Other group permission: Current permission is 4, but required no greater than 0.
I20230503 08:37:40.759039  2673 ObjectPostProcessBase.cpp:64] [1016][Object, file or other resource doesn't exist] Fail to read SEPARATE_SCORE_THRESH from config, default value(0.3) will be used as separateScoreThresh_.
W20230503 08:37:40.759311  2673 Yolov3PostProcessDptr.hpp:578] [1016][Object, file or other resource doesn't exist] Fail to read YOLO_VERSION from config, default is: 3
W20230503 08:37:40.760028  2673 Yolov3PostProcessDptr.hpp:600] [1016][Object, file or other resource doesn't exist] Fail to read FRAMEWORK from config, default is: TensorFlow
I20230503 08:37:40.760468  2673 Yolov3PostProcessDptr.hpp:625] Your model postprocess setting is: Yolov3, tensorflow, NHWC
I20230503 08:37:40.760663  2673 MxpiObjectPostProcessor.cpp:55] End to initialize MxpiObjectPostProcessor(mxpi_objectpostprocessor0).
I20230503 08:37:40.760892  2673 MxGstBase.cpp:799] element(mxpi_tensorinfer0) gst_change_state READY_TO_PAUSED.
I20230503 08:37:40.761112  2673 MxGstBase.cpp:702] element(mxpi_tensorinfer0) dataSourceKey=dataSource, dataSourceValue=mxpi_imageresize0
I20230503 08:37:40.761314  2673 MxGstBase.cpp:749] element(mxpi_tensorinfer0) dataSourceKey is mxpi_imageresize0
I20230503 08:37:40.761548  2673 MxpiTensorInfer.cpp:92] Begin to initialize MxpiTensorInfer(mxpi_tensorinfer0).
I20230503 08:37:40.761749  2673 MxpiTensorInfer.cpp:344] dataSources (mxpi_imageresize0are read from config file in plugin(mxpi_tensorinfer0).
I20230503 08:37:40.762188  2673 FileUtils.cpp:395] Check Owner group permission: Current permission is 6, but required no greater than 4.
I20230503 08:37:40.762241  2673 FileUtils.cpp:395] Check Other group permission: Current permission is 4, but required no greater than 0.
I20230503 08:37:41.796527  2673 MxpiTensorInfer.cpp:359] Shape of output tensor: 0 (name: yolov3/yolov3_head/Conv_6/BiasAdd:0, dtype: TENSOR_DTYPE_FLOAT32) of model is as follow: 
I20230503 08:37:41.796659  2673 MxpiTensorInfer.cpp:362]    dim 0: 1
I20230503 08:37:41.796986  2673 MxpiTensorInfer.cpp:362]    dim 1: 13
I20230503 08:37:41.797031  2673 MxpiTensorInfer.cpp:362]    dim 2: 13
I20230503 08:37:41.797399  2673 MxpiTensorInfer.cpp:362]    dim 3: 255
I20230503 08:37:41.797540  2673 MxpiTensorInfer.cpp:359] Shape of output tensor: 1 (name: yolov3/yolov3_head/Conv_14/BiasAdd:0, dtype: TENSOR_DTYPE_FLOAT32) of model is as follow: 
I20230503 08:37:41.797855  2673 MxpiTensorInfer.cpp:362]    dim 0: 1
I20230503 08:37:41.798043  2673 MxpiTensorInfer.cpp:362]    dim 1: 26
I20230503 08:37:41.798255  2673 MxpiTensorInfer.cpp:362]    dim 2: 26
I20230503 08:37:41.798417  2673 MxpiTensorInfer.cpp:362]    dim 3: 255
I20230503 08:37:41.798632  2673 MxpiTensorInfer.cpp:359] Shape of output tensor: 2 (name: yolov3/yolov3_head/Conv_22/BiasAdd:0, dtype: TENSOR_DTYPE_FLOAT32) of model is as follow: 
I20230503 08:37:41.798803  2673 MxpiTensorInfer.cpp:362]    dim 0: 1
I20230503 08:37:41.799007  2673 MxpiTensorInfer.cpp:362]    dim 1: 52
I20230503 08:37:41.799170  2673 MxpiTensorInfer.cpp:362]    dim 2: 52
I20230503 08:37:41.799348  2673 MxpiTensorInfer.cpp:362]    dim 3: 255
I20230503 08:37:41.799513  2673 MxpiTensorInfer.cpp:367] Shape of input tensor: 0 (name: input, dtype: TENSOR_DTYPE_UINT8) of model is as follow: 
I20230503 08:37:41.799727  2673 MxpiTensorInfer.cpp:370]    dim 0: 1
I20230503 08:37:41.799912  2673 MxpiTensorInfer.cpp:370]    dim 1: 416
I20230503 08:37:41.800091  2673 MxpiTensorInfer.cpp:370]    dim 2: 416
I20230503 08:37:41.800253  2673 MxpiTensorInfer.cpp:370]    dim 3: 3
I20230503 08:37:41.802484  2673 MxpiTensorInfer.cpp:130] End to initialize MxpiTensorInfer(mxpi_tensorinfer0).
I20230503 08:37:41.802850  2673 MxGstBase.cpp:799] element(mxpi_imageresize0) gst_change_state READY_TO_PAUSED.
I20230503 08:37:41.803053  2673 MxGstBase.cpp:702] element(mxpi_imageresize0) dataSourceKey=dataSource, dataSourceValue=mxpi_videodecoder0
I20230503 08:37:41.803309  2673 MxGstBase.cpp:749] element(mxpi_imageresize0) dataSourceKey is mxpi_videodecoder0
I20230503 08:37:41.803519  2673 MxpiImageResize.cpp:74] Begin to initialize MxpiImageResize(mxpi_imageresize0).
I20230503 08:37:41.803861  2673 DvppWrapper.cpp:27] Current chip environment is Ascend310, DvppWrapper is initialized by DvppWrapperDptrWithAcl.
I20230503 08:37:41.823225  2673 MxpiImageResize.cpp:119] End to initialize MxpiImageResize(mxpi_imageresize0).
I20230503 08:37:41.823717  2673 MxGstBase.cpp:799] element(mxpi_videodecoder0) gst_change_state READY_TO_PAUSED.
I20230503 08:37:41.823910  2673 MxGstBase.cpp:712] element(mxpi_videodecoder0) No dataSource property.
I20230503 08:37:41.824294  2673 MxGstBase.cpp:749] element(mxpi_videodecoder0) dataSourceKey is bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0
I20230503 08:37:41.824544  2673 MxpiVideoDecoder.cpp:31] Begin to initialize MxpiVideoDecoder(mxpi_videodecoder0).
I20230503 08:37:41.824744  2673 MxpiVideoDecoder.cpp:34] element(mxpi_videodecoder0) property inputVideoFormat(H264).
I20230503 08:37:41.824920  2673 MxpiVideoDecoder.cpp:36] element(mxpi_videodecoder0) property outputImageFormat(YUV420SP_NV12).
I20230503 08:37:41.825141  2673 MxpiVideoDecoder.cpp:38] element(mxpi_videodecoder0) property vdecChannelId(0).
I20230503 08:37:41.825320  2673 MxpiVideoDecoder.cpp:40] element(mxpi_videodecoder0) property outMode(0).
I20230503 08:37:41.825541  2673 MxpiVideoDecoder.cpp:42] element(mxpi_videodecoder0) property outPicHeightMax(0).
I20230503 08:37:41.825758  2673 MxpiVideoDecoder.cpp:44] element(mxpi_videodecoder0) property outPicWidthMax(0).
I20230503 08:37:41.825992  2673 DvppWrapper.cpp:27] Current chip environment is Ascend310, DvppWrapper is initialized by DvppWrapperDptrWithAcl.
I20230503 08:37:41.826520  2722 DvppWrapperWithAcl.cpp:29] thread start 
I20230503 08:37:41.827983  2673 DvppWrapperWithAcl.cpp:146] Vdec init resource successfully.
I20230503 08:37:41.828169  2673 MxpiVideoDecoder.cpp:64] End to initialize MxpiVideoDecoder(mxpi_videodecoder0).
I20230503 08:37:41.828861  2673 MxGstBase.cpp:799] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) gst_change_state READY_TO_PAUSED.
I20230503 08:37:41.829063  2673 MxGstBase.cpp:702] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) dataSourceKey=dataSource, dataSourceValue=auto
I20230503 08:37:41.829291  2673 MxGstBase.cpp:733] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) pad peer query for data_source_key failed.
I20230503 08:37:41.829636  2673 MxGstBase.cpp:733] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) pad peer query for data_source_key failed.
I20230503 08:37:41.829828  2673 MxpiParallel2Serial.cpp:45] Begin to initialize MxpiParallel2Serial(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0).
I20230503 08:37:41.830101  2673 MxpiParallel2Serial.cpp:50] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) not set property dataSource, use default value().
I20230503 08:37:41.830291  2673 MxpiParallel2Serial.cpp:69] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) will work in async(0) mode.
I20230503 08:37:41.830504  2673 MxpiParallel2Serial.cpp:89] You select common usage, element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) will not write/delete any data.
I20230503 08:37:41.830672  2673 MxpiParallel2Serial.cpp:62] End to initialize MxpiParallel2Serial(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0).
I20230503 08:37:41.830943  2673 MxpiRtspVideoInfo.cpp:84] element(mxpi_rtspsrc0, stream format:h264) fpsMode: 0
I20230503 08:37:41.831182  2673 MxpiRtspVideoInfo.cpp:84] element(mxpi_rtspsrc0, stream format:h265) fpsMode: 0
I20230503 08:37:41.833938  2673 MxGstBase.cpp:805] element(mxpi_dataserialize0) gst_change_state PAUSED_TO_PLAYING.
I20230503 08:37:41.834259  2673 MxGstBase.cpp:805] element(mxpi_pluginalone0) gst_change_state PAUSED_TO_PLAYING.
I20230503 08:37:41.834499  2673 MxGstBase.cpp:805] element(mxpi_motsimplesort0) gst_change_state PAUSED_TO_PLAYING.
I20230503 08:37:41.834774  2673 MxGstBase.cpp:805] element(mxpi_objectpostprocessor0) gst_change_state PAUSED_TO_PLAYING.
I20230503 08:37:41.835038  2673 MxGstBase.cpp:805] element(mxpi_tensorinfer0) gst_change_state PAUSED_TO_PLAYING.
I20230503 08:37:41.835305  2673 MxGstBase.cpp:805] element(mxpi_imageresize0) gst_change_state PAUSED_TO_PLAYING.
I20230503 08:37:41.835579  2673 MxGstBase.cpp:670] element(mxpi_imageresize0) dynamicImageSize=416,416;
I20230503 08:37:41.835844  2673 MxGstBase.cpp:805] element(mxpi_videodecoder0) gst_change_state PAUSED_TO_PLAYING.
I20230503 08:37:41.836315  2673 MxGstBase.cpp:805] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) gst_change_state PAUSED_TO_PLAYING.
I20230503 08:37:41.836954  2673 MxStreamManagerDptr.cpp:573] Creates stream(detection+tracking) successfully.
I20230503 08:37:41.837210  2673 MxStreamManager.cpp:179] Creates streams successfully.
I20230503 08:37:41.837478  2725 MxsmStream.cpp:326] state changed: NULL->READY
I20230503 08:37:41.837975  2725 MxsmStream.cpp:326] state changed: READY->PAUSED
I20230503 08:37:41.838438  2725 MxsmStream.cpp:326] state changed: PAUSED->PLAYING
I20230503 08:37:41.987100  2727 MxpiRtspSrc.cpp:767] element(mxpi_rtspsrc0) receive H264 stream
I20230503 08:37:41.991701  2727 MxpiRtspSrc.cpp:253] MxpiRtspsrc(mxpi_rtspsrc0) probe buffer success
I20230503 08:37:42.067430  2722 PluginAlone.cpp:68] PluginAlone::Process start
GetResultWithUniqueId error. errorCode=2017, errorMsg=[mxpi_pluginalone0][2017][DVPP: metadata is null] Metadata is NULL, failed


I20230503 08:37:42.069495  2673 MxsmStream.cpp:843] Begin to destroy stream(detection+tracking).
I20230503 08:37:42.070089  2673 MxsmStream.cpp:904] Send custom eos to the Stream successfully.
I20230503 08:37:42.070473  2673 MxsmStream.cpp:910] Send eos to the Stream successfully.
I20230503 08:37:42.070829  2673 MxGstBase.cpp:297] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0): flushStartNum: 1,sinkPadNum: 2
I20230503 08:37:42.071002  2673 MxGstBase.cpp:301] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) flushStartNum add one
I20230503 08:37:42.071337  2673 MxGstBase.cpp:297] element(mxpi_videodecoder0): flushStartNum: 1,sinkPadNum: 1
I20230503 08:37:42.071548  2673 MxGstBase.cpp:297] element(mxpi_imageresize0): flushStartNum: 1,sinkPadNum: 1
I20230503 08:37:42.071738  2673 MxGstBase.cpp:297] element(mxpi_tensorinfer0): flushStartNum: 1,sinkPadNum: 1
I20230503 08:37:42.071965  2673 MxGstBase.cpp:297] element(mxpi_objectpostprocessor0): flushStartNum: 1,sinkPadNum: 1
I20230503 08:37:42.072152  2673 MxGstBase.cpp:297] element(mxpi_motsimplesort0): flushStartNum: 1,sinkPadNum: 1
I20230503 08:37:42.072454  2673 MxGstBase.cpp:297] element(mxpi_pluginalone0): flushStartNum: 1,sinkPadNum: 1
I20230503 08:37:42.072649  2673 MxGstBase.cpp:297] element(mxpi_dataserialize0): flushStartNum: 1,sinkPadNum: 1
I20230503 08:37:42.073098  2673 MxsmStream.cpp:916] Flushes the Stream data successfully.
I20230503 08:37:42.073616  2673 MxGstBase.cpp:811] element(mxpi_dataserialize0) gst_change_state PLAYING_TO_PAUSED.
I20230503 08:37:42.073863  2673 MxGstBase.cpp:811] element(mxpi_pluginalone0) gst_change_state PLAYING_TO_PAUSED.
I20230503 08:37:42.074122  2673 MxGstBase.cpp:811] element(mxpi_motsimplesort0) gst_change_state PLAYING_TO_PAUSED.
I20230503 08:37:42.074352  2673 MxGstBase.cpp:811] element(mxpi_objectpostprocessor0) gst_change_state PLAYING_TO_PAUSED.
I20230503 08:37:42.074566  2673 MxGstBase.cpp:811] element(mxpi_tensorinfer0) gst_change_state PLAYING_TO_PAUSED.
I20230503 08:37:42.074820  2673 MxGstBase.cpp:811] element(mxpi_imageresize0) gst_change_state PLAYING_TO_PAUSED.
I20230503 08:37:42.075033  2673 MxGstBase.cpp:811] element(mxpi_videodecoder0) gst_change_state PLAYING_TO_PAUSED.
I20230503 08:37:42.075392  2673 MxGstBase.cpp:811] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) gst_change_state PLAYING_TO_PAUSED.
I20230503 08:37:42.076121  2673 MxGstBase.cpp:814] element(mxpi_dataserialize0) gst_change_state PAUSED_TO_READY.
I20230503 08:37:42.076340  2673 MxpiDataSerialize.cpp:32] Begin to deinitialize MxpiDataSerialize(mxpi_dataserialize0).
I20230503 08:37:42.076390  2673 MxpiDataSerialize.cpp:33] End to deinitialize MxpiDataSerialize(mxpi_dataserialize0).
I20230503 08:37:42.076773  2673 MxGstBase.cpp:814] element(mxpi_pluginalone0) gst_change_state PAUSED_TO_READY.
I20230503 08:37:42.076999  2673 PluginAlone.cpp:49] PluginAlone::DeInit end.
I20230503 08:37:42.077241  2673 MxGstBase.cpp:814] element(mxpi_motsimplesort0) gst_change_state PAUSED_TO_READY.
I20230503 08:37:42.077440  2673 MxpiMotSimpleSortBase.cpp:54] Begin to deinitialize MxpiMotSimpleSort(mxpi_motsimplesort0).
I20230503 08:37:42.077651  2673 MxpiMotSimpleSortBase.cpp:55] End to deinitialize MxpiMotSimpleSort(mxpi_motsimplesort0).
I20230503 08:37:42.077944  2673 MxGstBase.cpp:814] element(mxpi_objectpostprocessor0) gst_change_state PAUSED_TO_READY.
I20230503 08:37:42.078145  2673 MxpiObjectPostProcessor.cpp:178] Begin to deinitialize MxpiObjectPostProcessor(mxpi_objectpostprocessor0).
I20230503 08:37:42.078295  2673 MxImagePostProcessorBase.cpp:139] Begin to deinitialize MxImagePostProcessorBase(mxpi_objectpostprocessor0).
I20230503 08:37:42.078526  2673 MxModelPostProcessorBase.cpp:254] Begin to deinitialize MxModelPostProcessorPluginBase(mxpi_objectpostprocessor0).
I20230503 08:37:42.078753  2673 MxModelPostProcessorBase.cpp:271] End to deinitialize MxModelPostProcessorPluginBase(mxpi_objectpostprocessor0).
I20230503 08:37:42.078938  2673 MxImagePostProcessorBase.cpp:146] End to deinitialize MxImagePostProcessorBase(mxpi_objectpostprocessor0).
I20230503 08:37:42.079103  2673 MxpiObjectPostProcessor.cpp:187] End to deinitialize MxpiObjectPostProcessor(mxpi_objectpostprocessor0).
I20230503 08:37:42.079397  2673 MxGstBase.cpp:814] element(mxpi_tensorinfer0) gst_change_state PAUSED_TO_READY.
I20230503 08:37:42.079619  2673 MxpiTensorInfer.cpp:224] Begin to deinitialize MxpiTensorInfer(mxpi_tensorinfer0).
I20230503 08:37:42.123106  2673 MxpiTensorInfer.cpp:260] End to deinitialize MxpiTensorInfer(mxpi_tensorinfer0).
I20230503 08:37:42.123581  2673 MxGstBase.cpp:814] element(mxpi_imageresize0) gst_change_state PAUSED_TO_READY.
I20230503 08:37:42.123803  2673 MxpiImageResize.cpp:141] Begin to deinitialize MxpiImageResize(mxpi_imageresize0).
I20230503 08:37:42.126170  2673 MxpiImageResize.cpp:148] End to deinitialize MxpiImageResize(mxpi_imageresize0).
I20230503 08:37:42.126489  2673 MxGstBase.cpp:814] element(mxpi_videodecoder0) gst_change_state PAUSED_TO_READY.
I20230503 08:37:42.126749  2673 MxpiVideoDecoder.cpp:70] Begin to deinitialize MxpiVideoDecoder(mxpi_videodecoder0).
I20230503 08:37:42.224275  2673 DvppWrapperWithAcl.cpp:166] Destory thread start.
I20230503 08:37:42.224418  2673 DvppWrapperWithAcl.cpp:177] Destory thread successfully.
I20230503 08:37:42.224808  2673 MxpiVideoDecoder.cpp:78] End to deinitialize MxpiVideoDecoder(mxpi_videodecoder0).
I20230503 08:37:42.225419  2673 MxGstBase.cpp:814] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) gst_change_state PAUSED_TO_READY.
I20230503 08:37:42.225665  2673 MxpiParallel2Serial.cpp:96] Begin to deinitialize MxpiParallel2Serial(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0).
I20230503 08:37:42.225863  2673 MxpiParallel2Serial.cpp:97] End to deinitialize MxpiParallel2Serial(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0).
I20230503 08:37:42.229944  2673 MxGstBase.cpp:823] element(mxpi_dataserialize0) gst_change_state READY_TO_NULL.
I20230503 08:37:42.230203  2673 MxGstBase.cpp:823] element(mxpi_pluginalone0) gst_change_state READY_TO_NULL.
I20230503 08:37:42.230453  2673 MxGstBase.cpp:823] element(mxpi_motsimplesort0) gst_change_state READY_TO_NULL.
I20230503 08:37:42.230692  2673 MxGstBase.cpp:823] element(mxpi_objectpostprocessor0) gst_change_state READY_TO_NULL.
I20230503 08:37:42.230935  2673 MxGstBase.cpp:823] element(mxpi_tensorinfer0) gst_change_state READY_TO_NULL.
I20230503 08:37:42.231200  2673 MxGstBase.cpp:823] element(mxpi_imageresize0) gst_change_state READY_TO_NULL.
I20230503 08:37:42.231456  2673 MxGstBase.cpp:823] element(mxpi_videodecoder0) gst_change_state READY_TO_NULL.
I20230503 08:37:42.231812  2673 MxGstBase.cpp:823] element(bin_mxpi_rtspsrc_mxpi_parallel2serial_mxpi_rtspsrc0_0) gst_change_state READY_TO_NULL.
I20230503 08:37:42.233939  2673 MxpiRtspSrc.cpp:301] MxpiRtspsrc(mxpi_rtspsrc0) destroy stream guarder thread successfully.
I20230503 08:37:42.235591  2673 MxsmStream.cpp:895] Destroys the stream(detection+tracking) successfully.
I20230503 08:37:42.235805  2673 MxStreamManager.cpp:76] Begin to destroy management threads.
I20230503 08:37:42.241112  2673 DeviceManager.cpp:110] DestroyDevices begin
I20230503 08:37:42.246728  2673 DeviceManager.cpp:128] DestroyDevices successfully
I20230503 08:37:42.246789  2673 MxStreamManager.cpp:267] Destroy streams successfully.

请问这是什么原因?

本帖最后由 匿名用户2023/10/10 16:57:37 编辑

我要发帖子