سؤال

I've done basic HSV threshholding in C++ OpenCV through the following

    inRange(HSV,Scalar(H_MIN,S_MIN,V_MIN),Scalar(H_MAX,S_MAX,V_MAX),threshold);

though I can't find anything similar in the Imgproc class (or any other class) in Java so could anyone point me?

هل كانت مفيدة؟

المحلول

it's in Core, not Imgproc ;)

inRange()

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top