• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
74

P: Anamorphic Lens Support (De-squeeze)

Community Beginner ,
Sep 27, 2013 Sep 27, 2013

Copy link to clipboard

Copied

I shoot video using the Red Epic camera, which shoots super high resolution video. I often pull high-res photos from the camera and use them in Lightroom. However, I'm hoping to add a feature that supports anamorphic lenses. These lenses shoot natively-stretched pixels. Meaning, the images are stretched vertically 2:1. It's a classic way to shoot movies, and I wish Lightroom supported a way to select the pixel aspect ratio so the images can be viewed undistorted. Currently, I have to stretch them in Photoshop and export. Which is a bummer because the Red Camera's raw files are supported in LR, and I would love to use those files straight from the camera rather than make new ones. Anyone else agree?

Idea No status
TOPICS
macOS , Windows

Views

5.8K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
56 Comments
Community Beginner ,
Jun 24, 2024 Jun 24, 2024

Copy link to clipboard

Copied

Please make it possible to squeeze images.

By a sensible preset factor like 1.33x, 1.8x or 2x, or custom (maybe reasonably limited percentage for example +- 500%)

 

This is needed for working with anamorphic imagery but would be a nice addition for any other case (why ever) you would want to squeeze the image by a set factor/percentage.

 

It could replace the "aspect ratio" value in the geometry settings, as this slider just goes from -100 to 100 which seems arbitrary and limited. What is 100 in this context anyway?

 

Right now i have to go through Photoshop on desktop, as there is no functionality in Photoshop Express either, which is very annoying.

Votes

Translate

Translate

Report

Report
New Here ,
Aug 25, 2024 Aug 25, 2024

Copy link to clipboard

Copied

Wow, Adobe - over 10 years since the original request to implement anamorphic lens support in Camera Raw and Lightroom and we're STILL having to hack the exif data of raw photos to make it work?

Clearly the implementation of a pixel aspect ratio slider was too complicated a task for their team, so they tackled the much easier job of making it possible to insert photoreal AI garbage into our photos. Maybe we should ask AI to design the next iteration of Lightroom because Adobe's engineers are clearly not up to snuff.

Votes

Translate

Translate

Report

Report
Community Beginner ,
Nov 15, 2024 Nov 15, 2024

Copy link to clipboard

Copied

Mid-November 2024 and we're still waiting for Adobe to extend the values ​​of a slider.
I'm going to abandon the full CC suite at this point, between After, Photoshop, Illustrator and Lightroom, the only new things we get are AI gen functions mostly made to kill our jobs.

Votes

Translate

Translate

Report

Report
Community Beginner ,
Dec 01, 2024 Dec 01, 2024

Copy link to clipboard

Copied

Ok. This is crazy. I'm in a super frustrating point right now. Yes, it would be ideal if Lightroom CC would allow for anamorphic desqueeze (various ratios) but now not even Photoshop can help me out here. I'm trying to de-squeese a hi-res image but Photoshop will now allow me to go beyond 30,000pixels. I need to get to 30,4012 pixels and 4k pixels is too much to let slip by. The image doesn't look right. 

Tried C1 and it also doesn't support de-squeeze. Any ideas as to how to get around this? Would like to make my print as soon as possible.

Adobe is letting me down big time right now. 

Votes

Translate

Translate

Report

Report
New Here ,
Dec 02, 2024 Dec 02, 2024

Copy link to clipboard

Copied

@ivanb84877422Don't know if it can help you specific situation with huge photos but I do desqueeze via first converting RAW to DNG via dnglab https://github.com/dnglab/dnglab and then setting desqueeze factor for the DNG via exiftool https://exiftool.org/  Then I import the DNG into Lightroom (Lightroom will pickup the ratio and diplay desqueezed image).

dnglab and exiftool are command-line tools, I created two PowerShell scripts to help me with batch conversion, this way I can do easy desqueeze of my anamorphic timelapses with hundreds of photos that are then simply imported into Lightroom as DNG RAW. Adobe still sucks for not listening and implementing this basic function though 🙂

My script for RAW -> DNG conversion (various formats supported by dnglab):
https://gist.github.com/brkerez/e9ad8c58017f36354b3b2527be18b6d2
My script for DNG ratio:
https://gist.github.com/brkerez/10e20d247028cbebaa4fb96fe517fd88

You have to:
1. get dnglab and place it somewhere (lets say c:\tools\dnglab dir)
2. get exiftool and place it somewhere (lets say c:\tools\exiftool dir) - I'm installing via `winget install OliverBetz.ExifTool` so it's in PATH

3. Place the raw images into some directory, lets say 'c:\photo\raw' and my scripts into some dirs, lets say 'c:\tools\scripts'
4. run the RAW conversion script:

# cd into photo dir
cd c:\photo\raw
# convert the images and place them into "output_dng" directory
c:\scripts\convert-raw-to-dng.ps1 -DnglabPath "c:\toos\dnglab"

5. run the anamorphic ratio script (default ratio is 1.6 in my scripts as I use Sirui 50mm 1.6x) but you can set any ration via parameter - lets say you use 1.3:

# cd into photo dir
cd output_dng
# set the anamorphic ratio to 1.3 for all the DNG images in the dir
c:\scripts\set-dng-exif-anamorphic-ratio.ps1 -ExifToolPath "c:\toos\exiftool" -Ratio 1.3


Then import DNG into Lightroom and see what happens 😉

 

Votes

Translate

Translate

Report

Report
New Here ,
Dec 02, 2024 Dec 02, 2024

Copy link to clipboard

Copied

LATEST

Update regarding my previous scripts if you are not familiar with Powershell scripting environment:

Votes

Translate

Translate

Report

Report