Lines Matching refs:sz

136 +    explicit BasicImage(difference_type const & sz, Alloc const & alloc = Alloc())
151 + vigra_precondition((sz.x >= 0) && (sz.y >= 0),
152 + "BasicImage::BasicImage(Diff2D sz): "
153 + "sz.x and sz.y must be >= 0.\n");
156 + resize(sz.x, sz.y, value_type());
191 + explicit BasicImage(difference_type const & sz, value_type const & d, Alloc const & alloc = Al…
206 + vigra_precondition((sz.x >= 0) && (sz.y >= 0),
207 + "BasicImage::BasicImage(Diff2D const & sz, value_type const & v): "
208 + "sz.x and sz.y must be >= 0.\n");
211 + resize(sz.x, sz.y, d);
244 + explicit BasicImage(difference_type const & sz, const_pointer d, Alloc const & alloc = Alloc())
259 + vigra_precondition((sz.x >= 0) && (sz.y >= 0),
260 + "BasicImage::BasicImage(Diff2D const & sz, const_pointer): "
261 + "sz.x and sz.y must be >= 0.\n");
264 + resizeCopy(sz.x, sz.y, d);
285 + void resize(difference_type const & sz)
288 + if(sz.x != width_ || sz.y != height_)
291 + resize(sz.x, sz.y, value_type());
458 + BasicImageView(const_pointer src_data, difference_type const & sz, int data_stride = 0)
460 + width_(sz.x),
461 + height_(sz.y),
462 + stride_(data_stride == 0 ? sz.x : data_stride)
552 + Rect2D(Point2D const &ul, Size2D const &sz)
553 + : upperLeft_(ul), lowerRight_(ul + sz)
560 + explicit Rect2D(Size2D const &sz)
561 + : lowerRight_(Point2D(sz))
582 + void setSize(Size2D const &sz)
585 + lowerRight_ = upperLeft_ + sz;
1107 + int sz = right_ - left_ + 1;
1110 + norm_ = (double)sz*v;
1113 + return InitProxy(kernel_.begin(), sz, norm_);