View Source Evision.CUDA.BufferPool (Evision v0.1.38)

Summary

Types

t()

Type that represents an CUDA.BufferPool struct.

Types

@type t() :: %Evision.CUDA.BufferPool{ref: reference()}

Type that represents an CUDA.BufferPool struct.

  • ref. reference()

    The underlying erlang resource variable.

Functions

@spec bufferPool(Evision.CUDA.Stream.t()) :: t() | {:error, String.t()}

BufferPool

Positional Arguments
  • stream: Evision.CUDA.Stream.t()
Return
  • self: Evision.CUDA.BufferPool.t()

Python prototype (for reference only):

BufferPool(stream) -> <cuda_BufferPool object>
@spec getAllocator(t()) :: Evision.CUDA.GpuMat_Allocator.t() | {:error, String.t()}

getAllocator

Positional Arguments
  • self: Evision.CUDA.BufferPool.t()
Return
  • retval: GpuMat::Allocator

Python prototype (for reference only):

getAllocator() -> retval
Link to this function

getBuffer(self, size, type)

View Source
@spec getBuffer(t(), {number(), number()}, integer()) ::
  Evision.CUDA.GpuMat.t() | {:error, String.t()}

getBuffer

Positional Arguments
  • self: Evision.CUDA.BufferPool.t()
  • size: Size
  • type: int
Return
  • retval: Evision.CUDA.GpuMat.t()

Python prototype (for reference only):

getBuffer(size, type) -> retval
Link to this function

getBuffer(self, rows, cols, type)

View Source
@spec getBuffer(t(), integer(), integer(), integer()) ::
  Evision.CUDA.GpuMat.t() | {:error, String.t()}

getBuffer

Positional Arguments
  • self: Evision.CUDA.BufferPool.t()
  • rows: int
  • cols: int
  • type: int
Return
  • retval: Evision.CUDA.GpuMat.t()

Python prototype (for reference only):

getBuffer(rows, cols, type) -> retval