Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

DetectMultiScale

Can someone explain to me what does the flags parameter in the detectMultiScale function?

For example:

face = faceCascade.detectMultiScale(
    gray_image,
    scaleFactor = scaleFactor,
    minNeighbors = min_neighbors,
    minSize = (min_size, min_size),
    flags = cv2.CASCADE_SCALE_IMAGE
)

Thanks

DetectMultiScaleFlags parameter in the detectMultiScale function

Can someone explain to me what does the flags parameter in the detectMultiScale function?

For example:

face = faceCascade.detectMultiScale(
    gray_image,
    scaleFactor = scaleFactor,
    minNeighbors = min_neighbors,
    minSize = (min_size, min_size),
    flags = cv2.CASCADE_SCALE_IMAGE
)

Thanks

Flags parameter in the detectMultiScale function

Can someone explain to me what does the flags parameter do in the detectMultiScale function?

For example:

face = faceCascade.detectMultiScale(
    gray_image,
    scaleFactor = scaleFactor,
    minNeighbors = min_neighbors,
    minSize = (min_size, min_size),
    flags = cv2.CASCADE_SCALE_IMAGE
)

I could not find the flags in the documentation.

Thanks

Flags parameter in the detectMultiScale function

Can someone explain to me what does the flags parameter do in the detectMultiScale function?

For example:

face = faceCascade.detectMultiScale(
    gray_image,
    scaleFactor = scaleFactor,
    minNeighbors = min_neighbors,
    minSize = (min_size, min_size),
    flags = cv2.CASCADE_SCALE_IMAGE
)

I could not find the flags in the documentation.

Note: I'm using OpenCV 3.1.0.

Thanks