Esato

Forum > Sony Ericsson / Sony > Software, Firmware and Drivers > Super camera driver for k750/w800/w810

Visitors browsing this topic: 1
Add to Bookmarks
Previous  123 ... 544545546 ... 664665666  Next
Author Super camera driver for k750/w800/w810
number1
P1
Joined: Sep 12, 2007
Posts: > 500
From: UK,kent,Sittingbourne
PM
Posted: 2008-01-14 21:22
Reply with quoteEdit/Delete This PostPrint this post
does em have to be engaged by seq_ss_take=, or can i simply engage it by putting #EM under 1 of the scene macrosm i only want to use EM on certain scenes
Kriomag
W810 black
Joined: Dec 20, 2006
Posts: > 500
From: Poland
PM, WWW
Posted: 2008-01-14 22:24
Reply with quoteEdit/Delete This PostPrint this post

On 2008-01-14 20:51:54, 679 wrote:
Kriomag,

Is it misprint in last 21.93 drivers in line:

cam_power_on_7=5,0,0,0,14F;

but in all other drivers
cam_power_on_7=5,0,0,0,1F4;

Or it doesn't matter?

P.S. Sorry, guys for ridiculous formating of my post, cant understand what's the matter...

oh it was my fault i have not closed table properly so next posts were corrupted, SORRY!

thanks for pointing that, it should be 1F4 ofc i dont know where 14F came from :/
It will be fixed in next beta thx

[ This Message was edited by: Kriomag on 2008-01-14 21:39 ]
Kriomag
W810 black
Joined: Dec 20, 2006
Posts: > 500
From: Poland
PM, WWW
Posted: 2008-01-14 22:38
Reply with quoteEdit/Delete This PostPrint this post

On 2008-01-14 21:22:38, number1 wrote:
does em have to be engaged by seq_ss_take=, or can i simply engage it by putting #EM under 1 of the scene macrosm i only want to use EM on certain scenes

yes, it has to be engaged by seq_ss_take, you have to create rule to enable EM only with selected scene (like it is enabled only when you select Picture Quality FINE:
$p1 05 (place current value of property 5 in reg1)
$c1 01 (if reg1 value is 1 it means FINE is selected in camera menu)
-- code engaged only if FINE is selected--
$cx


in k550i scenes are selected by menu, in driver: seq_set_prop_10

if you want code to be executed if "Night" Scene is selected replace first two lines of my EM ($p1 05 $c1 01) with this:

$p1 10 <--place value of property 10 (scenes) in reg1
$c1 03 <--if reg1 has value 3 (it means "Night" scene is selected) proceed with EM code:
--place EM code here--
$cx;

it will ask if scene "Night" is selected instead of asking if picture quality FINE is selected (it is my way to enable EM).

But it is different camera module and registers may be different so i cant garantee that EM code will work properly... and i dont have K550i for testing... but: good luck!

[ This Message was edited by: Kriomag on 2008-01-14 23:13 ]
Kriomag
W810 black
Joined: Dec 20, 2006
Posts: > 500
From: Poland
PM, WWW
Posted: 2008-01-14 22:47
Reply with quoteEdit/Delete This PostPrint this post

On 2008-01-12 16:27:35, number1 wrote:
@kriomag try this in ur driver
seq_set_prop_1_0 = #COM_EVENT(11,80); it turns the whitebalance off it works well in k800 etc, dunno how it will work in the k750/w800

it works fine but i cant find the way to reset WB to default state after i change it in menu (or by quick WB change in my driver) and then back to #CMD(11,80) :/ so it works just like #CMD(11,01) = WB Lock
If i will find the way to reset WB to default i will use this command because in daylight (and with LED) results are very good (disabled WB is great in some situations when Auto WB gets crazy - yellowishness in sunlight with blue sky, blue with LED etc.).


Auto WB Enabled:
In the first picture Auto WB gets confused with this amounth of blue color and try to compensate adding yellow and removing blue, it causes unnatural colors.

Auto WB Disabled:
In the second picture colors are exactly as they were seen by my eyes (cold winter sunlight and almost cloudless blue sky ).


[ This Message was edited by: Kriomag on 2008-01-15 22:22 ]
number1
P1
Joined: Sep 12, 2007
Posts: > 500
From: UK,kent,Sittingbourne
PM
Posted: 2008-01-15 11:20
Reply with quoteEdit/Delete This PostPrint this post
thanks for your help, i have the whitebalance off in my k800i & k550i driver the colours on the pictures are so much better also pictures are clearer, i don't know have the update whitebalance works in the k750i but in the k800i

UPDATE_WB = // Updates white balance if necessary
$p5 01
$c5 00 // WB is auto?
$d004b // Delay 75 milliseconds
$cl
$d004b // Delay 75 milliseconds
$u01 // Update WB
$cx;

it has to have these delays to work properly, try adding the delays in the update whitebalance code.

[ This Message was edited by: number1 on 2008-01-15 10:24 ]
Kriomag
W810 black
Joined: Dec 20, 2006
Posts: > 500
From: Poland
PM, WWW
Posted: 2008-01-15 14:47
Reply with quoteEdit/Delete This PostPrint this post

On 2008-01-15 11:20:46, number1 wrote:
thanks for your help, i have the whitebalance off in my k800i & k550i driver the colours on the pictures are so much better also pictures are clearer, i don't know have the update whitebalance works in the k750i but in the k800i

UPDATE_WB = // Updates white balance if necessary
$p5 01
$c5 00 // WB is auto?
$d004b // Delay 75 milliseconds
$cl
$d004b // Delay 75 milliseconds
$u01 // Update WB
$cx;

it has to have these delays to work properly, try adding the delays in the update whitebalance code.

it doesn't work because it updates WB, not reset it...
In my driver i get similar results (to 11,80) if i block WB very fast (before VF is fully enabled)
679
K750
Joined: Oct 05, 2006
Posts: 174
PM
Posted: 2008-01-15 17:42
Reply with quoteEdit/Delete This PostPrint this post
Kriomag
This new (for me) alternative WB is very interesting. In your driver it can be used for fine WB tuning with white paper. Just set EV=0.7, point camera on white paper, wait 2-3 sek and set EV=0.3. New exact WB for existing lighting will be fixed!
Kriomag
W810 black
Joined: Dec 20, 2006
Posts: > 500
From: Poland
PM, WWW
Posted: 2008-01-15 17:57
Reply with quoteEdit/Delete This PostPrint this post

On 2008-01-15 17:42:49, 679 wrote:
Kriomag
This new (for me) alternative WB is very interesting. In your driver it can be used for fine WB tuning with white paper. Just set EV=0.7, point camera on white paper, wait 2-3 sek and set EV=0.3. New exact WB for existing lighting will be fixed!

yes, cooperation with WB Lock (Macro ON: EV +0.3) its very useful
Im glad finally someone (other than me) appreciated this function :] hehe



