From 749b1a9f4c4b504f0544400d8141402d79ada4e8 Mon Sep 17 00:00:00 2001 From: Dustin Franklin Date: Tue, 2 May 2023 18:05:44 -0400 Subject: [PATCH] updated docs --- README.md | 4 ++-- docs/aux-image.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8c02cd70a..fefec30a5 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ Introductory code walkthroughs of using the library are covered during these ste * [Coding Your Own Image Recognition Program (Python)](docs/imagenet-example-python-2.md) * [Coding Your Own Image Recognition Program (C++)](docs/imagenet-example-2.md) -Additional C++ and Python samples for running the networks on static images and live camera streams can be found here: +Additional C++ and Python samples for running the networks on images and live camera streams can be found here: | | C++ | Python | |-------------------|---------------------|---------------------| @@ -134,7 +134,7 @@ Additional C++ and Python samples for running the networks on static images and |    Background Removal | [`backgroundnet.cpp`](examples/backgroundnet/backgroundnet.cpp) | [`backgroundnet.py`](python/examples/backgroundnet.py) | |    Monocular Depth | [`depthnet.cpp`](examples/depthnet/segnet.cpp) | [`depthnet.py`](python/examples/depthnet.py) | -> **note**: for working with numpy arrays, see [Converting to Numpy Arrays](docs/aux-image.md#converting-to-numpy-arrays) and [Converting from Numpy Arrays](docs/aux-image.md#converting-from-numpy-arrays) +> **note**: for using memory with other Python libraries (like Numpy, PyTorch, ect) see the [Array Interfaces](docs/aux-image.md#array-interfaces) section. These examples will automatically be compiled while [Building the Project from Source](docs/building-repo-2.md), and are able to run the pre-trained models listed below in addition to custom models provided by the user. Launch each example with `--help` for usage info. diff --git a/docs/aux-image.md b/docs/aux-image.md index 9eb4a94a3..d2ec2a03c 100644 --- a/docs/aux-image.md +++ b/docs/aux-image.md @@ -186,7 +186,7 @@ So you can do things like `img.width` and `img.height` to access properties abou ### Array Interfaces -There exist several ways to access the `cudaImage` memory from Python, for interoperability with other libraries: +For zero-copy interoperability with other libraries, there exist several ways to access the `cudaImage` memory from Python: * [Indexing images directly from Python](#accessing-image-data-in-python) * [Numpy `__array__` interface](#accessing-as-a-numpy-array), [`cudaToNumpy()`](#converting-to-numpy-arrays), [`cudaFromNumpy()`](#converting-from-numpy-arrays)