ImBuf: no need to use double precision inside IMB_transform #117160

Merged
Aras Pranckevicius merged 1 commits from aras_p/blender:imbuf-no-doubles into main 2024-01-16 13:32:56 +01:00

Double precision pixel coordinate interpolation was added in 3a65d2f591 to fix an issue of "wobbly" resulting image at very high scale factors. But the root cause of that was the fact that the scanline loop was repeatedly adding the floating point step for each pixel, instead of doing multiplication by pixel index (repeated floating point additions can "drift" due to imprecision, whereas multiplications are much more accurate).

Change all that math back to use single precision floats. I checked the original issue the commit was fixing, it is still fine. Also added a gtest to cover this situation: imbuf_transform, nearest_very_large_scale

This makes IMB_transform a tiny bit faster, on Windows/VS2022/Ryzen5950X scaling an image at 4K resolution:

  • Bilinear: 5.92 -> 5.83 ms
  • Subsampled3x3: 53.6 -> 52.7 ms
Double precision pixel coordinate interpolation was added in 3a65d2f5911 to fix an issue of "wobbly" resulting image at very high scale factors. But the root cause of that was the fact that the scanline loop was repeatedly adding the floating point step for each pixel, instead of doing multiplication by pixel index (repeated floating point additions can "drift" due to imprecision, whereas multiplications are much more accurate). Change all that math back to use single precision floats. I checked the original issue the commit was fixing, it is still fine. Also added a gtest to cover this situation: `imbuf_transform, nearest_very_large_scale` This makes `IMB_transform` a tiny bit faster, on Windows/VS2022/Ryzen5950X scaling an image at 4K resolution: - Bilinear: 5.92 -> 5.83 ms - Subsampled3x3: 53.6 -> 52.7 ms
Aras Pranckevicius changed title from ImBuf: no need to use double precision inside IMB_transform to WIP: ImBuf: no need to use double precision inside IMB_transform 2024-01-16 11:33:00 +01:00
Aras Pranckevicius force-pushed imbuf-no-doubles from f929c15500 to cd2d407061 2024-01-16 11:39:14 +01:00 Compare
Author
Member

@blender-bot build

@blender-bot build
Aras Pranckevicius changed title from WIP: ImBuf: no need to use double precision inside IMB_transform to ImBuf: no need to use double precision inside IMB_transform 2024-01-16 12:43:50 +01:00
Aras Pranckevicius requested review from Richard Antalik 2024-01-16 12:44:01 +01:00
Richard Antalik approved these changes 2024-01-16 12:55:58 +01:00
Richard Antalik left a comment
Member

That's quite nice catch. Probably wouldn't cross my mind to solve it this way.

That's quite nice catch. Probably wouldn't cross my mind to solve it this way.
Aras Pranckevicius merged commit f16dbd0360 into main 2024-01-16 13:32:56 +01:00
Aras Pranckevicius deleted branch imbuf-no-doubles 2024-01-16 13:32:58 +01:00
Sign in to join this conversation.
No reviewers
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#117160
No description provided.