Skip to content

Commit e4f97ee

Browse files
committed
Merge branch 'main' into release_v0.3.x
2 parents b1b44d3 + 83f61ac commit e4f97ee

File tree

331 files changed

+14416
-3513
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

331 files changed

+14416
-3513
lines changed

3rdparty/cuOSD/aarch64/include/cuosd.h

-159
This file was deleted.

3rdparty/cuOSD/x86_64/include/cuosd.h

-159
This file was deleted.

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ endif()
2323

2424
project(cvcuda
2525
LANGUAGES C CXX
26-
VERSION 0.3.0
26+
VERSION 0.3.1
2727
DESCRIPTION "CUDA-accelerated Computer Vision algorithms"
2828
)
2929

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing to CV-CUDA
22

3-
**As of release v0.3.0-beta, CV-CUDA is not accepting outside contribution.**
3+
**As of release v0.3.1-beta, CV-CUDA is not accepting outside contribution.**
44

55
Contributions to CV-CUDA fall into the following categories:
66

@@ -12,7 +12,7 @@ Contributions to CV-CUDA fall into the following categories:
1212
1. To propose a new feature, please file a new feature request
1313
[issue](https://github.com/CVCUDA/CV-CUDA/issues/new/choose). Describe the
1414
intended feature and discuss the design and implementation with the team and
15-
community. NOTE: Currently, as of release v0.3.0-beta, CV-CUDA is not accepting
15+
community. NOTE: Currently, as of release v0.3.1-beta, CV-CUDA is not accepting
1616
outside contribution.
1717
1. To ask a general question, please sumbit a question
1818
[issue](https://github.com/CVCUDA/CV-CUDA/issues/new/choose). If you need

DEVELOPER_GUIDE.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,8 @@ CV-CUDA includes:
2020

2121
| Pre/Post-Processing Operators | Definition |
2222
|-------------------------------|------------|
23-
| Adaptive Thresholding | Computes the threshold value for each fractional region of the image |
2423
| AverageBlur | Reduces image noise using an average filter |
2524
| BilateralFilter | Reduces image noise while preserving strong edges |
26-
| Bounding Box | Draws an overlay 2D rectangular bounding box using the coordinate points |
27-
| Bounding Box Blur | Adds a 2D rectangular blur in the region of interest <br> (ROI) using the coordinate points |
2825
| CenterCrop | Crops an image at its center |
2926
| ChannelReorder | Shuffles the order of image channels |
3027
| Composite | Composites two images together |
@@ -35,21 +32,18 @@ CV-CUDA includes:
3532
| DataTypeConvert | Converts an image’s data type, with optional scaling |
3633
| Erase | Erases image regions |
3734
| Flip | Flips a 2D image around its axis |
38-
| GammaContrast | Adjusts image contrast based on gamma value |
35+
| GammaContrast | Adjusts image contrast |
3936
| Gaussian | Applies a gaussian blur filter to the image |
4037
| JointBilateralFilter | Reduces image noise while preserving strong edges <br> based on a guidance image |
4138
| Laplacian | Applies a Laplace transform to an image |
4239
| MedianBlur | Reduces an image’s salt-and-pepper noise |
4340
| Morphology | Performs morphological erode and dilate transformations |
44-
| Non-Max Suppression | Selects the best bounding box out of a set of <br> overlapping boxes based on IOU and confidence thresholds |
4541
| Normalize | Normalizes an image pixel’s range |
4642
| PadStack | Stacks several images into a tensor, with border extension |
4743
| PillowResize | Changes the size and scale of an image using python-pillow algorithm |
4844
| Reformat | Converts a planar image into non-planar and vice versa |
49-
| Remap | Applies a generic geometrical transformation to an image, for <br> example, to perform fisheye dewarping |
5045
| Resize | Changes the size and scale of an image |
5146
| Rotate | Rotates a 2D array in multiples of 90 degrees |
52-
| Thresholding | Computes the threshold value based on the histogram of the <br> overall pixel intensity distribution of the image |
5347
| WarpAffine | Applies an affine transformation to an image |
5448
| WarpPerspective | Applies a perspective transformation to an image |
5549

0 commit comments

Comments
 (0)