Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Comments on Anti-Twin's Byte by Byte“ vs. ”Compare images (pixels)"

Parent

Anti-Twin's Byte by Byte“ vs. ”Compare images (pixels)"

+0
−1

Kindly see the red rectangle below. How does "Byte by Byte" differ from "Compare images (pixels)"? Which is more accurate? What are the pros and cons of each?

Screenshot

Advise me if I got to ask this separately, but how does a byte relate to a pixel? I can't decide which answer on Quora is correct.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

x-post https://superuser.com/q/1622213/383391 (1 comment)
Post
+2
−0

Images can be compressed to take up less space; most image formats automatically include this feature.

There are two general categories of image compression. A lossless method is guaranteed to produce exactly the same picture elements (pixels) that went into it. A lossy method produces an approximation of the original image data.

If you had a photograph of the Great Wall of China taken on a high-end camera, you might end up with:

a RAW image which is very large and completely uncompressed

a PNG image which is quite large but compressed losslessly

a JPEG image which is medium-sized and looks pretty good but is flawed under magnification

a JPEG image which is quite small and doesn't look very good, to be used as a thumbnail

Of these, the byte-for-byte comparison would not call any of them duplicates, but the pixel-by-pixel comparison would call the RAW and PNG versions the same image.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

Camera RAW files would likely typically be compressed (2 comments)
Camera RAW files would likely typically be compressed
Canina‭ wrote over 2 years ago · edited over 2 years ago

You state that a RAW image would be "completely uncompressed". That's unlikely; what's desired for RAW images is lossless storage, not necessarily uncompressed storage. I checked a sample of RAW image files from my Canon EOS 50D, and they vary in size between (approximately) 16.3 MiB and 26.9 MiB. An uncompressed 15 Mpx 14bpp (as captured by the sensor) image would be around 26 MB of data, so the upper end of that range is pretty much exactly where one would, mathematically, expect it to be.

dsr‭ wrote over 2 years ago

RAW is not a standard. Most manufacturers dump the data from the sensors into a TIFF variant. It's likely that two sibling Canon EOS of slightly different models but the same generation share the same output file format, but you can't necessarily compare across generations, and certainly not across manufacturers. Canon's lossless compression isn't germane.

The original question was about finding duplicate images. By definition, duplicate images started off as a single image from one camera.