Skip to content

nextcv ⚓︎

NextCV: Python-first computer vision library with C++ bdingings for speed.

This package provides both high-performance C++ wrapped functions and pure Python implementations in functional modules.

Usage

import nextcv as cvx

C++ wrapped functions⚓︎

cvx.image.invert(image) cvx.postprocessing.nms_fast(boxes, 0.5)

Python implementations⚓︎

cvx.postprocessing.nms(boxes, 0.5) cvx.core.hello()

MODULE DESCRIPTION
core

NextCV Core module - Core functionality.

image

NextCV Image module - Image processing functionality.

linalg

NextCV Linear Algebra module - Linear algebra functionality using Eigen.

postprocessing

NextCV Postprocessing module - Post-processing functionality.

sensors

NextCV Sensors module - Sensor representation and manipulation utilities.