View Source Evision.CalibrateCRF (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.
Recovers inverse camera response.
Recovers inverse camera response.
Reads algorithm parameters from a file storage
Positional Arguments
- filename:
String
Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).
simplified API for language bindings
simplified API for language bindings
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
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
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
- filename:
String
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
simplified API for language bindings
Positional Arguments
- fs:
Ptr<FileStorage>
Keyword Arguments
- name:
String
.
Has overloading in C++
Python prototype (for reference):
write(fs[, name]) -> None
simplified API for language bindings
Positional Arguments
- fs:
Ptr<FileStorage>
Keyword Arguments
- name:
String
.
Has overloading in C++
Python prototype (for reference):
write(fs[, name]) -> None