You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the same used by example:
// only gray scale
final IplImage input= cvCreateImage(cvGetSize(image), IPL_DEPTH_8U, 1);
cvCvtColor(image, imageBW, CV_BGR2GRAY);
BytePointer elem = cvGetSeqElem(rects, iface);
CvRect rect = new CvRect(elem);
Somebody knows how I can improve to become points found more accuracy ?
For Example in example here,
the pre-processing of image is just convert image to grayscale
There is something more that you do for sharing with us ?
I did cvEqualizeHist(gray, gray); and reduce specks from image:
cvMorphologyEx(gray, gray, null, null, CV_CAP_OPENNI, 1);
I tried to applied Gabor Filter but the accuracy of points wasn't good.
The text was updated successfully, but these errors were encountered: