CSJ2K.j2k.image.input.ImgReader.getCompImgHeight C# (CSharp) 메소드

getCompImgHeight() 공개 메소드

Returns the height in pixels of the specified component in the overall image. This default implementation assumes no component, or component, subsampling (i.e. all components have the same dimensions in pixels).
public getCompImgHeight ( int c ) : int
c int The index of the component, from 0 to C-1. /// ///
리턴 int
        public virtual int getCompImgHeight(int c)
        {
            return h;
        }