1 | initial version |
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)