Type Definition opencv::types::PtrOfLearningBasedWB [−][src]
pub type PtrOfLearningBasedWB = Ptr<dyn LearningBasedWB>;
Implementations
Trait Implementations
Stores algorithm parameters in a file storage
simplified API for language bindings Stores algorithm parameters in a file storage Read more
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs). Read more
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. Read more
fn extract_simple_features(
&mut self,
src: &dyn ToInputArray,
dst: &mut dyn ToOutputArray
) -> Result<()>
fn extract_simple_features(
&mut self,
src: &dyn ToInputArray,
dst: &mut dyn ToOutputArray
) -> Result<()>
Implements the feature extraction part of the algorithm. Read more
Maximum possible value of the input image (e.g. 255 for 8 bit images, 4095 for 12 bit images) Read more
Threshold that is used to determine saturated pixels, i.e. pixels where at least one of the channels exceeds
inline formula
are ignored. Read moreDefines the size of one dimension of a three-dimensional RGB histogram that is used internally by the algorithm. It often makes sense to increase the number of bins for images with higher bit depth (e.g. 256 bins for a 12 bit image). Read more
Maximum possible value of the input image (e.g. 255 for 8 bit images, 4095 for 12 bit images) Read more
Threshold that is used to determine saturated pixels, i.e. pixels where at least one of the channels exceeds
inline formula
are ignored. Read moreDefines the size of one dimension of a three-dimensional RGB histogram that is used internally by the algorithm. It often makes sense to increase the number of bins for images with higher bit depth (e.g. 256 bins for a 12 bit image). Read more
fn balance_white(
&mut self,
src: &dyn ToInputArray,
dst: &mut dyn ToOutputArray
) -> Result<()>
fn balance_white(
&mut self,
src: &dyn ToInputArray,
dst: &mut dyn ToOutputArray
) -> Result<()>
Applies white balancing to the input image Read more