HomeSort by relevance Sort by last modified time
    Searched refs:imageGray (Results 1 - 8 of 8) sorted by null

  /external/opencv3/samples/android/face-detection/src/org/opencv/samples/facedetect/
DetectionBasedTracker.java 24 public void detect(Mat imageGray, MatOfRect faces) {
25 nativeDetect(mNativeObj, imageGray.getNativeObjAddr(), faces.getNativeObjAddr());
  /development/perftests/panorama/feature_mos/src/mosaic/
AlignFeatures.h 89 ImageType imageGray;
AlignFeatures.cpp 46 if (imageGray != ImageUtils::IMAGE_TYPE_NOIMAGE)
47 ImageUtils::freeImage(imageGray);
90 imageGray = ImageUtils::allocateImage(width, height, 1);
100 ImageUtils::rgb2gray(imageGray, imageRGB, width, height);
101 return addFrame(imageGray);
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
AlignFeatures.h 89 ImageType imageGray;
AlignFeatures.cpp 46 if (imageGray != ImageUtils::IMAGE_TYPE_NOIMAGE)
47 ImageUtils::freeImage(imageGray);
90 imageGray = ImageUtils::allocateImage(width, height, 1);
100 ImageUtils::rgb2gray(imageGray, imageRGB, width, height);
101 return addFrame(imageGray);
  /external/opencv3/modules/objdetect/src/
detection_based_tracker.cpp 129 bool communicateWithDetectingThread(const Mat& imageGray, std::vector<Rect>& rectsWhereRegions);
512 bool cv::DetectionBasedTracker::SeparateDetectionWork::communicateWithDetectingThread(const Mat& imageGray, std::vector<Rect>& rectsWhereRegions)
551 imageSeparateDetecting.create(imageGray.size(), CV_8UC1);
553 imageGray.copyTo(imageSeparateDetecting);//may change imageSeparateDetecting ptr. But should not.
619 void DetectionBasedTracker::process(const Mat& imageGray)
621 CV_Assert(imageGray.type()==CV_8UC1);
637 Mat imageDetect=imageGray;
642 shouldHandleResult = separateDetectionWork->communicateWithDetectingThread(imageGray, rectsWhereRegions);
    [all...]
  /external/opencv3/samples/android/face-detection/jni/
DetectionBasedTracker_jni.cpp 225 (JNIEnv * jenv, jclass, jlong thiz, jlong imageGray, jlong faces)
232 ((DetectorAgregator*)thiz)->tracker->process(*((Mat*)imageGray));
  /external/opencv3/modules/objdetect/include/opencv2/objdetect/
detection_based_tracker.hpp 129 virtual void process(const cv::Mat& imageGray);

Completed in 645 milliseconds