Skip to content

Releases: rnd-team-dev/plotoptix

IOIDN 2.3.1

03 Jan 15:35
2a261a3
Compare
Choose a tag to compare
  • Intel denoiser libs updated to 2.3.1. Accumulation frames, before the final one, are denoised using the fast model, the final frame is denoised using the high quality / slower model.
  • Several minor fixes and improvements.

OptiX 8.1 and ffmpeg 7

13 Dec 18:41
Compare
Choose a tag to compare
  • Moved to OptiX 8.1.
  • Encoder code upgraded to use FFmpeg 7.0; FFmpeg libs excluded from the Windows release (too large to keep them within the package).

OIDN denoiser, volume plots

10 Mar 18:10
5dbfda4
Compare
Choose a tag to compare
  • Included Intel Open Image Denoiser: HDR/LDR, supporting RGB/Albedo/Normal inputs.
  • Switched to optional counting of transmission path segments (previously they were counted always and included in
    the segment range limits).
  • Const-size geometry primitives (same radii, or u/v/w vectors for all data points) with much lower memory
    consumption, beneficial e.g. for volume plots.
  • Volume coloring material for semi-transparent volume visualization (experimental).

Noise based work distribution modes

06 Oct 17:34
dc38b7a
Compare
Choose a tag to compare

Work distribution has moved to a camera property. It is now possible to setup cameras with different modes and switch easyli.
Work distribution is now based on relative or absolute noise values.
See this example.

Noise-balanced sampling

18 Aug 17:40
Compare
Choose a tag to compare

Noise-balanced sampling is quite a nice feature. It took some more time to encode it, so the release is out not waiting for more features.
Sample code is in this notebook.

OptiX 7.7

04 Jun 15:33
eae3b78
Compare
Choose a tag to compare

NVIDIA driver r530 or above required

Code was moved to the new OptiX SDK and progresively new features should be covered. Also GPU-GPU transfers are evolving, now including CuPy arrays. In this release we have:

  • CuPy support for texture and geometry data updates
  • new curve geometries: Ribbon, Beziers
  • no dedicated PyTorch/CuPy/... methods, all types handled with single corresponding method (it is a breaking change, that require minor code updates)

and more news is coming, check Patreon ;)

Updates of data on GPU.

17 May 15:04
f69e0c5
Compare
Choose a tag to compare

This release introduces fast and simplified ways to copy data straight to device:

  • set texture data from pytorch tensors

  • texture filter modes enabled, default is trilinear, optionally nearest

  • set geometry data directly from numpy array or pytorch tensor (no host copy is made on the way)

  • synchronization method to update host copy with data from gpu: NpOptiX.sync_raw_data()

  • convenience method to get a copy of geometry data (more simple than PinnedBuffer, though returns a copy): NpOptiX.get_data()

OpenCV-like camera setup

16 Mar 17:57
91dd23e
Compare
Choose a tag to compare
  • OpenCV-like intrinsic matrix in camera setup, but note: distortion coefficients not supported still
  • configurable denoiser start frame
  • ovrlaping refractive volumes handling

AI upsampler and OptiX 7.6

30 Dec 21:02
b8f2f5b
Compare
Choose a tag to compare

NOTE: NVIDIA driver r520 or above is required for this release.

Updates are:

  • AI upsampler and HDR denoiser
  • Catmull-Rom curve primitive
  • binaries updated to OptiX 7.6
  • raytracing and callbacks workflow explained in the docs

Update packages

27 Oct 15:53
a68e6eb
Compare
Choose a tag to compare

Code is updated to work with recently released pythonnet 3.0, which enables using Python 3.10 and more recent linux distros. There are also a few internal packages updated.

  • packages updated to VS 2022, DllExport changed to the one by 3F
  • code updated to support pythonnet 3.0, thus compatible with all pythons up to 3.10