Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C++ のコードの次の部分があります。
cv::Mat markers(image.size(),CV_8U,cv::Scalar(-1)); markers(cv::Rect(0,0,image.cols, 5)) = cv::Scalar::all(1);
コードのこの部分のJava(またはAndroid)バージョンの同等の構文を教えてください。「setTo()」を見ていましたが、Rect がかからないようです。または、ループを介して1つずつしか変更できませんか?