python functions' documentation
for example : PCACompute(data, mean[, eigenvectors[, maxComponents]]) in this documentation,what does these square brakets mean???
for example : PCACompute(data, mean[, eigenvectors[, maxComponents]]) in this documentation,what does these square brakets mean???
the arguments in square brackets are optional (and you might skip them).
note, that if you skip some args, but call a later one, like maxComponents
, you have to do it in key=value
style, like:
data = ...
mean = None
cv2.PCACompute(data, mean, maxComponents=32)
Asked: 2016-09-03 03:23:02 -0600
Seen: 155 times
Last updated: Sep 03 '16
Area of a single pixel object in OpenCV
Weird result while finding angle
cv2.perspectiveTransform() with Python
cv2 bindings incompatible with numpy.dstack function?
Getting single frames from video with python
Line detection and timestamps, video, Python
Different behaviour of OpenCV Python arguments in 32 and 64-bit systems