feature_extraction.py 1.7 KB
Newer Older
W
wangguanzhong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. 
#   
# Licensed under the Apache License, Version 2.0 (the "License");   
# you may not use this file except in compliance with the License.  
# You may obtain a copy of the License at   
#   
#     http://www.apache.org/licenses/LICENSE-2.0    
#   
# Unless required by applicable law or agreed to in writing, software   
# distributed under the License is distributed on an "AS IS" BASIS, 
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  
# See the License for the specific language governing permissions and   
# limitations under the License.

import os
import glob
import copy
import math
import json

import numpy as np
import paddle
import cv2

from collections import defaultdict
from .base import OutputBaseOp
from ppcv.utils.logger import setup_logger
from ppcv.core.workspace import register

logger = setup_logger('FeatureOutput')


@register
class FeatureOutput(OutputBaseOp):
    def __init__(self, model_cfg, env_cfg):
        super().__init__(model_cfg, env_cfg)

    def __call__(self, inputs):
        total_res = []
        for res in inputs:
            # TODO(gaotingquan): video input is not tested
            if self.frame_id != -1:
                res.update({'frame_id': frame_id})
            if self.print_res:
                msg = " ".join([f"{key}: {res[key]}" for key in res])
                logger.info(msg)
47 48 49
            if self.save_res:
                msg = "The FeatureOutput op does not yet support to save prediction results."
                logger.warning(msg)
W
wangguanzhong 已提交
50 51 52 53 54
            if self.return_res:
                total_res.append(res)
        if self.return_res:
            return total_res
        return