Home
last modified time | relevance | path

Searched refs:tile_height0 (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/imgcodecs/src/
Dgrfmt_tiff.cpp213 uint32 tile_width0 = m_width, tile_height0 = 0; in readData() local
238 TIFFGetField( tif, TIFFTAG_TILELENGTH, &tile_height0 ))) in readData()
241 TIFFGetField( tif, TIFFTAG_ROWSPERSTRIP, &tile_height0 ); in readData()
246 if( tile_height0 <= 0 || in readData()
247 (!is_tiled && tile_height0 == std::numeric_limits<uint32>::max()) ) in readData()
248 tile_height0 = m_height; in readData()
250 const size_t buffer_size = bpp * ncn * tile_height0 * tile_width0; in readData()
258 for( y = 0; y < m_height; y += tile_height0, data += img.step*tile_height0 ) in readData()
260 int tile_height = tile_height0; in readData()
283 bstart += (tile_height0 - tile_height) * tile_width0 * 4; in readData()
/external/opencv/otherlibs/highgui/
Dgrfmt_tiff.cpp175 int tile_width0 = m_width, tile_height0 = 0; in ReadData() local
180 TIFFGetField( tif, TIFFTAG_ROWSPERSTRIP, &tile_height0 ) || in ReadData()
183 TIFFGetField( tif, TIFFTAG_TILELENGTH, &tile_height0 )) in ReadData()
188 if( tile_height0 <= 0 ) in ReadData()
189 tile_height0 = m_height; in ReadData()
191 buffer = new uchar[tile_height0*tile_width0*4]; in ReadData()
193 for( y = 0; y < m_height; y += tile_height0, data += step*tile_height0 ) in ReadData()
195 int tile_height = tile_height0; in ReadData()