Instructions to use kernels-community/cv_utils with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use kernels-community/cv_utils with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("kernels-community/cv_utils") - Notebooks
- Google Colab
- Kaggle
| TORCH_LIBRARY_EXPAND(TORCH_EXTENSION_NAME, ops) { | |
| ops.def("cc_2d(Tensor inputs, bool get_counts) -> Tensor[]"); | |
| ops.impl("cc_2d", torch::kCUDA, &connected_components_labeling_2d); | |
| ops.def("generic_nms(Tensor dets, Tensor scores, float iou_threshold, bool use_iou_matrix) -> Tensor"); | |
| ops.impl("generic_nms", torch::kCUDA, &generic_nms); | |
| } | |
| REGISTER_EXTENSION(TORCH_EXTENSION_NAME) |