Convert ORF to HDR

Drag and drop files here or click to select.
Max file size 100mb.
Uploading progress:

ORF vs HDR Format Comparison

AspectORF (Source Format)HDR (Target Format)
Format Overview
ORF
Olympus RAW Image

Olympus's proprietary RAW format used by their Micro Four Thirds and Four Thirds cameras, now continued under the OM System brand. ORF stores unprocessed 12-bit sensor data from Olympus cameras known for their excellent in-body stabilization, weather sealing, and compact form factor for travel and outdoor photography.

Lossless RAW
HDR
Radiance RGBE High Dynamic Range

The Radiance RGBE format, created in 1985 by Greg Ward for the Radiance lighting simulation system. HDR stores pixel data as 32-bit floating point values per channel, enabling representation of luminance ranges far beyond standard displays — from deep shadows to brilliant highlights in a single image file.

Lossless Standard
Technical Specifications
Color Depth: 12-bit RAW sensor data
Compression: Lossless compressed
Transparency: Not supported
Animation: Not supported
Extensions: .orf
Color Depth: 32-bit float per channel (RGBE encoding)
Compression: Run-length encoding (RLE)
Transparency: Not supported
Animation: Not supported
Extensions: .hdr, .pic
Image Features
  • Sensor Data: 12-bit Bayer from Micro Four Thirds sensors
  • IBIS Metadata: In-body stabilization shift data
  • White Balance: Fully adjustable in post-processing
  • Resolution: 16-25 megapixels (50 MP in high-res shot mode)
  • Live Composite: Metadata for long exposure compositing
  • Art Filter Data: Non-destructive filter parameters stored
  • Dynamic Range: Virtually unlimited luminance range (32-bit float)
  • RGBE Encoding: RGB + shared exponent for compact HDR storage
  • Tone Mapping: Required for display on standard monitors
  • Linear Light: Stores physically accurate light values
  • Environment Maps: Standard format for IBL lighting
  • Scene-Referred: Preserves real-world luminance ratios
Processing & Tools

Reading ORF files with rawpy:

# Read Olympus RAW with rawpy
import rawpy
from PIL import Image
raw = rawpy.imread("photo.orf")
rgb = raw.postprocess(
    output_bps=16,
    use_camera_wb=True
)
img = Image.fromarray(rgb)

Creating HDR files with imageio:

# Write Radiance HDR
import imageio
import numpy as np

# Convert to float32 for HDR
hdr_data = rgb.astype(np.float32) / 65535.0
imageio.imwrite("output.hdr", hdr_data)
Advantages
  • Full sensor data from Olympus/OM System cameras
  • Excellent IBIS allows sharp low-light handheld shots
  • Weather-sealed camera bodies for outdoor conditions
  • Compact Micro Four Thirds system saves weight
  • High-res shot mode doubles effective resolution
  • Live composite mode for creative long exposures
  • 32-bit floating point precision per channel
  • Stores real-world luminance values without clipping
  • Industry standard for 3D rendering and VFX
  • Compact RGBE encoding reduces file size
  • Perfect for environment maps and IBL lighting
  • Scene-referred data preserves physical accuracy
Disadvantages
  • Smaller MFT sensor has less dynamic range than full-frame
  • 12-bit depth limits tonal gradation vs. 14-bit formats
  • Proprietary format requires RAW processing software
  • Higher noise at high ISO than larger sensor cameras
  • Not viewable in web browsers
  • Not displayable without tone mapping software
  • No browser support for direct viewing
  • No transparency or alpha channel
  • RGBE encoding has limited precision in dark areas
  • Larger files than standard 8-bit formats
Common Uses
  • Travel and outdoor photography
  • Macro and close-up photography
  • Street photography with compact MFT bodies
  • Long exposure and night photography (Live Composite)
  • Wildlife photography with lightweight telephoto lenses
  • 3D rendering and CGI environment lighting (IBL)
  • Architectural visualization and lighting studies
  • HDR photography for tone mapping workflows
  • VFX compositing with scene-referred data
  • Scientific imaging requiring wide luminance range
