Download Sample RAW Image Files (CR2, NEF, ARW)
Download free sample Camera RAW files. These contain unprocessed data directly from the camera sensor (Canon CR2/CR3, Nikon NEF, Sony ARW). Essential for testing demosaicing algorithms, white balance adjustments, and proprietary metadata parsing. STANDARD Canon & Nikon Formats File Name Camera / Specs Size Action canon_eos_5d.cr2 Canon RAW 2 Canon 5D Mark IV. ISO 100….
Download free sample Camera RAW files. These contain unprocessed data directly from the camera sensor (Canon CR2/CR3, Nikon NEF, Sony ARW). Essential for testing demosaicing algorithms, white balance adjustments, and proprietary metadata parsing.
STANDARD
Canon & Nikon Formats
| File Name | Camera / Specs | Size | Action |
|---|---|---|---|
| canon_eos_5d.cr2 Canon RAW 2 |
Canon 5D Mark IV. ISO 100. Standard daylight white balance. | 25 MB | Download |
| nikon_d850.nef Nikon Electronic Format |
Nikon D850 (45MP). 14-bit Lossless Compressed. High Detail. | 45 MB | Download |
| sony_a7iii.arw Sony Alpha RAW |
Sony A7 III. Uncompressed. Good for testing proprietary metadata tags. | 24 MB | Download |
QA / SENSOR
Noise, Dynamic Range & Corruption
| Test Case | Description | Size | Action |
|---|---|---|---|
| High ISO 25600 (Noise) | Extreme digital noise. The “Holy Grail” for testing Denoising AI algorithms. | 22 MB | Download |
| Underexposed (-5 EV) | Image appears black. Use to test ISO Invariance and dynamic range recovery (Shadow boosting). | 20 MB | Download |
| Truncated RAW File | Data stream ends abruptly (simulating SD card removal). Tests parser robustness. | 10 MB | Download |
Technical Specs: What is RAW?
A RAW file is not an image; it is a database of light intensity values recorded by the sensor.
- Bayer Filter: The data is monochromatic mosaic (R-G-G-B). Software must perform “Demosaicing” to calculate the final colors.
- Bit Depth: Unlike JPEG (8-bit, 16 million colors), RAW files are typically 12-bit or 14-bit (Trillions of colors), allowing for extreme editing.
- Embedded JPEG: Every RAW file contains a small JPEG preview inside. Simple viewers display this JPEG, while pro software (Lightroom) reads the actual sensor data.
Frequently Asked Questions
Because it has no contrast curve, sharpening, or saturation applied. It is “Linear” data. JPEGs look “better” initially because the camera has already processed/cooked the image for you.
You need a “RAW Converter” like Adobe Lightroom, Capture One, or the free, open-source Darktable. For developers, use the LibRaw library.
How to edit RAW files?
Since RAW files are “digital negatives”, you don’t edit them; you “develop” them.
- Darktable: The best free (Open Source) alternative to Lightroom. Works on Windows, Mac, and Linux.
- RawTherapee: Excellent for scientific-grade demosaicing and detail extraction.
- IrfanView (with Plugins): The fastest way to simply view RAW files without waiting for a heavy editor to load.
Developer’s Corner: Demosaicing
Loading a RAW file is not like loading a PNG. You must process the Bayer pattern. Use Rawpy (a wrapper for LibRaw) in Python.
import rawpy
import imageiowith rawpy.imread(‘image.nef’) as raw:
# “postprocess” handles demosaicing & white balance
rgb = raw.postprocess()
imageio.imsave(‘developed_photo.tiff’, rgb)
