1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Merge pull request #27162 from fengyuentau:4x/hal_rvv/copyMask

HAL: added copyToMask and implemented in hal_rvv #27162

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [ ] There is a reference to the original bug report and related work
- [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [ ] The feature is well documented and sample code can be built with the project CMake
This commit is contained in:
Yuantao Feng
2025-03-31 15:49:37 +08:00
committed by GitHub
parent 8c7288676e
commit ec1cbe294a
4 changed files with 223 additions and 0 deletions
+12
View File
@@ -459,6 +459,18 @@ void Mat::copyTo( OutputArray _dst, InputArray _mask ) const
}
CV_IPP_RUN_FAST(ipp_copyTo(*this, dst, mask))
if ( this->dims <= 2 ) {
if ( this->size() == dst.size() && this->size() == dst.size() ) {
CALL_HAL(copyToMask, cv_hal_copyToMasked, this->data, this->step, dst.data, dst.step, this->cols, this->rows, this->type(), mask.data, mask.step, mask.type());
}
}
else if ( this->isContinuous() && dst.isContinuous() && mask.isContinuous() )
{
size_t sz = this->total();
if (sz < INT_MAX) {
CALL_HAL(copyToMask, cv_hal_copyToMasked, this->data, 0, dst.data, 0, (int)sz, 1, this->type(), mask.data, 0, mask.type());
}
}
size_t esz = colorMask ? elemSize1() : elemSize();
BinaryFunc copymask = getCopyMaskFunc(esz);