Home
last modified time | relevance | path

Searched refs:dstroi (Results 1 – 7 of 7) sorted by relevance

/dports/graphics/openimageio/oiio-Release-2.2.16.0/src/libOpenImageIO/
H A Dimagebufalgo_copy.cpp24 int relative_x = dstroi.xbegin - srcroi.xbegin; in paste_()
25 int relative_y = dstroi.ybegin - srcroi.ybegin; in paste_()
26 int relative_z = dstroi.zbegin - srcroi.zbegin; in paste_()
33 dstroi.chend); in paste_()
58 int relative_x = dstroi.xbegin - srcroi.xbegin; in deep_paste_()
59 int relative_y = dstroi.ybegin - srcroi.ybegin; in deep_paste_()
60 int relative_z = dstroi.zbegin - srcroi.zbegin; in deep_paste_()
115 ROI dstroi_save = dstroi; // save the original in paste()
121 if (!IBAprep(dstroi, &dst)) in paste()
342 int width = dstroi.width(), height = dstroi.height(), in circular_shift_()
[all …]
H A Dimagebufalgo_pixelmath.cpp464 ROI dstroi = roi; in channel_sum() local
465 dstroi.chbegin = 0; in channel_sum()
466 dstroi.chend = 1; in channel_sum()
467 if (!IBAprep(dstroi, &dst)) in channel_sum()
1092 ROI dstroi = roi; in color_map() local
1093 dstroi.chbegin = 0; in color_map()
1094 dstroi.chend = channels; in color_map()
1095 if (!IBAprep(dstroi, &dst)) in color_map()
1097 dstroi.chend = std::min(channels, dst.nchannels()); in color_map()
1278 ROI dstroi = get_roi(dst.spec()); in fixNonFinite_() local
[all …]
/dports/graphics/py-openimageio/oiio-Release-2.2.16.0/src/libOpenImageIO/
H A Dimagebufalgo_copy.cpp24 int relative_x = dstroi.xbegin - srcroi.xbegin; in paste_()
25 int relative_y = dstroi.ybegin - srcroi.ybegin; in paste_()
26 int relative_z = dstroi.zbegin - srcroi.zbegin; in paste_()
33 dstroi.chend); in paste_()
58 int relative_x = dstroi.xbegin - srcroi.xbegin; in deep_paste_()
59 int relative_y = dstroi.ybegin - srcroi.ybegin; in deep_paste_()
60 int relative_z = dstroi.zbegin - srcroi.zbegin; in deep_paste_()
115 ROI dstroi_save = dstroi; // save the original in paste()
121 if (!IBAprep(dstroi, &dst)) in paste()
342 int width = dstroi.width(), height = dstroi.height(), in circular_shift_()
[all …]
H A Dimagebufalgo_pixelmath.cpp464 ROI dstroi = roi; in channel_sum() local
465 dstroi.chbegin = 0; in channel_sum()
466 dstroi.chend = 1; in channel_sum()
467 if (!IBAprep(dstroi, &dst)) in channel_sum()
1092 ROI dstroi = roi; in color_map() local
1093 dstroi.chbegin = 0; in color_map()
1094 dstroi.chend = channels; in color_map()
1095 if (!IBAprep(dstroi, &dst)) in color_map()
1097 dstroi.chend = std::min(channels, dst.nchannels()); in color_map()
1278 ROI dstroi = get_roi(dst.spec()); in fixNonFinite_() local
[all …]
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudawarping/src/
H A Dwarp.cpp165 NppiRect dstroi; in call() local
166 dstroi.x = 0; in call()
167 dstroi.y = 0; in call()
168 dstroi.height = dst.rows; in call()
169 dstroi.width = dst.cols; in call()
174 dst.ptr<npp_type>(), static_cast<int>(dst.step), dstroi, in call()
493 NppiRect dstroi; in call() local
494 dstroi.x = dstroi.y = 0; in call()
495 dstroi.height = dst.rows; in call()
496 dstroi.width = dst.cols; in call()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Dcopy.cpp815 int right = dstroi.width - srcroi.width - left; in copyMakeBorder_8u()
816 int bottom = dstroi.height - srcroi.height - top; in copyMakeBorder_8u()
833 dstroi.width *= cn; in copyMakeBorder_8u()
862 dstroi.width *= elemSize; in copyMakeBorder_8u()
884 cv::AutoBuffer<uchar> _constBuf(dstroi.width*cn); in copyMakeConstBorder_8u()
886 int right = dstroi.width - srcroi.width - left; in copyMakeConstBorder_8u()
887 int bottom = dstroi.height - srcroi.height - top; in copyMakeConstBorder_8u()
889 for( i = 0; i < dstroi.width; i++ ) in copyMakeConstBorder_8u()
896 dstroi.width *= cn; in copyMakeConstBorder_8u()
911 memcpy(dst + i * dststep, constBuf, dstroi.width); in copyMakeConstBorder_8u()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dimgwarp.cpp2319 IppiRect dstroi = { 0, range.start, dst.cols, range.end - range.start }; in operator ()() local
2334 (int)dst.step[0], dstroi, coeffs, mode )); in operator ()()
3084 IppiRect dstroi = {0, range.start, dst.cols, range.end - range.start}; in operator ()() local
3098 …src.ptr();, srcsize, (int)src.step[0], srcroi, dst.ptr(), (int)dst.step[0], dstroi, coeffs, mode)); in operator ()()