Home
last modified time | relevance | path

Searched refs:wholeSize (Results 1 – 25 of 73) sorted by relevance

123

/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Dcuda_gpu_mat.cpp208 void cv::cuda::GpuMat::locateROI(Size& wholeSize, Point& ofs) const in locateROI() argument
230 wholeSize.height = std::max(static_cast<int>((delta2 - minstep) / step + 1), ofs.y + rows); in locateROI()
231wholeSize.width = std::max(static_cast<int>((delta2 - step * (wholeSize.height - 1)) / esz), ofs.x… in locateROI()
236 Size wholeSize; in adjustROI() local
238 locateROI(wholeSize, ofs); in adjustROI()
243 int row2 = std::min(ofs.y + rows + dbottom, wholeSize.height); in adjustROI()
246 int col2 = std::min(ofs.x + cols + dright, wholeSize.width); in adjustROI()
307 Size wholeSize; in ensureSizeIsEnoughImpl() local
308wholeSize.height = std::max(static_cast<int>((delta2 - minstep) / static_cast<size_t>(obj.step) + … in ensureSizeIsEnoughImpl()
309wholeSize.width = std::max(static_cast<int>((delta2 - static_cast<size_t>(obj.step) * (wholeSize.h… in ensureSizeIsEnoughImpl()
[all …]
H A Dumatrix.cpp549 Size wholeSize; in getUMat() local
551 locateROI(wholeSize, ofs); in getUMat()
559 int dright = wholeSize.width - src.cols - ofs.x; in getUMat()
856 void UMat::locateROI( Size& wholeSize, Point& ofs ) const in locateROI() argument
872 wholeSize.height = std::max(wholeSize.height, ofs.y + rows); in locateROI()
873 wholeSize.width = (int)((delta2 - step*(wholeSize.height-1))/esz); in locateROI()
874 wholeSize.width = std::max(wholeSize.width, ofs.x + cols); in locateROI()
881 Size wholeSize; Point ofs; in adjustROI() local
883 locateROI( wholeSize, ofs ); in adjustROI()
884 …std::min(std::max(ofs.y - dtop, 0), wholeSize.height), row2 = std::max(0, std::min(ofs.y + rows + … in adjustROI()
[all …]
H A Dmatrix.cpp1100 void Mat::locateROI( Size& wholeSize, Point& ofs ) const in locateROI() argument
1115 wholeSize.height = (int)((delta2 - minstep)/step[0] + 1); in locateROI()
1116 wholeSize.height = std::max(wholeSize.height, ofs.y + rows); in locateROI()
1117 wholeSize.width = (int)((delta2 - step*(wholeSize.height-1))/esz); in locateROI()
1118 wholeSize.width = std::max(wholeSize.width, ofs.x + cols); in locateROI()
1124 Size wholeSize; Point ofs; in adjustROI() local
1126 locateROI( wholeSize, ofs ); in adjustROI()
1127 …std::min(std::max(ofs.y - dtop, 0), wholeSize.height), row2 = std::max(0, std::min(ofs.y + rows + … in adjustROI()
1128 …std::min(std::max(ofs.x - dleft, 0), wholeSize.width), col2 = std::max(0, std::min(ofs.x + cols + … in adjustROI()
H A Dcopy.cpp952 Size wholeSize; in ocl_copyMakeBorder() local
954 src.locateROI(wholeSize, ofs); in ocl_copyMakeBorder()
956 int dbottom = std::min(wholeSize.height - src.rows - ofs.y, bottom); in ocl_copyMakeBorder()
958 int dright = std::min(wholeSize.width - src.cols - ofs.x, right); in ocl_copyMakeBorder()
1036 Size wholeSize; in copyMakeBorder() local
1038 src.locateROI(wholeSize, ofs); in copyMakeBorder()
1040 int dbottom = std::min(wholeSize.height - src.rows - ofs.y, bottom); in copyMakeBorder()
1042 int dright = std::min(wholeSize.width - src.cols - ofs.x, right); in copyMakeBorder()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudawarping/src/
H A Dresize.cpp100 Size wholeSize; in resize() local
102 src.locateROI(wholeSize, ofs); in resize()
103 PtrStepSzb wholeSrc(wholeSize.height, wholeSize.width, src.datastart, src.step); in resize()
H A Dremap.cpp96 Size wholeSize; in remap() local
98 src.locateROI(wholeSize, ofs); in remap()
100 …func(src, PtrStepSzb(wholeSize.height, wholeSize.width, src.datastart, src.step), ofs.x, ofs.y, xm… in remap()
H A Dwarp.cpp199 Size wholeSize; in warpAffine() local
201 src.locateROI(wholeSize, ofs); in warpAffine()
317 …func(src, PtrStepSzb(wholeSize.height, wholeSize.width, src.datastart, src.step), ofs.x, ofs.y, co… in warpAffine()
338 Size wholeSize; in warpPerspective() local
340 src.locateROI(wholeSize, ofs); in warpPerspective()
456 …func(src, PtrStepSzb(wholeSize.height, wholeSize.width, src.datastart, src.step), ofs.x, ofs.y, co… in warpPerspective()
/dports/misc/perkeep/perkeep-0.11/pkg/blobserver/blobpacked/
H A Dwholefetch.go53 func (s *storage) OpenWholeRef(wholeRef blob.Ref, offset int64) (rc io.ReadCloser, wholeSize int64,…
73 if err := conv.ParseFields(it.ValueBytes(), &wholeSize, &nZipWant); err != nil {
121 remain: wholeSize - offset,
124 return rc, wholeSize, nil
H A Dblobpacked.go465 wholeSize uint64 // size of the whole file that this zip is a part of member
600 wholeSize: uint64(mf.WholeSize),
643 if zipMetas[0].wholeSize != wholeBytesWritten {
652 fileName, wholeRef, wholeBytesWritten, zipMetas[0].wholeSize)
927 wholeSize, err := strutil.ParseUintBytes(v[:sp], 10, 64)
931 m.wholeSize = uint64(wholeSize)
1178 wholeSize int64 member
1219 pk.wholeSize, err = io.Copy(h, pk.fr)
1251 err = pk.s.meta.Set(wholeKey, fmt.Sprintf("%d %d", pk.wholeSize, len(pk.zips)))
1322 WholeSize: pk.wholeSize,
[all …]
H A Dblobpacked_test.go299 wholeSize: 139639864,
308 wholeSize: 139639864,
317 wholeSize: 139639864,
326 wholeSize: 139639864,
335 wholeSize: 139639864,
344 wholeSize: 139639864,
353 wholeSize: 139639864,
362 wholeSize: 139639864,
371 wholeSize: 139639864,
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/src/
H A Dcanny.cpp152 Size wholeSize; in detect() local
154 image.locateROI(wholeSize, ofs); in detect()
155 GpuMat srcWhole(wholeSize, image.type(), image.datastart, image.step); in detect()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dfilter.dispatch.cpp163 wholeSize = Size(-1,-1); in init()
206 CV_Assert( wholeSize.width > 0 && wholeSize.height > 0 ); in proceed()
577 cv::Size sz = _src.size(), wholeSize; in ocl_filter2D() local
587 src.locateROI(wholeSize, ofs); in ocl_filter2D()
604 int h = isolated ? sz.height : wholeSize.height; in ocl_filter2D()
605 int w = isolated ? sz.width : wholeSize.width; in ocl_filter2D()
680 int h = isolated ? sz.height : wholeSize.height; in ocl_filter2D()
681 int w = isolated ? sz.width : wholeSize.width; in ocl_filter2D()
926 Size wholeSize; in ocl_sepFilter2D_SinglePass() local
928 src.locateROI(wholeSize, origin); in ocl_sepFilter2D_SinglePass()
[all …]
H A Dmorph.dispatch.cpp611 Size size = _src.size(), wholeSize; in ocl_morphSmall() local
630 src.locateROI(wholeSize, ofs); in ocl_morphSmall()
633 int h = isolated ? size.height : wholeSize.height; in ocl_morphSmall()
634 int w = isolated ? size.width : wholeSize.width; in ocl_morphSmall()
715 src.locateROI(wholeSize, ofs); in ocl_morphSmall()
716 … src.adjustROI(ofs.y, wholeSize.height - rows - ofs.y, ofs.x, wholeSize.width - cols - ofs.x); in ocl_morphSmall()
719 … src.adjustROI(-ofs.y, -wholeSize.height + rows + ofs.y, -ofs.x, -wholeSize.width + cols + ofs.x); in ocl_morphSmall()
720 …source.adjustROI(-ofs.y, -wholeSize.height + rows + ofs.y, -ofs.x, -wholeSize.width + cols + ofs.x… in ocl_morphSmall()
721 source.locateROI(wholeSize, ofs); in ocl_morphSmall()
730 int srcEndX = isolated ? srcOffsetX + size.width : wholeSize.width; in ocl_morphSmall()
[all …]
H A Dbox_filter.dispatch.cpp137 Size size = _src.size(), wholeSize; in ocl_boxFilter() local
151 src.locateROI(wholeSize, ofs); in ocl_boxFilter()
154 int h = isolated ? size.height : wholeSize.height; in ocl_boxFilter()
155 int w = isolated ? size.width : wholeSize.width; in ocl_boxFilter()
276 int srcEndX = isolated ? srcOffsetX + size.width : wholeSize.width; in ocl_boxFilter()
277 int srcEndY = isolated ? srcOffsetY + size.height : wholeSize.height; in ocl_boxFilter()
H A Dfilterengine.hpp239 virtual int start(const cv::Size &wholeSize, const cv::Size &sz, const cv::Point &ofs);
260 Size wholeSize; member in cv::FilterEngine
H A Dcorner.cpp331 Size wholeSize; in extractCovData() local
333 src.locateROI(wholeSize, ofs); in extractCovData()
337 wholeSize.height > sobel_lsz + (aperture_size >> 1) && in extractCovData()
338 wholeSize.width > sobel_lsz + (aperture_size >> 1)) in extractCovData()
364 wholeSize.height, wholeSize.width, scale); in extractCovData()
/dports/editors/calligra/calligra-3.2.1/plugins/commentshape/
H A DGlobals.h32 const QSizeF wholeSize = QSizeF(120.0,100.0); variable
H A DCommentShape.cpp182 KoShapeContainer::setSize(wholeSize); in setActive()
/dports/graphics/opencv/opencv-4.5.3/modules/features2d/src/
H A Dorb.cpp1042 Size wholeSize(sz.width + border*2, sz.height + border*2); in detectAndCompute() local
1043 if( level_ofs.x + wholeSize.width > bufSize.width ) in detectAndCompute()
1046 level_dy = wholeSize.height; in detectAndCompute()
1052 level_ofs.x += wholeSize.width; in detectAndCompute()
1067 Size wholeSize(sz.width + border*2, sz.height + border*2); in detectAndCompute() local
1068 … Rect wholeLinfo = Rect(linfo.x - border, linfo.y - border, wholeSize.width, wholeSize.height); in detectAndCompute()
/dports/misc/perkeep/perkeep-0.11/pkg/blobserver/
H A Dinterface.go205 OpenWholeRef(wholeRef blob.Ref, offset int64) (rc io.ReadCloser, wholeSize int64, err error)
/dports/misc/perkeep/perkeep-0.11/pkg/blobserver/replica/
H A Dreplica.go316 …orage) OpenWholeRef(wholeRef blob.Ref, offset int64) (rc io.ReadCloser, wholeSize int64, err error…
320 rc, wholeSize, err = v.OpenWholeRef(wholeRef, offset)
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ximgproc/test/
H A Dtest_adaptive_manifold_ref_impl.cpp269 Size wholeSize; in ensureSizeIsEnough() local
270 wholeSize.height = std::max(static_cast<int>((delta2 - minstep) / m.step + 1), m.rows); in ensureSizeIsEnough()
271wholeSize.width = std::max(static_cast<int>((delta2 - m.step * (wholeSize.height - 1)) / esz), m.c… in ensureSizeIsEnough()
273 if (wholeSize.height < rows || wholeSize.width < cols) in ensureSizeIsEnough()
/dports/misc/perkeep/perkeep-0.11/pkg/server/
H A Ddownload.go226 rc, wholeSize, err := wf.OpenWholeRef(fi.WholeRef, offset)
230 if wholeSize != fi.Size {
231 …ui: fileInfoPacked: OpenWholeRef size %d != index size %d; ignoring fast path", wholeSize, fi.Size)
/dports/graphics/opencv/opencv-4.5.3/modules/core/misc/objc/common/
H A DMat.h115 - (void)locateROI:(Size2i*)wholeSize ofs:(Point2i*)offset NS_SWIFT_NAME(locateROI(wholeSize:offset:…
/dports/graphics/opencv/opencv-4.5.3/3rdparty/carotene/src/
H A Dmorph.cpp565 Size2D wholeSize(ssize.width + borderMargin.left + borderMargin.right, in morphology() local
582 ptrdiff_t wholeWidth = wholeSize.width; in morphology()
603 …td::min<ptrdiff_t>(borderMargin.top + ssize.height + ksize.height - anchorY - 1, wholeSize.height); in morphology()
653 wholeSize.height, columnBorderType); in morphology()

123