View Source Evision.CalibrateRobertson (Evision v0.1.9)

Link to this section Summary

cv

Clears the algorithm state

Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read

Returns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string.

Python prototype (for reference):

Python prototype (for reference):

Python prototype (for reference):

Recovers inverse camera response.

Recovers inverse camera response.

Reads algorithm parameters from a file storage

Positional Arguments

Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).

Positional Arguments
  • max_iter: int

Python prototype (for reference):

Positional Arguments
  • threshold: float

Python prototype (for reference):

simplified API for language bindings

simplified API for language bindings

Functions

Raising version of clear/1.

Raising version of empty/1.

Raising version of getMaxIter/1.

Raising version of getRadiance/1.

Raising version of getThreshold/1.

Raising version of read/2.

Raising version of save/2.

Raising version of write/2.

Raising version of write/3.

Link to this section cv

Clears the algorithm state

Python prototype (for reference):

clear() -> None

Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read

Python prototype (for reference):

empty() -> retval

Returns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string.

Python prototype (for reference):

getDefaultName() -> retval

Python prototype (for reference):

getMaxIter() -> retval

Python prototype (for reference):

getRadiance() -> retval

Python prototype (for reference):

getThreshold() -> retval
Link to this function

process(self, src, times)

View Source

Recovers inverse camera response.

Positional Arguments
  • src: [Evision.Mat].

    vector of input images

  • times: Evision.Mat.

    vector of exposure time values for each image

Return
  • dst: Evision.Mat.

    256x1 matrix with inverse camera response function

Python prototype (for reference):

process(src, times[, dst]) -> dst
Link to this function

process(self, src, times, opts)

View Source

Recovers inverse camera response.

Positional Arguments
  • src: [Evision.Mat].

    vector of input images

  • times: Evision.Mat.

    vector of exposure time values for each image

Return
  • dst: Evision.Mat.

    256x1 matrix with inverse camera response function

Python prototype (for reference):

process(src, times[, dst]) -> dst

Reads algorithm parameters from a file storage

Positional Arguments
  • fn_: FileNode

Python prototype (for reference):

read(fn_) -> None
Positional Arguments

Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).

Python prototype (for reference):

save(filename) -> None
Link to this function

setMaxIter(self, max_iter)

View Source
Positional Arguments
  • max_iter: int

Python prototype (for reference):

setMaxIter(max_iter) -> None
Link to this function

setThreshold(self, threshold)

View Source
Positional Arguments
  • threshold: float

Python prototype (for reference):

setThreshold(threshold) -> None

simplified API for language bindings

Positional Arguments
  • fs: Ptr<FileStorage>
Keyword Arguments

Has overloading in C++

Python prototype (for reference):

write(fs[, name]) -> None

simplified API for language bindings

Positional Arguments
  • fs: Ptr<FileStorage>
Keyword Arguments

Has overloading in C++

Python prototype (for reference):

write(fs[, name]) -> None

Link to this section Functions

Raising version of clear/1.

Raising version of empty/1.

Raising version of getDefaultName/1.

Raising version of getMaxIter/1.

Raising version of getRadiance/1.

Raising version of getThreshold/1.

Link to this function

process!(self, src, times)

View Source

Raising version of process/3.

Link to this function

process!(self, src, times, opts)

View Source

Raising version of process/4.

Raising version of read/2.

Raising version of save/2.

Link to this function

setMaxIter!(self, max_iter)

View Source

Raising version of setMaxIter/2.

Link to this function

setThreshold!(self, threshold)

View Source

Raising version of setThreshold/2.

Raising version of write/2.

Raising version of write/3.