Best For
  • Olympus and OM System camera users
  • Travel photographers prioritizing lightweight gear
  • Macro photographers using Olympus focus stacking
  • Outdoor photographers needing weather-sealed equipment
  • 3D artists needing environment maps
  • HDR imaging and tone mapping pipelines
  • Architectural lighting simulation
  • VFX compositing with physically accurate light
Version History
Introduced: 2003 (Olympus E-1)
Current Version: ORF (OM System OM-1 Mark II, 2024)
Status: Active under OM System brand
Evolution: E-1 (2003) → E-M5 (2012, MFT) → E-M1 II (2016) → OM-1 (2022, OM System) → OM-1 II (2024)
Introduced: 1985 (Greg Ward, Lawrence Berkeley Lab)
Current Version: Radiance RGBE (1991 standardized)
Status: Mature, industry standard for HDR
Evolution: Radiance (1985) → RGBE spec (1991) → OpenEXR alternative (2003) → still widely used
Software Support
Image Editors: OM Workspace, Lightroom, Capture One, RawTherapee
Web Browsers: No browser support
OS Preview: Windows/macOS (via Adobe Camera Raw)
Mobile: OI.Share, Lightroom Mobile
CLI Tools: rawpy, dcraw, LibRaw, exiftool
Image Editors: Photoshop, GIMP, Luminance HDR, Photomatix
Web Browsers: No native browser support
OS Preview: Windows (HDR viewer), macOS (Preview limited)
Mobile: Specialized HDR apps only
CLI Tools: ImageMagick, Radiance, imageio, OpenCV

Why Convert ORF to HDR?

Converting ORF to HDR maximizes the value of Olympus and OM System RAW captures by storing the sensor data in a 32-bit floating point format. Although Micro Four Thirds sensors are physically smaller, modern Olympus/OM System cameras with stacked BSI-CMOS sensors (like the OM-1) deliver impressive dynamic range that benefits significantly from HDR storage — preserving tonal nuances that would be lost in standard 8-bit conversions.

Olympus cameras are popular among travel and outdoor photographers who frequently encounter high-contrast scenes: sunlit temples against shaded interiors, mountain peaks against dark valleys, wildlife in dappled forest light. Converting these ORF captures to HDR enables tone mapping that reveals the full scene as the photographer experienced it, balancing extreme highlights and shadows from a single handheld exposure.

For OM System's high-resolution shot mode, which combines multiple sensor-shifted exposures into a single 50+ megapixel ORF file, HDR conversion preserves the exceptional detail and extended tonal range of these composite captures. The resulting HDR files provide high-resolution environment maps suitable for 3D rendering or large-format print production with tone-mapped output.

The conversion demosaics the Olympus Bayer pattern data, applies white balance, and outputs scene-referred floating point values. Olympus's excellent in-body stabilization means many ORF files are captured handheld at lower ISO settings, resulting in clean sensor data with minimal noise — ideal source material for HDR processing that demands clean tonal transitions.

Key Benefits of Converting ORF to HDR:

  • Travel HDR: Create HDR images from lightweight MFT travel setups
  • Dynamic Range Extraction: Unlock full sensor range from Olympus captures
  • High-Res Mode: Preserve 50+ MP high-res shot data in HDR precision
  • Clean Source Data: IBIS enables low-ISO handheld for clean HDR input
  • Tone Mapping: Apply professional HDR processing to outdoor photography
  • Macro HDR: Preserve delicate tonal detail in close-up photography
  • Format Compatibility: HDR widely supported vs. proprietary ORF format

Practical Examples

Example 1: Travel Photography in High Contrast

Scenario: A travel photographer converts OM-1 captures from Southeast Asian temples to HDR for balanced processing of bright exteriors and dark interiors.

Source: temple_entrance.orf (22 MB, 20 MP, 12-bit RAW)
Conversion: ORF → HDR (32-bit float RGBE)
Result: temple_entrance.hdr (28 MB, 32-bit float per channel)

Workflow:
1. Handheld capture with OM-1 IBIS (7+ stops stabilization)
2. Convert ORF to HDR preserving full dynamic range
3. Tone map to balance sunlit courtyard and shaded interior
✓ Gold temple details visible in bright sunlight
✓ Dark interior sculptures and carvings revealed
✓ Single handheld shot — no tripod needed
✓ Clean data from low ISO enabled by excellent IBIS

