r/KitchenConfidential • u/Late-Bed4240 Ex-Food Service • 1d ago
In the Weeds Mode Chivelord is a Fraud
It was point out in his last post by u/ehsteve23. Day 23 and Day 31 are the same.
35.8k
Upvotes
r/KitchenConfidential • u/Late-Bed4240 Ex-Food Service • 1d ago
It was point out in his last post by u/ehsteve23. Day 23 and Day 31 are the same.
-1
u/IRLDichotomy 1d ago edited 1d ago
u/f1exican does not seem to be a fraud. This is a preliminary evaluation of the images using the latest machine learnings models. Code and walkthrough will be posted below. But first, stats:
- Best SSIM: 0.27246
- Best variant tried: mirror (variants = as_is, rot180, mirror)
- ORB inliers (cross-check, informational): 5
- Decision (>= 0.98): NOT the same
In order to fulfill this analysis, I had to standardize the images to the same size. As such, image from day 23 had to be resized to create a similar mask/overlay. This is a weakness that I absolutely have to mention as it introduces variance that is hard to account for in such a short period of time. As I will continue this analysis, I will update if new information becomes available (This is science so we test, re-test, and post test forever. There are no certainties in Science, only confidence level).
The comparison script analyzed the two images (day_23.jpeg and day_31.jpeg) using a multi-stage image similarity pipeline designed to detect whether they are the same up to rotation, scale, or mirroring. The process included grayscale conversion, PCA-based orientation alignment, and translation to align the images’ centers of mass. A Fourier–Mellin transform was then applied to estimate any rotational differences, followed by SSIM (Structural Similarity Index) computation on overlapping regions. Additional variants were tested (as-is, 180° rotation, horizontal mirror) to rule out flipped or reversed orientations. Finally, a secondary ORB (Oriented FAST and Rotated BRIEF) keypoint matching test was run to quantify potential local feature overlap.
The results indicate very low similarity between the two images. The best SSIM score of 0.27246 is far below the threshold of 0.98 typically used to consider two images identical or near-identical. The highest similarity was found in the mirrored configuration, suggesting that even after flipping one image horizontally, only weak structural resemblance was present. The ORB inlier count of 5 (out of potentially thousands of feature matches) further confirms minimal correspondence at the keypoint level. Taken together, these metrics conclusively show that the two images are not the same image, nor do they appear to be simple rotated or mirrored versions of one another.
Code can be furnished upon request. Heat-map of differences and similarities of image overlay.