Skip to content

Commit

Permalink
Merge branch 'main' into release_v0.3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
milesp-nvidia committed Jun 30, 2023
2 parents b1b44d3 + 83f61ac commit e4f97ee
Show file tree
Hide file tree
Showing 331 changed files with 14,416 additions and 3,513 deletions.
159 changes: 0 additions & 159 deletions 3rdparty/cuOSD/aarch64/include/cuosd.h

This file was deleted.

159 changes: 0 additions & 159 deletions 3rdparty/cuOSD/x86_64/include/cuosd.h

This file was deleted.

2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -23,7 +23,7 @@ endif()

project(cvcuda
LANGUAGES C CXX
VERSION 0.3.0
VERSION 0.3.1
DESCRIPTION "CUDA-accelerated Computer Vision algorithms"
)

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
@@ -1,6 +1,6 @@
# Contributing to CV-CUDA

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

Contributions to CV-CUDA fall into the following categories:

Expand All @@ -12,7 +12,7 @@ Contributions to CV-CUDA fall into the following categories:
1. To propose a new feature, please file a new feature request
[issue](https://github.com/CVCUDA/CV-CUDA/issues/new/choose). Describe the
intended feature and discuss the design and implementation with the team and
community. NOTE: Currently, as of release v0.3.0-beta, CV-CUDA is not accepting
community. NOTE: Currently, as of release v0.3.1-beta, CV-CUDA is not accepting
outside contribution.
1. To ask a general question, please sumbit a question
[issue](https://github.com/CVCUDA/CV-CUDA/issues/new/choose). If you need
Expand Down
8 changes: 1 addition & 7 deletions DEVELOPER_GUIDE.md
Expand Up @@ -20,11 +20,8 @@ CV-CUDA includes:

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

Expand Down

0 comments on commit e4f97ee

Please sign in to comment.