KO
|
EN
gitlite — search
Search
#python
#javascript
#css
#react
#web
#php
#chatgpt
#html
#rust
#typescript
#hacktoberfest
#laravel
CV_Interview_Codes
★ 52
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
init-commit
:
Find the initial commit of a repository.
netflix
:
An Android application for streaming movies (*free)
Payload-Byte
:
Payload-Byte is a tool for extracting and labeling packet capture (Pcap) files of modern network intrusion detection datasets.
lunar-launcher-inject
:
Patches the lunar launcher to enable agent attaching & devtools
go-spdx
:
Golang implementation of a checker for determining if an SPDX ID satisfies an SPDX Expression.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
CV_Interview_Codes
?
Download (.md)
# CV Interview Codes Minimal implementation codes of the modules that are frequently asked in CV interviews. ## Traditinal Algorithms ### Computational Geometry 1. Point in Polygon (PIP) ### Image Processing 1. [Gaussian Filter](image_processing/filter.py) ## Deep Learning ### Backbones 1. ViT + [Patch Embedding](network_module/vit/patch_embed.py) + [MultiHead Attention (MHA)](network_module/vit/attention.py) 2. Swin Transformer + Window Partition + Window-based MHA + Shifted Window-based MHA ### Object Detection 1. [IoUs(IoU/GIoU/DIoU/CIoU) Loss](object_detection/iou_loss.py) 2. [NMS](object_detection/nms.py) ### Pose Estimation 1. [TopDown `generate_target`](pose_estimation/2d/top-down/generate_target.py) 2. Associative Embedding + loss + group ### Generative Network 1. Flow-based Generative Model + [RealNVP](generative_model/realnvp.py)