EDIT:
I have (probably lame) question for advanced modders

if i subtract A from 9 what value register will have?

EDIT2:
SPU's Manual is vere useful

Answer to my question is: "FF"

[ This Message was edited by: Kriomag on 2008-01-16 00:16 ]
679
K750
Joined: Oct 05, 2006
Posts: 174
PM
Posted: 2008-01-15 18:42
Reply with quoteEdit/Delete This PostPrint this post

On 2008-01-15 17:57:49, Kriomag wrote:

yes, cooperation with WB Lock (Macro ON: EV +0.3) its very useful
Im glad finally someone (other than me) appreciated this function :] hehe


BTW in SPU manual this value for CMD (11,02) is missed as well in property_1 in any driver body to.

Realy we got the same feature as in big dig camera ( for example in my old Canon) - WB adjusting with white paper. In all other cases it using will distore real scene colors especially if it has any dominant color. I guess it works to get result grey total color scene balance ( if we will "mix" all colors in scene). It is clear seen on your night pictures in previous page post.
And more, i think it works to get so called "18%grey intensity pattern", because seems i've got different iso or exposure for standard WB and this one.

[ This Message was edited by: 679 on 2008-01-15 18:03 ]
Kriomag
W810 black
Joined: Dec 20, 2006
Posts: > 500
From: Poland
PM, WWW
Posted: 2008-01-15 19:38
Reply with quoteEdit/Delete This PostPrint this post

i will use "Custom WB" name for this feature (EV +0.7)

[ This Message was edited by: Kriomag on 2008-01-16 06:34 ]
markztrance
K810 Blue
Joined: Nov 18, 2006
Posts: 137
From: Dagupan, Philippines
PM
Posted: 2008-01-16 05:33
Reply with quoteEdit/Delete This PostPrint this post
wheres raiderski??
pram_zx
W810 black
Joined: Mar 02, 2007
Posts: 161
From: NoWhere Island
PM
Posted: 2008-01-16 10:43
Reply with quoteEdit/Delete This PostPrint this post
I think Raiderski play with his new K800
W810i Black with W800 back cover, modded camdriver, Own mix acoustic driver, Unbranded phone, Adding new flash menu's. W810i It's Rock...!
fernyperez
T68 gold
Joined: Nov 19, 2007
Posts: 29
PM
Posted: 2008-01-16 14:53
Reply with quoteEdit/Delete This PostPrint this post
This is a night shot with flash (total darkness). I find a lot of grain in the pic, even though i have cid36 cam module (k750 cid49 red).
Is there any way to modify any line in camdriver to be able to sharpen or lessen this grain in night pics??
Cheers!

number1
P1
Joined: Sep 12, 2007
Posts: > 500
From: UK,kent,Sittingbourne
PM
Posted: 2008-01-16 15:23
Reply with quoteEdit/Delete This PostPrint this post
how do i limit the EM mode so the shutter speed doesn't go over 1/2 sec,
or how do i edit the EM mode so in low-light it produces iso 200 & 1/2sec shutter speed????
markztrance
K810 Blue
Joined: Nov 18, 2006
Posts: 137
From: Dagupan, Philippines
PM
Posted: 2008-01-16 16:18
Reply with quoteEdit/Delete This PostPrint this post
ipachuong>raiderski>kriomag>who's next?? hehe
Access the forum with a mobile phone via esato.mobi
Previous  123 ... 544545546 ... 664665666  Next
Goto page:
Lock this Topic Move this Topic Delete this Topic