Example 2: High-Res Shot Mode for Environment Maps

Scenario: A 3D artist uses OM System high-resolution shot mode ORF files converted to HDR as environment maps for product visualization.

Source: showroom_hires.orf (85 MB, 50 MP high-res mode, 12-bit)
Conversion: ORF → HDR (32-bit float)
Result: showroom_hires.hdr (72 MB, scene-referred)

3D workflow:
✓ 50 MP resolution provides detailed reflections in CG renders
✓ Full dynamic range captures showroom lighting accurately
✓ Use as environment map in V-Ray for product renders
✓ Compact MFT kit easier to bring to location shoots
✓ High-res mode compensates for smaller sensor area

Example 3: Macro Photography with Extended Range

Scenario: A nature photographer converts ORF macro captures to HDR for tone mapping that reveals subtle tonal gradations in insect and flower photography.

Source: dragonfly_wing_detail.orf (20 MB, 20 MP, 12-bit RAW)
Conversion: ORF → HDR (32-bit float RGBE)
Result: dragonfly_wing_detail.hdr (26 MB, full tonal range)

Macro HDR workflow:
✓ Iridescent wing colors preserved in 32-bit float
✓ Specular highlights on wing veins maintained without clipping
✓ Dark body detail visible alongside bright wing structures
✓ Olympus 60mm f/2.8 macro optics resolve fine detail
✓ Tone mapping reveals translucency and color nuances

Frequently Asked Questions (FAQ)

Q: What is the ORF format?

A: ORF is the RAW image format used by Olympus cameras and their successor brand OM System. It stores unprocessed 12-bit sensor data from Micro Four Thirds (MFT) and earlier Four Thirds sensors. The format has been updated with each camera generation since the Olympus E-1 in 2003.

Q: Does the smaller MFT sensor limit HDR quality?

A: MFT sensors have approximately 1-2 stops less dynamic range than full-frame sensors, but modern Olympus/OM System cameras still capture 10-12 usable stops. This is more than enough for effective HDR processing and tone mapping, especially when combined with the low-noise advantages of shooting at base ISO with IBIS stabilization.

Q: Which Olympus cameras produce ORF files?

A: All Olympus interchangeable-lens cameras: E-1 through E-5 (Four Thirds), PEN series (E-P1 through E-P7), OM-D E-M1/E-M5/E-M10 series, and OM System OM-1/OM-5. Some Olympus compact cameras (Stylus 1, XZ series) also produce ORF files.

Q: Can high-res shot mode ORF files be converted to HDR?

A: Yes. High-res shot mode produces standard ORF files at higher effective resolution (50+ MP vs 20 MP). These convert to HDR normally, producing high-resolution HDR files excellent for environment maps or large-format printing after tone mapping.

Q: Is Olympus still making cameras?

A: Olympus sold its camera division to Japan Industrial Partners in 2021, which rebranded it as OM System. OM System continues to develop Micro Four Thirds cameras and lenses, with the OM-1 Mark II (2024) being the latest flagship. The ORF format continues to be used.

Q: How does IBIS benefit HDR conversion?

A: Olympus/OM System's industry-leading 7+ stop in-body image stabilization allows handheld shooting at very low ISO settings. Lower ISO means cleaner sensor data with less noise, which produces smoother, higher-quality HDR files. Clean source data is especially important for tone mapping, where noise becomes amplified in shadow recovery.

Q: What tone mapping works best with MFT sensor HDR?

A: Moderate tone mapping operators like Reinhard or Mantiuk work well with MFT sensor HDR, as they don't amplify noise excessively. Avoid extreme shadow recovery with aggressive operators, as the smaller sensor's noise floor becomes visible. Luminance HDR and Photomatix both offer suitable presets.

Q: Can I combine ORF focus stacking with HDR conversion?

A: You can convert individual ORF files from a focus stack to HDR, then perform focus stacking in HDR space for maximum quality. Alternatively, focus-stack in standard format first, then convert the result. The first approach preserves more dynamic range throughout the process.