TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Detect upsampling in images

113 点作者 0x09超过 9 年前

9 条评论

stevetjoa超过 9 年前
For anyone interested in this area, the IEEE Transactions on Information Forensics and Security (TIFS) [1] is full of papers on the so-called area of <i>image forensics</i> -- the identification of processing that has been performed upon an image, including resampling, rotation, JPEG compression, block processing, and more.<p>Consequently, another hot research area is <i>image anti-forensics</i> -- the obfuscation of such operations to avoid detection. (Shameless self-promotion: one example paper on anti-forensics of JPEG compression can be found here [2].)<p>[1] <a href="http:&#x2F;&#x2F;www.signalprocessingsociety.org&#x2F;publications&#x2F;periodicals&#x2F;forensics&#x2F;" rel="nofollow">http:&#x2F;&#x2F;www.signalprocessingsociety.org&#x2F;publications&#x2F;periodic...</a><p>[2] <a href="http:&#x2F;&#x2F;www.mirlab.org&#x2F;conference_papers&#x2F;International_Conference&#x2F;ICASSP%202010&#x2F;pdfs&#x2F;0001694.pdf" rel="nofollow">http:&#x2F;&#x2F;www.mirlab.org&#x2F;conference_papers&#x2F;International_Confer...</a>
vortico超过 9 年前
This is fantastic, and I was just wondering if something like existed a week ago. Sometimes I need to find the original picture of a thumbnail on the internet, so I use Google reverse image search to search for other sizes of my uploaded image. However, some websites simply upscale the low quality image in order to be at the top of the search results. I wonder if Google can use a technology like this to place those results on a lower ranking.
评论 #10944575 未加载
mozumder超过 9 年前
You can detect downsampling by looking at chroma frequencies. Bayer pattern color filters on cameras mean that color resolution is never going to be as high as pixel resolution (assuming 1:1 mapping of pixels to sensor pixels) and if you see chroma frequencies that are higher than 2x pixel densities, then you have some downsampling going on.
评论 #10942547 未加载
daturkel超过 9 年前
&quot;Specifically, this project was born out of a yet-unpublished image deduplication framework, while attempting to identify whether duplicates were scaled versions of one another.&quot;<p>A humble but fun origin story for a very cool project.
0x09超过 9 年前
Embarassing side-note: I&#x27;ve never made the mistake of trying to add an empty directory to a git repo before; if you tried and failed to build, it&#x27;s been fixed.
joshu超过 9 年前
Could you do this over a sliding window and calculate a score for regions? That would let you see if something has been composited from up scaled images.
评论 #10942889 未加载
Houshalter超过 9 年前
You might be able to detect if downsampling is done incorrectly, since many programs just average the pixel values instead of the actual light intensity.
sigmar超过 9 年前
Does anyone know of something similar for automatic analysis of audio using the FFT? There are visual ways to do it, but it would be nice to have an automated script
评论 #10946041 未加载
vinilios超过 9 年前
Any idea if there is a similar app for sound files?