當前位置: 首頁>>代碼示例>>Python>>正文


Python registry.ROI_KEYPOINT_PREDICTOR屬性代碼示例

本文整理匯總了Python中maskrcnn_benchmark.modeling.registry.ROI_KEYPOINT_PREDICTOR屬性的典型用法代碼示例。如果您正苦於以下問題:Python registry.ROI_KEYPOINT_PREDICTOR屬性的具體用法?Python registry.ROI_KEYPOINT_PREDICTOR怎麽用?Python registry.ROI_KEYPOINT_PREDICTOR使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在maskrcnn_benchmark.modeling.registry的用法示例。


在下文中一共展示了registry.ROI_KEYPOINT_PREDICTOR屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: make_roi_keypoint_predictor

# 需要導入模塊: from maskrcnn_benchmark.modeling import registry [as 別名]
# 或者: from maskrcnn_benchmark.modeling.registry import ROI_KEYPOINT_PREDICTOR [as 別名]
def make_roi_keypoint_predictor(cfg, in_channels):
    func = registry.ROI_KEYPOINT_PREDICTOR[cfg.MODEL.ROI_KEYPOINT_HEAD.PREDICTOR]
    return func(cfg, in_channels) 
開發者ID:Res2Net,項目名稱:Res2Net-maskrcnn,代碼行數:5,代碼來源:roi_keypoint_predictors.py

示例2: test_roi_keypoints_predictors

# 需要導入模塊: from maskrcnn_benchmark.modeling import registry [as 別名]
# 或者: from maskrcnn_benchmark.modeling.registry import ROI_KEYPOINT_PREDICTOR [as 別名]
def test_roi_keypoints_predictors(self):
        ''' Make sure roi keypoint predictors run '''
        for cur_in, cur_out, cur_cfg in _test_predictors(
            self,
            registry.ROI_KEYPOINT_PREDICTOR,
            PREDICTOR_CFGS,
            PREDICTOR_INPUT_CHANNELS,
            hwsize=14,
        ):
            self.assertEqual(cur_out.shape[0], cur_in.shape[0])
            self.assertEqual(
                cur_out.shape[1], cur_cfg.MODEL.ROI_KEYPOINT_HEAD.NUM_CLASSES) 
開發者ID:Res2Net,項目名稱:Res2Net-maskrcnn,代碼行數:14,代碼來源:test_predictors.py


注:本文中的maskrcnn_benchmark.modeling.registry.ROI_KEYPOINT_PREDICTOR屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。