Replies: 1 comment 4 replies
-
Hi, thanks for your question. The tiling section in the In Anomalib, we provide an extra, optional tiling mechanism which consists of splitting the input image into smaller tiles before feeding the images into the model. Instead of resizing the full image to the model's input size, we first subdivide the image into a grid of (e.g. 4x4) tiles, after which we resize the individual tiles to the input size of the model. This allows us to preserve more of the original image resolution, which may help in the detection of small anomalies. After the model makes its predictions on the individual tiles, the tiled predictions are stitched back together so that the output has the shape of the original image. Please note that this tiling is done as a pre- and post-processing step and is independent of the workings of any of the models in Anomalib. So when tiling is disabled, the PatchCore model should behave exactly as the paper implementation. |
Beta Was this translation helpful? Give feedback.
-
Hi, I saw the patchcore config.yaml is having tiling=false. If this is false, does this means it will not split the image to patch and directly input whole image for feature extraction? Does this means it is different from paper implementation?
To Reproduce
Steps to reproduce the behavior:
Hardware and Software Configuration
Beta Was this translation helpful? Give feedback.
All reactions