Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HwangBo94/Anti-UAV410
/ types & classes
Types & classes
713 in github.com/HwangBo94/Anti-UAV410
⨍
Functions
4,312
◇
Types & classes
713
↳
Endpoints
4
↓ 217 callers
Class
TensorList
Container mainly used for lists of torch tensors. Extends lists with pytorch functionality.
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/libs/tensorlist.py:6
↓ 60 callers
Class
PolygonMasks
This class represents masks in the form of polygons. Polygons is a list of three levels. The first level of the list corresponds to objects,
trackers/SiamDT/libs/swintransformer/mmdet/core/mask/structures.py:524
↓ 58 callers
Class
BitmapMasks
This class represents masks in the form of bitmaps. Args: masks (ndarray): ndarray of masks in shape (N, H, W), where N is th
trackers/SiamDT/libs/swintransformer/mmdet/core/mask/structures.py:188
↓ 44 callers
Class
LTRLoader
Data loader. Combines a dataset and a sampler, and provides single- or multi-process iterators over the dataset. Note: The only differen
implementation_in_pytracking/pytracking-AntiUAV410/ltr/data/loader.py:121
↓ 37 callers
Class
TrackerParams
Class for tracker parameters.
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/utils/params.py:5
↓ 27 callers
Class
Got10k
GOT-10k dataset. Publication: GOT-10k: A Large High-Diversity Benchmark for Generic Object Tracking in the Wild Lianghua Huang,
implementation_in_pytracking/pytracking-AntiUAV410/ltr/dataset/got10k.py:14
↓ 25 callers
Class
ResNet
ResNet backbone. Args: depth (int): Depth of resnet, from {18, 34, 50, 101, 152}. stem_channels (int | None): Number of stem chan
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/resnet.py:303
↓ 22 callers
Class
FPN
r"""Feature Pyramid Network. This is an implementation of paper `Feature Pyramid Networks for Object Detection <https://arxiv.org/abs/1612.03
trackers/SiamDT/libs/swintransformer/mmdet/models/necks/fpn.py:12
↓ 22 callers
Class
NetWithBackbone
Wraps a network with a common backbone. Assumes the network have a 'extract_backbone_features(image)' function.
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/features/net_wrappers.py:40
↓ 21 callers
Class
LTRTrainer
implementation_in_pytracking/pytracking-AntiUAV410/ltr/trainers/ltr_trainer.py:17
↓ 21 callers
Class
SequenceList
List of sequences. Supports the addition operator to concatenate sequence lists.
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/evaluation/data.py:156
↓ 19 callers
Class
Sequence
Class for the sequence in an evaluation.
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/evaluation/data.py:21
↓ 18 callers
Class
Registry
trackers/SiamDT/libs/config/registry.py:14
↓ 16 callers
Class
BasicBlock
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/backbone/resnet.py:15
↓ 16 callers
Class
MobileBlock
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/backbone/mobilenetv3.py:80
↓ 16 callers
Class
MultiGPU
Wraps a network to allow simple multi-GPU training.
implementation_in_pytracking/pytracking-AntiUAV410/ltr/admin/multigpu.py:8
↓ 16 callers
Class
TensorDict
Container mainly used for dicts of torch tensors. Extends OrderedDict with pytorch functionality.
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/libs/tensordict.py:6
↓ 15 callers
Class
Bottleneck
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/resnet.py:95
↓ 15 callers
Class
TrackingNet
TrackingNet dataset. Publication: TrackingNet: A Large-Scale Dataset and Benchmark for Object Tracking in the Wild. Matthias Mue
implementation_in_pytracking/pytracking-AntiUAV410/ltr/dataset/tracking_net.py:35
↓ 14 callers
Class
Lasot
LaSOT dataset. Publication: LaSOT: A High-quality Benchmark for Large-scale Single Object Tracking Heng Fan, Liting Lin, Fan Yan
implementation_in_pytracking/pytracking-AntiUAV410/ltr/dataset/lasot.py:14
↓ 13 callers
Class
AssignResult
Stores assignments between predicted and truth boxes. Attributes: num_gts (int): the number of truth boxes considered when computing this
trackers/SiamDT/libs/swintransformer/mmdet/core/bbox/assigners/assign_result.py:6
↓ 13 callers
Class
MaxIoUAssigner
Assign a corresponding gt bbox or background to each bbox. Each proposals will be assigned with `-1`, or a semi-positive integer indicating t
trackers/SiamDT/libs/swintransformer/mmdet/core/bbox/assigners/max_iou_assigner.py:10
↓ 12 callers
Class
MSCOCOSeq
The COCO dataset. COCO is an image dataset. Thus, we treat each image as a sequence of length 1. Publication: Microsoft COCO: Common Obj
implementation_in_pytracking/pytracking-AntiUAV410/ltr/dataset/coco_seq.py:11
↓ 12 callers
Class
TridentBottleneck
BottleBlock for TridentResNet. Args: trident_dilations (tuple[int, int, int]): Dilations of different trident branch.
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/trident_resnet.py:92
↓ 10 callers
Class
ResLayer
ResLayer to build ResNet style backbone for RPF in detectoRS. The difference between this module and base class is that we pass ``rfp_inplane
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/detectors_resnet.py:113
↓ 10 callers
Class
YouTubeVOS
YoutubeVOS video object segmentation dataset. Publication: YouTube-VOS: A Large-Scale Video Object Segmentation Benchmark Ni
implementation_in_pytracking/pytracking-AntiUAV410/ltr/dataset/youtubevos.py:60
↓ 9 callers
Class
Accuracy
trackers/SiamDT/libs/swintransformer/mmdet/models/losses/accuracy.py:53
↓ 8 callers
Class
Compose
Compose multiple transforms sequentially. Args: transforms (Sequence[dict | callable]): Sequence of transform object or confi
trackers/SiamDT/libs/swintransformer/mmdet/datasets/pipelines/compose.py:9
↓ 8 callers
Class
ExampleModule
trackers/SiamDT/libs/swintransformer/tests/test_runtime/test_fp16.py:67
↓ 8 callers
Class
ResLayer
ResLayer to build ResNet style backbone. Args: block (nn.Module): block used to build ResLayer. inplanes (int): inplanes of block
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/res_layer.py:5
↓ 7 callers
Class
EvalDataset
trackers/SiamDT/libs/swintransformer/tests/test_runtime/test_eval_hook.py:35
↓ 7 callers
Class
FFN
Implements feed-forward networks (FFNs) with residual connection. Args: embed_dims (int): The feature dimension. Same as `Mul
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/transformer.py:104
↓ 7 callers
Class
FeatureParams
Class for feature specific parameters
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/utils/params.py:28
↓ 7 callers
Class
MultiResolutionExtractor
Multi-resolution feature extractor. args: features: List of features.
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/features/extractor.py:49
↓ 7 callers
Class
PrRoIPool2D
implementation_in_pytracking/pytracking-AntiUAV410/ltr/external/PreciseRoIPooling/pytorch/prroi_pool/prroi_pool.py:19
↓ 7 callers
Class
Tracker
Wraps the tracker for evaluation and running purposes. args: name: Name of tracking method. parameter_name: Name of parameter file
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/evaluation/tracker.py:37
↓ 7 callers
Class
TransformerDecoderLayer
Implements one decoder layer in DETR transformer. Args: embed_dims (int): The feature dimension. Same as `TransformerEncoderL
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/transformer.py:270
↓ 7 callers
Class
TransformerEncoderLayer
Implements one encoder layer in DETR transformer. Args: embed_dims (int): The feature dimension. Same as `FFN`. num_heads (int):
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/transformer.py:171
↓ 6 callers
Class
Bottle2neck
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/res2net.py:17
↓ 6 callers
Class
DiMPnet
The DiMP network. args: feature_extractor: Backbone feature extractor network. Must return a dict of feature maps classifier: Ta
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/tracking/dimpnet.py:16
↓ 6 callers
Class
Scale
Scale.
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/features/augmentation.py:72
↓ 6 callers
Class
SimplifiedBasicBlock
Simplified version of original basic residual block. This is used in `SCNet <https://arxiv.org/abs/2012.10150>`_. - Norm layer is now optiona
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/res_layer.py:105
↓ 6 callers
Class
h_swish
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/backbone/mobilenetv3.py:40
↓ 5 callers
Class
BasicBlock
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/resnet.py:13
↓ 5 callers
Class
ExampleDataset
trackers/SiamDT/libs/swintransformer/tests/test_runtime/test_eval_hook.py:17
↓ 5 callers
Class
GIoULoss
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/loss/bbr_loss.py:5
↓ 5 callers
Class
GenericRoIExtractor
Extract RoI features from all level feature maps levels. This is the implementation of `A novel Region of Interest Extraction Layer for Insta
trackers/SiamDT/libs/swintransformer/mmdet/models/roi_heads/roi_extractors/generic_roi_extractor.py:9
↓ 5 callers
Class
HourglassNet
HourglassNet backbone. Stacked Hourglass Networks for Human Pose Estimation. More details can be found in the `paper <https://arxiv.org/a
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/hourglass.py:81
↓ 5 callers
Class
LoadImageFromFile
Load an image from file. Required keys are "img_prefix" and "img_info" (a dict that must contain the key "filename"). Added or updated keys a
trackers/SiamDT/libs/swintransformer/mmdet/datasets/pipelines/loading.py:12
↓ 5 callers
Class
MultiheadAttention
A warpper for torch.nn.MultiheadAttention. This module implements MultiheadAttention with residual connection, and positional encoding used i
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/transformer.py:9
↓ 5 callers
Class
WrapFunction
Wrap the function to be tested for torch.onnx.export tracking.
trackers/SiamDT/libs/swintransformer/tests/test_onnx/utils.py:19
↓ 4 callers
Class
AntiUAV410
AntiUAV410 dataset.
implementation_in_pytracking/pytracking-AntiUAV410/ltr/dataset/antiuav410.py:20
↓ 4 callers
Class
ApproxMaxIoUAssigner
Assign a corresponding gt bbox or background to each bbox. Each proposals will be assigned with an integer indicating the ground truth index
trackers/SiamDT/libs/swintransformer/mmdet/core/bbox/assigners/approx_max_iou_assigner.py:9
↓ 4 callers
Class
CenterRegionAssigner
Assign pixels at the center region of a bbox as positive. Each proposals will be assigned with `-1`, `0`, or a positive integer indicating th
trackers/SiamDT/libs/swintransformer/mmdet/core/bbox/assigners/center_region_assigner.py:71
↓ 4 callers
Class
ConcatDataset
A wrapper of concatenated dataset. Same as :obj:`torch.utils.data.dataset.ConcatDataset`, but concat the group flag for image aspect ratio.
trackers/SiamDT/libs/swintransformer/mmdet/datasets/dataset_wrappers.py:14
↓ 4 callers
Class
FilterInitializerZero
Initializes a target model with zeros. args: filter_size: Size of the filter. feature_dim: Input feature dimentionality.
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/rts/initializer.py:4
↓ 4 callers
Class
ImagenetVIDMOT
implementation_in_pytracking/pytracking-AntiUAV410/ltr/dataset/imagenetvid_mot.py:17
↓ 4 callers
Class
RandomSampler
Random sampler. Args: num (int): Number of samples pos_fraction (float): Fraction of positive samples neg_pos_up (int, op
trackers/SiamDT/libs/swintransformer/mmdet/core/bbox/samplers/random_sampler.py:8
↓ 4 callers
Class
ResNet
ResNet network module. Allows extracting specific feature blocks.
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/backbone/resnet.py:95
↓ 4 callers
Class
Transformer
Implements the DETR transformer. Following the official DETR implementation, this module copy-paste from torch.nn.Transformer with modificati
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/transformer.py:601
↓ 4 callers
Class
TransformerDecoder
Implements the decoder in DETR transformer. Args: num_layers (int): The number of `TransformerDecoderLayer`. embed_dims (int): Sa
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/transformer.py:489
↓ 3 callers
Class
BBoxHead
Simplest RoI head, with only two fc layers for classification and regression respectively.
trackers/SiamDT/libs/swintransformer/mmdet/models/roi_heads/bbox_heads/bbox_head.py:13
↓ 3 callers
Class
Candidate
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/tracker/keep_track/candidates.py:4
↓ 3 callers
Class
CenterCrop
trackers/SiamDT/libs/data/transforms/pair_transforms/siamfc_transforms.py:22
↓ 3 callers
Class
ChannelMapper
r"""Channel Mapper to reduce/increase channels of backbone features. This is used to reduce/increase channels of backbone features. Args:
trackers/SiamDT/libs/swintransformer/mmdet/models/necks/channel_mapper.py:8
↓ 3 callers
Class
CocoDataset
trackers/SiamDT/libs/swintransformer/mmdet/datasets/coco.py:21
↓ 3 callers
Class
CustomDataset
Custom dataset for detection. The annotation format is shown as follows. The `ann` field is optional for testing. .. code-block:: none
trackers/SiamDT/libs/swintransformer/mmdet/datasets/custom.py:16
↓ 3 callers
Class
Davis
The Davis VOS dataset Publication: A Benchmark Dataset and Evaluation Methodology for Video Object Segmentation F. P
implementation_in_pytracking/pytracking-AntiUAV410/ltr/dataset/davis.py:8
↓ 3 callers
Class
ExampleModel
trackers/SiamDT/libs/swintransformer/tests/test_runtime/test_eval_hook.py:44
↓ 3 callers
Class
FeatureAdaption
Feature Adaption Module. Feature Adaption Module is implemented based on DCN v1. It uses anchor shape prediction rather than feature map to
trackers/SiamDT/libs/swintransformer/mmdet/models/dense_heads/guided_anchor_head.py:15
↓ 3 callers
Class
FilterPool
Pool the target region in a feature map. args: filter_size: Size of the filter. feature_stride: Input feature stride. po
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/target_classifier/initializer.py:9
↓ 3 callers
Class
HungarianAssigner
Computes one-to-one matching between predictions and ground truth. This class computes an assignment between the targets and the predictions
trackers/SiamDT/libs/swintransformer/mmdet/core/bbox/assigners/hungarian_assigner.py:16
↓ 3 callers
Class
InstanceL2Norm
Instance L2 normalization.
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/layers/normalization.py:6
↓ 3 callers
Class
LovaszSegLoss
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/loss/segmentation.py:8
↓ 3 callers
Class
OHEMSampler
r"""Online Hard Example Mining Sampler described in `Training Region-based Object Detectors with Online Hard Example Mining <https://arxiv.org
trackers/SiamDT/libs/swintransformer/mmdet/core/bbox/samplers/ohem_sampler.py:9
↓ 3 callers
Class
PointAssigner
Assign a corresponding gt bbox or background to each point. Each proposals will be assigned with `0`, or a positive integer indicating the gr
trackers/SiamDT/libs/swintransformer/mmdet/core/bbox/assigners/point_assigner.py:9
↓ 3 callers
Class
RTSNet
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/rts/rts_net.py:26
↓ 3 callers
Class
RegNet
RegNet backbone. More details can be found in `paper <https://arxiv.org/abs/2003.13678>`_ . Args: arch (dict): The parameter of RegN
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/regnet.py:11
↓ 3 callers
Class
ResNetV1d
r"""ResNetV1d variant described in `Bag of Tricks <https://arxiv.org/pdf/1812.01187.pdf>`_. Compared with default ResNet(ResNetV1b), ResNetV1
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/resnet.py:652
↓ 3 callers
Class
SamplingResult
Bbox sampling result. Example: >>> # xdoctest: +IGNORE_WANT >>> from mmdet.core.bbox.samplers.sampling_result import * # NOQA
trackers/SiamDT/libs/swintransformer/mmdet/core/bbox/samplers/sampling_result.py:6
↓ 3 callers
Class
SinePositionalEncoding
Position encoding with sine and cosine functions. See `End-to-End Object Detection with Transformers <https://arxiv.org/pdf/2005.12872>`_ for
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/positional_encoding.py:11
↓ 3 callers
Class
TransformerEncoder
Implements the encoder in DETR transformer. Args: num_layers (int): The number of `TransformerEncoderLayer`. embed_dims (int): Sa
trackers/SiamDT/libs/swintransformer/mmdet/models/utils/transformer.py:405
↓ 3 callers
Class
TridentResNet
The stem layer, stage 1 and stage 2 in Trident ResNet are identical to ResNet, while in stage 3, Trident BottleBlock is utilized to replace the
trackers/SiamDT/libs/swintransformer/mmdet/models/backbones/trident_resnet.py:229
↓ 3 callers
Class
VOSMeta
implementation_in_pytracking/pytracking-AntiUAV410/ltr/dataset/vos_base.py:13
↓ 2 callers
Class
ATOMnet
ATOM network module
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/bbreg/atom.py:7
↓ 2 callers
Class
AnchorGenerator
Standard anchor generator for 2D anchor-based detectors. Args: strides (list[int] | list[tuple[int, int]]): Strides of anchors
trackers/SiamDT/libs/swintransformer/mmdet/core/anchor/anchor_generator.py:10
↓ 2 callers
Class
AverageMeter
Computes and stores the average and current value
implementation_in_pytracking/pytracking-AntiUAV410/ltr/admin/stats.py:19
↓ 2 callers
Class
BiCornerPool
Bidirectional Corner Pooling Module (TopLeft, BottomRight, etc.) Args: in_channels (int): Input channels of module. out_channels
trackers/SiamDT/libs/swintransformer/mmdet/models/dense_heads/corner_head.py:16
↓ 2 callers
Class
BoundBoxes
trackers/SiamDT/libs/data/transforms/pair_transforms/mmdet_transforms.py:168
↓ 2 callers
Class
CenterShiftFeatures
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/kys/utils.py:16
↓ 2 callers
Class
ClassBalancedDataset
A wrapper of repeated dataset with repeat factor. Suitable for training on class imbalanced datasets like LVIS. Following the sampling strate
trackers/SiamDT/libs/swintransformer/mmdet/datasets/dataset_wrappers.py:172
↓ 2 callers
Class
Compose
trackers/SiamDT/libs/data/transforms/img_transforms/reid_transforms.py:11
↓ 2 callers
Class
Compose
trackers/SiamDT/libs/data/transforms/pair_transforms/mmdet_transforms.py:39
↓ 2 callers
Class
CornerHead
Head of CornerNet: Detecting Objects as Paired Keypoints. Code is modified from the `official github repo <https://github.com/princeton-vl/Co
trackers/SiamDT/libs/swintransformer/mmdet/models/dense_heads/corner_head.py:77
↓ 2 callers
Class
CropAndResize
trackers/SiamDT/libs/data/transforms/img_transforms/reid_transforms.py:36
↓ 2 callers
Class
DetectionBlock
Detection block in YOLO neck. Let out_channels = n, the DetectionBlock contains: Six ConvLayers, 1 Conv2D Layer and 1 YoloLayer. The firs
trackers/SiamDT/libs/swintransformer/mmdet/models/necks/yolo_neck.py:11
↓ 2 callers
Class
DistanceMap
Generate a distance map from a origin center location. args: num_bins: Number of bins in the map. bin_displacement: Displacement
implementation_in_pytracking/pytracking-AntiUAV410/ltr/models/layers/distance.py:6
↓ 2 callers
Class
EnvSettings
implementation_in_pytracking/pytracking-AntiUAV410/pytracking/evaluation/environment.py:5
↓ 2 callers
Class
ExampleObject
trackers/SiamDT/libs/swintransformer/tests/test_runtime/test_fp16.py:56
↓ 2 callers
Class
ExperimentAntiUAV410
r"""Experiment pipeline and evaluation toolkit for AntiUAV410 dataset. Args: root_dir (string): Root directory of AntiUAV410 dataset.
experiments/anti_uav.py:16
next →
1–100 of 713, ranked by callers