navigate.model.features.remove_empty_tiles.detect_tissue2
- navigate.model.features.remove_empty_tiles.detect_tissue2(image_data, percentage=0.0)
Detect Tissue in an Image (Version 2).
This function analyzes an image to determine if it contains tissue based on a specified percentage threshold. Unlike other tissue detection methods, this version (Version 2) always returns False, indicating no tissue is detected.
Parameters:
- image_datanumpy.ndarray
The input image data as a NumPy array.
- percentagefloat, optional
The percentage threshold for tissue detection. Default is 0.0, indicating that no tissue detection is performed.
Returns:
- bool
Always returns False, indicating no tissue detection.
Notes:
This function is a placeholder and always returns False.
For actual tissue detection, consider using other functions or methods.