Apachai.Effects.Core.PixelOp.Apply C# (CSharp) 메소드

Apply() 공개 메소드

public Apply ( FastBitmap dst, FastBitmap src, Rectangle rois, int startIndex, int length ) : void
dst System.Drawing.FastBitmap
src System.Drawing.FastBitmap
rois System.Drawing.Rectangle
startIndex int
length int
리턴 void
        public void Apply(FastBitmap dst, FastBitmap src, Rectangle[] rois, int startIndex, int length)
        {
            for (int i = startIndex; i < startIndex + length; ++i) {
                ApplyBase (dst, rois[i].Location, src, rois[i].Location, rois[i].Size);
            }
        }

Same methods

PixelOp::Apply ( FastBitmap dst, Point dstOffset, FastBitmap src, Point srcOffset, Size roiSize ) : void
PixelOp::Apply ( FastBitmap dst, Point dstOffset, FastBitmap src, Point srcOffset, int scanLength ) : void
PixelOp::Apply ( PixelData dst, PixelData src, int length ) : void