├── .gitignore ├── README.md ├── computational_geometry └── pip.py ├── generative_model └── realnvp.py ├── image_processing └── filter.py ├── learning_python ├── decorator.py └── generator.py ├── network_module ├── general_blocks │ ├── dense_block.py │ └── se_block.py └── vit │ ├── attention.py │ ├── patch_embed.py │ ├── swin.py │ └── vit.py ├── norm_layer └── group_norm.py ├── object_detection ├── iou_loss.py ├── label_assign.py └── nms.py └── pose_estimation └── 2d ├── bottom-up └── associative_embedding │ ├── group.py │ └── loss.py └── top-down └── generate_target.py /.gitignore: -------------------------------------------------------------------------------- 1 | review/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/README.md -------------------------------------------------------------------------------- /computational_geometry/pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/computational_geometry/pip.py -------------------------------------------------------------------------------- /generative_model/realnvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/generative_model/realnvp.py -------------------------------------------------------------------------------- /image_processing/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/image_processing/filter.py -------------------------------------------------------------------------------- /learning_python/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/learning_python/decorator.py -------------------------------------------------------------------------------- /learning_python/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/learning_python/generator.py -------------------------------------------------------------------------------- /network_module/general_blocks/dense_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/network_module/general_blocks/dense_block.py -------------------------------------------------------------------------------- /network_module/general_blocks/se_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/network_module/general_blocks/se_block.py -------------------------------------------------------------------------------- /network_module/vit/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/network_module/vit/attention.py -------------------------------------------------------------------------------- /network_module/vit/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/network_module/vit/patch_embed.py -------------------------------------------------------------------------------- /network_module/vit/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/network_module/vit/swin.py -------------------------------------------------------------------------------- /network_module/vit/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/network_module/vit/vit.py -------------------------------------------------------------------------------- /norm_layer/group_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/norm_layer/group_norm.py -------------------------------------------------------------------------------- /object_detection/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/object_detection/iou_loss.py -------------------------------------------------------------------------------- /object_detection/label_assign.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/object_detection/nms.py -------------------------------------------------------------------------------- /pose_estimation/2d/bottom-up/associative_embedding/group.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pose_estimation/2d/bottom-up/associative_embedding/loss.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pose_estimation/2d/top-down/generate_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indigo6/CV_Interview_Codes/HEAD/pose_estimation/2d/top-down/generate_target.py --------------------------------------------------------------------------------