-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for preprocessing and other util functions
- Loading branch information
Showing
2 changed files
with
605 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
# Copyright 2016-2022 The Van Valen Lab at the California Institute of | ||
# Technology (Caltech), with support from the Paul Allen Family Foundation, | ||
# Google, & National Institutes of Health (NIH) under Grant U24CA224309-01. | ||
# All rights reserved. | ||
# | ||
# Licensed under a modified Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.github.com/vanvalenlab/deepcell-toolbox/LICENSE | ||
# | ||
# The Work provided may be used for non-commercial academic purposes only. | ||
# For any other use of the Work, including commercial use, please contact: | ||
# vanvalenlab@gmail.com | ||
# | ||
# Neither the name of Caltech nor the names of its contributors may be used | ||
# to endorse or promote products derived from this software without specific | ||
# prior written permission. | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ============================================================================ | ||
"""Tests for post-processing functions""" | ||
from __future__ import absolute_import | ||
from __future__ import division | ||
from __future__ import print_function | ||
|
||
import itertools | ||
import pytest | ||
|
||
import numpy as np | ||
|
||
from .toolbox_processing import normalize, histogram_normalization, percentile_threshold | ||
from .toolbox_processing import mibi, pixelwise, watershed, phase_preprocess | ||
|
||
|
||
def _get_image(img_h=300, img_w=300): | ||
bias = np.random.rand(img_w, img_h) * 64 | ||
variance = np.random.rand(img_w, img_h) * (255 - 64) | ||
img = np.random.rand(img_w, img_h) * variance + bias | ||
return img | ||
|
||
|
||
def _get_test_images(img_h, img_w): | ||
image = _get_image(img_h, img_w) | ||
|
||
# make rank 4 (batch, X, y, channel) | ||
image = np.expand_dims(image, axis=0) | ||
image = np.expand_dims(image, axis=-1) | ||
|
||
# randomly flip sign of image values | ||
negative_filter = (2 * np.random.randint(0, 2, size=image.shape) - 1) | ||
|
||
# create a few other test inputs | ||
test_images = [ | ||
image, | ||
image.astype('uint16'), | ||
image.astype('int16'), | ||
image.astype('float16'), | ||
image * negative_filter, | ||
image.astype('int16') * negative_filter, | ||
image.astype('float16') * negative_filter | ||
] | ||
return test_images | ||
|
||
|
||
def test_normalize(): | ||
height, width = 30, 30 | ||
|
||
for img in _get_test_images(height, width): | ||
|
||
normalized_img = normalize(img) | ||
|
||
indices = itertools.product(range(img.shape[0]), range(img.shape[-1])) | ||
|
||
for (b, c) in indices: | ||
normal = normalized_img[b, ..., c] | ||
# 16-bit to float-32 bit conversion may lose some accuracy | ||
# https://stackoverflow.com/a/56515598 | ||
np.testing.assert_almost_equal(normal.mean(), 0, decimal=6) | ||
np.testing.assert_almost_equal(normal.var(), 1, decimal=6) | ||
|
||
# test single-valued image is non NaN. | ||
for i in range(-2, 3): | ||
img = np.empty((1, height, width, 1)) | ||
img.fill(i) | ||
|
||
indices = itertools.product(range(img.shape[0]), range(img.shape[-1])) | ||
|
||
normalized_img = normalize(img) | ||
|
||
for (b, c) in indices: | ||
np.testing.assert_almost_equal(normalized_img[b, ..., c].mean(), 0) | ||
# no variance still as they are constant. | ||
np.testing.assert_almost_equal(normalized_img[b, ..., c].var(), 0) | ||
|
||
|
||
def test_histogram_normalization(): | ||
height, width = 30, 30 | ||
|
||
for img in _get_test_images(height, width): | ||
indices = itertools.product(range(img.shape[0]), range(img.shape[-1])) | ||
|
||
normalized_img = histogram_normalization(img) | ||
|
||
for b, c in indices: | ||
|
||
# test min and max values of output | ||
assert normalized_img[b, ..., c].min() == 0 | ||
assert normalized_img[b, ..., c].max() == 1 | ||
|
||
# test negative coordinates don't get clipped | ||
negative_coords = (img < 0).nonzero() | ||
if len(normalized_img[negative_coords]) > 0: | ||
assert (normalized_img[negative_coords] >= 0).all() | ||
|
||
# test legacy version | ||
legacy_img = phase_preprocess(img) | ||
np.testing.assert_equal(legacy_img, normalized_img) | ||
|
||
# test constant value arrays | ||
# these won't have different min/max values or indices. | ||
shape = (1, height, width, 1) | ||
for k in range(-2, 3): | ||
img = np.empty(shape) | ||
img.fill(k) | ||
|
||
preprocessed = histogram_normalization(img) | ||
assert preprocessed.min() >= 0 and preprocessed.max() <= 1 | ||
assert preprocessed.min() == preprocessed.max() | ||
# TODO: change this test if the constant value workaround is fixed. | ||
assert (preprocessed == 0).all() | ||
|
||
|
||
def test_percentile_threshold(): | ||
image_data = np.random.rand(5, 20, 20, 2) | ||
image_data[4, 19, 4, 0] = 100 | ||
|
||
thresholded = percentile_threshold(image=image_data) | ||
assert np.all(thresholded < 100) | ||
|
||
# setting percentile to 100 shouldn't change data | ||
no_threshold = percentile_threshold(image=image_data, percentile=100) | ||
assert np.array_equal(image_data, no_threshold) | ||
|
||
# different channels have different distributions | ||
image_data[:, :, :, 0] *= 100 | ||
thresholded = percentile_threshold(image=image_data) | ||
|
||
assert np.mean(thresholded[..., 0]) > 10 | ||
assert np.mean(thresholded[..., 1]) < 1 | ||
|
||
# blank channels are returned as blank | ||
image_data[0, ..., 0] = 0 | ||
thresholded_blank = percentile_threshold(image=image_data) | ||
assert np.all(thresholded_blank[0, ..., 0] == 0) | ||
|
||
|
||
def test_mibi(): | ||
channels = 3 | ||
img = np.random.rand(300, 300, channels) | ||
mibi_img = mibi(img) | ||
np.testing.assert_equal(mibi_img.shape, (300, 300, 1)) | ||
|
||
|
||
def test_pixelwise(): | ||
channels = 4 | ||
img = np.random.rand(1, 300, 300, channels) | ||
pixelwise_img = pixelwise(img) | ||
assert pixelwise_img.shape == img.shape[:-1] + (1,) | ||
|
||
|
||
def test_watershed(): | ||
channels = np.random.randint(4, 8) | ||
img = np.random.rand(1, 300, 300, channels) | ||
watershed_img = watershed(img) | ||
assert watershed_img.shape == img.shape[:-1] + (1,) |
Oops, something went wrong.