Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Defect in sampling method #152
Comments
jamespmonaco
commented
Jan 16, 2015
|
I also confirmed this using CMU-1.svs, though problem seems to start earlier: xPos = 260 |
bgilbert
added the
format-aperio
label
Dec 7, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
jamespmonaco commentedJan 16, 2015
This was seen examining a svs files with jpeg compression.
If I read a 1x100 window from two neighboring x-positions in the level=1 image (i.e. downsample by 4), the results should be shifted versions of one another. They are not. Several pixel values are different.
Specifically, dest1 and dest2 should be shifted versions of one another, but are not:
openslide_read_region(osr, dest1, 0, 308, 1, 100,1)
openslide_read_region(osr, dest2, 0, 312, 1, 100,1)
dest1[1-99] does not equal dest[0-98]
This is not true for all x-positions. The problem starts for me at 312. For example, if instead we use 304 and 308, the problem does not appear.
Disclosure: I used Matlab hooks into openslide. (http://www.mathworks.com/matlabcentral/fileexchange/48887-fordanic-openslide-matlab)