docs/html/group__drawing.html
| | Jetson Inference
DNN Vision Library |
Drawing Utilities Library (jetson-utils) » CUDA
Drawing basic 2D shapes using CUDA. More...
|
|
| cudaError_t | cudaDrawCircle (void *input, void *output, size_t width, size_t height, imageFormat format, int cx, int cy, float radius, const float4 &color) |
| | cudaDrawCircle More...
|
| |
| template<typename T > |
| cudaError_t | cudaDrawCircle (T *input, T *output, size_t width, size_t height, int cx, int cy, float radius, const float4 &color) |
| | cudaDrawCircle More...
|
| |
| cudaError_t | cudaDrawCircle (void *image, size_t width, size_t height, imageFormat format, int cx, int cy, float radius, const float4 &color) |
| | cudaDrawCircle (in-place) More...
|
| |
| template<typename T > |
| cudaError_t | cudaDrawCircle (T *image, size_t width, size_t height, int cx, int cy, float radius, const float4 &color) |
| | cudaDrawCircle (in-place) More...
|
| |
| cudaError_t | cudaDrawLine (void *input, void *output, size_t width, size_t height, imageFormat format, int x1, int y1, int x2, int y2, const float4 &color, float line_width=1.0) |
| | cudaDrawLine More...
|
| |
| template<typename T > |
| cudaError_t | cudaDrawLine (T *input, T *output, size_t width, size_t height, int x1, int y1, int x2, int y2, const float4 &color, float line_width=1.0) |
| | cudaDrawLine More...
|
| |
| cudaError_t | cudaDrawLine (void *image, size_t width, size_t height, imageFormat format, int x1, int y1, int x2, int y2, const float4 &color, float line_width=1.0) |
| | cudaDrawLine (in-place) More...
|
| |
| template<typename T > |
| cudaError_t | cudaDrawLine (T *image, size_t width, size_t height, int x1, int y1, int x2, int y2, const float4 &color, float line_width=1.0) |
| | cudaDrawLine (in-place) More...
|
| |
| cudaError_t | cudaDrawRect (void *input, void *output, size_t width, size_t height, imageFormat format, int left, int top, int right, int bottom, const float4 &color, const float4 &line_color=make_float4(0, 0, 0, 0), float line_width=1.0f) |
| | cudaDrawRect More...
|
| |
| template<typename T > |
| cudaError_t | cudaDrawRect (T *input, T *output, size_t width, size_t height, int left, int top, int right, int bottom, const float4 &color, const float4 &line_color=make_float4(0, 0, 0, 0), float line_width=1.0f) |
| | cudaDrawRect More...
|
| |
| cudaError_t | cudaDrawRect (void *image, size_t width, size_t height, imageFormat format, int left, int top, int right, int bottom, const float4 &color, const float4 &line_color=make_float4(0, 0, 0, 0), float line_width=1.0f) |
| | cudaDrawRect (in-place) More...
|
| |
| template<typename T > |
| cudaError_t | cudaDrawRect (T *image, size_t width, size_t height, int left, int top, int right, int bottom, const float4 &color, const float4 &line_color=make_float4(0, 0, 0, 0), float line_width=1.0f) |
| | cudaDrawRect More...
|
| |
Drawing basic 2D shapes using CUDA.
template<typename T >
| cudaError_t cudaDrawCircle | ( | T * | image, | | | | size_t | width, | | | | size_t | height, | | | | int | cx, | | | | int | cy, | | | | float | radius, | | | | const float4 & | color | | | ) | | |
cudaDrawCircle (in-place)
template<typename T >
| cudaError_t cudaDrawCircle | ( | T * | input, | | | | T * | output, | | | | size_t | width, | | | | size_t | height, | | | | int | cx, | | | | int | cy, | | | | float | radius, | | | | const float4 & | color | | | ) | | |
cudaDrawCircle
|
| cudaError_t cudaDrawCircle | ( | void * | image, | | | | size_t | width, | | | | size_t | height, | | | | imageFormat | format, | | | | int | cx, | | | | int | cy, | | | | float | radius, | | | | const float4 & | color | | | ) | | |
| inline |
cudaDrawCircle (in-place)
| cudaError_t cudaDrawCircle | ( | void * | input, | | | | void * | output, | | | | size_t | width, | | | | size_t | height, | | | | imageFormat | format, | | | | int | cx, | | | | int | cy, | | | | float | radius, | | | | const float4 & | color | | | ) | | |
cudaDrawCircle
template<typename T >
| cudaError_t cudaDrawLine | ( | T * | image, |
| | | size_t | width, |
| | | size_t | height, |
| | | int | x1, |
| | | int | y1, |
| | | int | x2, |
| | | int | y2, |
| | | const float4 & | color, |
| | | float | line_width = 1.0 |
| | ) | | |
cudaDrawLine (in-place)
template<typename T >
| cudaError_t cudaDrawLine | ( | T * | input, |
| | | T * | output, |
| | | size_t | width, |
| | | size_t | height, |
| | | int | x1, |
| | | int | y1, |
| | | int | x2, |
| | | int | y2, |
| | | const float4 & | color, |
| | | float | line_width = 1.0 |
| | ) | | |
cudaDrawLine
|
| cudaError_t cudaDrawLine | ( | void * | image, |
| | | size_t | width, |
| | | size_t | height, |
| | | imageFormat | format, |
| | | int | x1, |
| | | int | y1, |
| | | int | x2, |
| | | int | y2, |
| | | const float4 & | color, |
| | | float | line_width = 1.0 |
| | ) | | |
| inline |
cudaDrawLine (in-place)
| cudaError_t cudaDrawLine | ( | void * | input, |
| | | void * | output, |
| | | size_t | width, |
| | | size_t | height, |
| | | imageFormat | format, |
| | | int | x1, |
| | | int | y1, |
| | | int | x2, |
| | | int | y2, |
| | | const float4 & | color, |
| | | float | line_width = 1.0 |
| | ) | | |
cudaDrawLine
template<typename T >
| cudaError_t cudaDrawRect | ( | T * | image, |
| | | size_t | width, |
| | | size_t | height, |
| | | int | left, |
| | | int | top, |
| | | int | right, |
| | | int | bottom, |
| | | const float4 & | color, |
| | | const float4 & | line_color = make_float4(0,0,0,0), |
| | | float | line_width = 1.0f |
| | ) | | |
cudaDrawRect
template<typename T >
| cudaError_t cudaDrawRect | ( | T * | input, |
| | | T * | output, |
| | | size_t | width, |
| | | size_t | height, |
| | | int | left, |
| | | int | top, |
| | | int | right, |
| | | int | bottom, |
| | | const float4 & | color, |
| | | const float4 & | line_color = make_float4(0,0,0,0), |
| | | float | line_width = 1.0f |
| | ) | | |
cudaDrawRect
|
| cudaError_t cudaDrawRect | ( | void * | image, |
| | | size_t | width, |
| | | size_t | height, |
| | | imageFormat | format, |
| | | int | left, |
| | | int | top, |
| | | int | right, |
| | | int | bottom, |
| | | const float4 & | color, |
| | | const float4 & | line_color = make_float4(0,0,0,0), |
| | | float | line_width = 1.0f |
| | ) | | |
| inline |
cudaDrawRect (in-place)
| cudaError_t cudaDrawRect | ( | void * | input, |
| | | void * | output, |
| | | size_t | width, |
| | | size_t | height, |
| | | imageFormat | format, |
| | | int | left, |
| | | int | top, |
| | | int | right, |
| | | int | bottom, |
| | | const float4 & | color, |
| | | const float4 & | line_color = make_float4(0, 0, 0, 0), |
| | | float | line_width = 1.0f |
| | ) | | |
cudaDrawRect