MCPcopy Create free account

hub / github.com/Zengyi-Qin/TLNet / functions

Functions397 in github.com/Zengyi-Qin/TLNet

Methodmerge_defaults
(cfg)
avod/builders/dataset_builder.py:161
Methodmodel_config
(self)
avod/core/model.py:32
Functionnp_box_3d_to_box_4c
Converts a single box_3d to box_4c Args: box_3d: box_3d (6,) ground_plane: ground plane coefficients (4,) Returns: b
avod/core/box_4c_encoder.py:18
Functionnp_box_3d_to_box_8c
Computes the 3D bounding box corner positions from box_3d format. This function does not preserve corners order but rather the corners are ro
avod/core/box_8c_encoder.py:132
Functionnp_box_3d_to_box_8co
Computes the 3D bounding box corner positions from Box3D format. The order of corners are preserved during this conversion. Args: bo
avod/core/box_8c_encoder.py:8
Functionnp_box_4c_to_box_3d
Converts a single box_4c to box_3d. The longest midpoint-midpoint length is used to calculate orientation. Points are projected onto the orien
avod/core/box_4c_encoder.py:168
Methodnum_boxes
Returns number of boxes held in collection. Returns: a tensor representing the number of boxes held in the collection.
avod/core/box_list.py:59
Methodnum_boxes_static
Returns number of boxes held in collection. This number is inferred at graph construction time rather than run-time. Returns:
avod/core/box_list.py:67
Functionobject_label_to_box_3d
Turns an ObjectLabel into an box_3d Args: obj_label: ObjectLabel Returns: anchor: 3D box in box_3d format [x, y, z, l, w, h,
avod/core/box_3d_encoder.py:36
Functionoffset_to_anchor
Decodes the anchor regression predictions with the anchor. Args: anchors: A numpy array or a tensor of shape [N, 6] repre
avod/core/anchor_encoder.py:99
Methodpreprocess_input
Preprocesses the given input. Args: tensor_in: A `Tensor` of shape=(batch_size, height, width, channels) represen
avod/core/feature_extractors/img_feature_extractor.py:16
Functionprint_inference_time_statistics
(total_feed_dict_time, total_inference_time)
avod/core/evaluator_utils.py:391
Functionproject_box3d_to_image
Computes the 3D bounding box projected onto image space. Keyword arguments: obj -- object file to draw bounding box p -- transform ma
avod/core/obj_utils.py:341
Functionproject_to_bev
Projects an array of 3D boxes into bird's eye view Args: boxes_3d: list of 3d boxes in the format: N x [x, y, z, l, w, h
avod/core/box_3d_projector.py:14
Functionproject_to_bev
Projects an array of 3D anchors into bird's eye view Args: anchors: list of anchors in anchor format (N x 6): N x [x, y,
avod/core/anchor_projector.py:13
Functionproject_to_image
Projects a 3D point cloud to 2D points for plotting :param point_cloud: 3D point cloud (3, N) :param p: Camera matrix (3, 4) :return: p
avod/core/calib_utils.py:281
Functionproject_to_image_space
Projects a box_3d into image space Args: box_3d: single box_3d to project calib_p2: stereo calibration p2 matrix truncat
avod/core/box_3d_projector.py:86
Functionproject_to_image_space
Projects 3D anchors into image space Args: anchors: list of anchors in anchor format N x [x, y, z, dim_x, dim_y, dim_z]
avod/core/anchor_projector.py:72
Functionproto_to_obj
Hack to convert proto config into an object so repeated fields can be overwritten Args: config: proto config Returns: co
avod/builders/config_builder_util.py:17
Functionprune_non_overlapping_boxes
Prunes the boxes in boxlist1 that overlap less than thresh with boxlist2. For each box in boxlist1, we want its IOA to be more than minoverlap wi
avod/core/box_list_ops.py:223
Functionprune_small_boxes
Prunes small boxes in the boxlist which have a side smaller than min_side. Args: boxlist: BoxList holding N boxes. min_side: Minimum
avod/core/box_list_ops.py:251
Functionread_calibration
Reads in Calibration file from Kitti Dataset. Keyword Arguments: ------------------ calib_dir : Str Directory of the cali
avod/core/calib_utils.py:55
Functionread_disparity
Reads in Disparity file from Kitti Dataset. Keyword Arguments: ------------------ calib_dir : Str Directo
avod/core/calib_utils.py:300
Functionread_labels
Reads in label data file from Kitti Dataset. Returns: obj_list -- List of instances of class ObjectLabel. Keyword arguments: label_d
avod/core/obj_utils.py:69
Functionread_lidar
Reads in PointCloud from Kitti Dataset. Keyword Arguments: ------------------ velo_dir : Str Directory of
avod/core/calib_utils.py:328
Functionreorder_projected_boxes
Helper function to reorder image corners. This reorders the corners from [x1, y1, x2, y2] to [y1, x1, y2, x2] which is required by the tf.cro
avod/core/anchor_projector.py:254
Methodrgb_image_dir
(self)
avod/datasets/kitti/kitti_dataset.py:132
Methodrgb_image_r_dir
(self)
avod/datasets/kitti/kitti_dataset.py:136
Functionrun_kitti_native_script
Runs the kitti native code script.
avod/core/evaluator_utils.py:449
Functionrun_kitti_native_script_with_05_iou
Runs the kitti native code script.
avod/core/evaluator_utils.py:471
Methodsample_names
(self)
avod/datasets/kitti/kitti_dataset.py:140
Functionsave_predictions_in_kitti_format
Converts a set of network predictions into text files required for KITTI evaluation.
avod/core/evaluator_utils.py:178
Functionsave_proposals_in_kitti_format
Converts a set of network predictions into text files required for KITTI evaluation.
avod/core/evaluator_utils.py:17
MethodsetUpClass
(cls)
avod/core/anchor_generators/grid_anchor_3d_generator_test.py:17
MethodsetUpClass
(cls)
avod/core/feature_extractors/bev_vgg_test.py:40
MethodsetUpClass
(cls)
avod/core/models/avod_model_test.py:16
MethodsetUpClass
(cls)
avod/core/models/rpn_model_test.py:16
MethodsetUpClass
(cls)
avod/datasets/kitti/kitti_dataset_test.py:14
MethodsetUpClass
(cls)
avod/datasets/kitti/kitti_utils_test.py:12
Methodset_field
Sets the value of a field. Updates the field of a box_list with a given value. Args: field: (string) name of the field to
avod/core/box_list.py:142
Functionset_up_summary_writer
Helper function to set up log directories and summary handlers. Args: model_config: Model protobuf configuration sess : A
avod/core/evaluator_utils.py:345
Functionsq_dist
Computes the pairwise squared distances between box corners. This op treats each box as if it were a point in a 4d Euclidean space and comput
avod/core/box_list_ops.py:299
Functionstrip_checkpoint_id
Helper function to return the checkpoint index number. Args: checkpoint_dir: Path directory of the checkpoints Returns: chec
avod/core/evaluator_utils.py:377
Functionsummaries_to_keep
(summaries, global_summaries, histograms=True,
avod/core/summary_utils.py:88
Methodswap_boxes_3d_lw
(boxes_3d)
avod/core/evaluator.py:1081
MethodtBox
image orientation
scripts/offline_eval/kitti_native_eval/evaluate_object_3d_offline.cpp:91
MethodtBox
image orientation
scripts/offline_eval/kitti_native_eval/evaluate_object_3d.cpp:90
MethodtBox
image orientation
scripts/offline_eval/kitti_native_eval/evaluate_object_3d_offline_05_iou.cpp:91
MethodtDetection
scripts/offline_eval/kitti_native_eval/evaluate_object_3d_offline.cpp:118
MethodtDetection
scripts/offline_eval/kitti_native_eval/evaluate_object_3d.cpp:117
MethodtDetection
scripts/offline_eval/kitti_native_eval/evaluate_object_3d_offline_05_iou.cpp:118
MethodtGroundtruth
scripts/offline_eval/kitti_native_eval/evaluate_object_3d_offline.cpp:103
MethodtGroundtruth
scripts/offline_eval/kitti_native_eval/evaluate_object_3d.cpp:102
MethodtGroundtruth
scripts/offline_eval/kitti_native_eval/evaluate_object_3d_offline_05_iou.cpp:103
MethodtPrData
false negatives
scripts/offline_eval/kitti_native_eval/evaluate_object_3d_offline.cpp:79
MethodtPrData
false negatives
scripts/offline_eval/kitti_native_eval/evaluate_object_3d.cpp:78
MethodtPrData
false negatives
scripts/offline_eval/kitti_native_eval/evaluate_object_3d_offline_05_iou.cpp:79
Methodtest_avod_loss
(self)
avod/core/models/avod_model_test.py:27
Methodtest_avod_loss_correct_class_mask
(self)
avod/core/models/avod_model_test.py:44
Methodtest_batch_loading
(self)
avod/datasets/kitti/kitti_dataset_test.py:96
Methodtest_batch_wrapping
(self)
avod/datasets/kitti/kitti_dataset_test.py:118
Methodtest_bool_pos_mask
(self)
avod/core/models/avod_model_test.py:152
Methodtest_create_path_drop_masks
(self)
avod/core/models/rpn_model_test.py:44
Methodtest_create_slice_filter
(self)
avod/datasets/kitti/kitti_utils_test.py:19
Methodtest_data_loading
(self)
avod/datasets/kitti/kitti_dataset_test.py:29
Methodtest_data_splits
(self)
avod/datasets/kitti/kitti_dataset_test.py:60
Methodtest_filter_labels_by_class
(self)
avod/datasets/kitti/kitti_utils_test.py:58
Methodtest_flip_boxes_3d
(self)
avod/datasets/kitti/kitti_aug_test.py:10
Methodtest_generate_anchors
(self)
avod/core/anchor_generators/grid_anchor_3d_generator_test.py:27
Methodtest_path_drop_input_multiplication
(self)
avod/core/models/rpn_model_test.py:136
Methodtest_raises_error_with_incorrect_indicator_shape
(self)
avod/core/minibatch_samplers/balanced_positive_negative_sampler_test.py:74
Methodtest_raises_error_with_incorrect_label_shape
(self)
avod/core/minibatch_samplers/balanced_positive_negative_sampler_test.py:66
Methodtest_rotate_map_90_degrees
(self)
avod/datasets/kitti/kitti_utils_test.py:42
Methodtest_rpn_loss
(self)
avod/core/models/rpn_model_test.py:26
Methodtest_subsample_all_examples
(self)
avod/core/minibatch_samplers/balanced_positive_negative_sampler_test.py:25
Methodtest_subsample_selection
(self)
avod/core/minibatch_samplers/balanced_positive_negative_sampler_test.py:43
Methodtest_vgg_layers_build
(self)
avod/core/feature_extractors/bev_vgg_test.py:52
Functiontf_anchor_to_offset
Encodes the anchor regression predictions with the ground truth. This function assumes the ground_truth tensor has been arranged in a way
avod/core/anchor_encoder.py:49
Functiontf_angle_vector_to_orientation
Converts angle unit vectors into orientation angle representation. e.g. [0.717, 0.717] -> 45, [0, 1] -> 90 Args: angle_vectors_t
avod/core/orientation_encoder.py:20
Functiontf_box_3d_diagonal_length
Returns the diagonal length of box_3d Args: boxes_3d: An tensor of shape (N x 7) of boxes in box_3d format. Returns: Diagona
avod/core/box_3d_encoder.py:265
Functiontf_box_3d_to_anchor
Converts a box_3d tensor to anchor format by ortho rotating it. This is similar to 'box_3d_to_anchor' above however it takes a tensor as input
avod/core/box_3d_encoder.py:105
Functiontf_box_3d_to_box_4c
Vectorized conversion of box_3d to box_4c tensors Args: boxes_3d: Tensor of boxes_3d (N, 7) ground_plane: Tensor ground plane coe
avod/core/box_4c_encoder.py:85
Functiontf_box_3d_to_box_8c
Computes the 3D bounding box corner positions from box_3d format. This function does not preserve corners order during conversion from box_3d
avod/core/box_8c_encoder.py:207
Functiontf_box_3d_to_box_8co
Computes the 3D bounding box corner positions from Box3D format. The order of corners are preserved during this conversion. Args: bo
avod/core/box_8c_encoder.py:63
Functiontf_box_4c_to_box_3d
Vectorized box_4c to box_3d conversion Args: boxes_4c: Tensor of boxes_4c (N, 10) ground_plane: Tensor of ground plane coefficien
avod/core/box_4c_encoder.py:369
Functiontf_box_4c_to_offsets
Calculates box_4c offsets to regress to ground truth Args: boxes_4c: boxes_4c to calculate offset for (N, 10) box_4c_gt: box_4c g
avod/core/box_4c_encoder.py:461
Functiontf_box_8c_to_offsets
Converts corner boxes to corner offsets. It subtracts the ground-truth box corners from the predicted corners and normalizes the offsets by th
avod/core/box_8c_encoder.py:498
Functiontf_offsets_to_box_4c
Applies box_4c offsets to boxes_4c Args: boxes_4c: boxes_4c to apply offsets to offsets: box_4c offsets to apply Returns:
avod/core/box_4c_encoder.py:474
Functiontf_offsets_to_box_8c
Converts corner ofsets to box corners. It multiplies the diagonals with the offsets and then adds it back to the box corners. Args:
avod/core/box_8c_encoder.py:531
Functiontf_orientation_to_angle_vector
Converts orientation angles into angle unit vector representation. e.g. 45 -> [0.717, 0.717], 90 -> [0, 1] Args: orientations_te
avod/core/orientation_encoder.py:4
Functiontf_project_to_image_space
Projects 3D tensor anchors into image space Args: anchors: a tensor of anchors in the shape [N, 6]. The anchors are in t
avod/core/anchor_projector.py:159
Functionthree_d_iou
Computes approximate 3D IOU between a 3D bounding box 'box' and a list of 3D bounding boxes 'boxes'. All boxes are assumed to be aligned with
avod/core/obj_utils.py:536
Functiontop_dir
()
avod/__init__.py:8
Functiontrain
Training function for detection models. Args: model: The detection model object. train_config: a train_*pb2 protobuf.
avod/core/trainer.py:18
Methodtranspose_coordinates
Transpose the coordinate representation in a boxlist. Args: scope: name scope of the function.
avod/core/box_list.py:176
Functiontwo_d_iou
Compute 2D IOU between a 2D bounding box 'box' and a list :param box: a numpy array in the form of [x1, y1, x2, y2] where (x1,y1) are image c
avod/core/obj_utils.py:495
Method~Mail
scripts/offline_eval/kitti_native_eval/mail.h:24
← previous301–397 of 397, ranked by callers