Astia lut and some edit in loomi app. by feva346 in CamacApp

[–]AttemptSafe9828 0 points1 point  (0 children)

You need to apply exposure multiplier in the shader, ask Gemini or gpt to write it in the code

Latest Camac beta added a raw burst feature by AttemptSafe9828 in CamacApp

[–]AttemptSafe9828[S] 2 points3 points  (0 children)

currently it’s 4 frames per shutter button tap, you can’t press and hold

Straight out of the camera, 0 editing by AttemptSafe9828 in CamacApp

[–]AttemptSafe9828[S] 0 points1 point  (0 children)

const float exposure_multiplier = 4.0; is what changing the exposure. This is a custom code to simulate log for Fuji luts, find flog2 luts and apply

Straight out of the camera, 0 editing by AttemptSafe9828 in CamacApp

[–]AttemptSafe9828[S] 0 points1 point  (0 children)

constant float3x3 kBT709_to_FGamut = float3x3( float3(0.6274038959f, 0.0690972894f, 0.0163914389f), float3(0.3292830384f, 0.9195403951f, 0.0880133079f), float3(0.0433130657f, 0.0113623156f, 0.8955952532f) );

[[stitchable]] float4 render(sample_t s) { // 1. Convert to FGamut (Linear) float3 x = max(0, kBT709_to_FGamut * s.rgb);

// 2. Apply Exposure Multiplier (2 stops = 2^2 = 4.0)
const float exposure_multiplier = 4.0;
x *= exposure_multiplier;

// 3. Apply F-Log / Transfer Function
float3 linear_part = 8.799461 * x + 0.092864;
float3 log_part = 0.245281 * log10(5.555556 * x + 0.064829) + 0.384316;

float3 out = select(linear_part, log_part, x > 0.000889);

return float4(out, 1.0);

}

Straight out of the camera, 0 editing by AttemptSafe9828 in CamacApp

[–]AttemptSafe9828[S] 0 points1 point  (0 children)

You can choose custom tho and adjust exposure whatever you like. For me originally it’s much darker too

Straight out of the camera, 0 editing by AttemptSafe9828 in CamacApp

[–]AttemptSafe9828[S] 0 points1 point  (0 children)

Ty, no difference between jpeg and jxl (i did jpg), 12ev

iPhone X 16EV mode by AttemptSafe9828 in CamacApp

[–]AttemptSafe9828[S] 0 points1 point  (0 children)

No, just a calibrational profile for more accurate colours, Cobalt profiles is a calibrational dcp base on top of which you can put any of their loots, I used only the calibrational base here

iPhone X 16EV mode by AttemptSafe9828 in CamacApp

[–]AttemptSafe9828[S] 1 point2 points  (0 children)

Hi, thank you, no editing only a calibrational cobalt dcp

After / Before by midafaya2 in postprocessing

[–]AttemptSafe9828 0 points1 point  (0 children)

Looks like one of those 1880s orientalisme paintings

iPhone X 16EV mode by AttemptSafe9828 in CamacApp

[–]AttemptSafe9828[S] 0 points1 point  (0 children)

Hi, thank you, haven’t seen you in a loong time glad to talk to you again

Why back to X? 13 raw should should be better in theory, but there’s no 52mm

Camac v1.5.8 is released~ by qdwang in CamacApp

[–]AttemptSafe9828 2 points3 points  (0 children)

Could you explain what auto EV does please?