Sony Ericsson / Sony : Software, Firmware and Drivers : Super camera driver for k750/w800/w810
>
New Topic
>
Reply<
Esato Forum Index
>
Sony Ericsson / Sony >
Software, Firmware and Drivers
> Super camera driver for k750/w800/w810
Bookmark topic
Power_VANO
>>>
http://en.wikipedia.org/wiki/Metering_mode
--
Posted: 2007-06-04 13:57:45
Edit :
Quote
@ all: can anyone post please instruction for sarmad´s 5.7 driver...
I cant figure out how to set the focus manually and other settings...
please be so kind ...!!
The driver is great and the pictures are great when I sue it on my K750i CID49 r1db0001, but sometimes landscape pictures are unsharp. Has anyone other noticed that?? Or have I a bad cam module?
Here I shot three pictures, one sharp - two badly unsharp...
the sharp one

)
[ This Message was edited by: Randolph on 2007-06-04 21:44 ]
--
Posted: 2007-06-04 20:09:19
Edit :
Quote
BIG battle: Nokia 6233 vs. SE K550i vs. SE W810i
My friend has translated my article ofm my big compare. So you can find my compare in english language -
click here
--
Posted: 2007-06-04 20:11:29
Edit :
Quote
On 2007-06-04 20:09:19, Randolph wrote:
@ all: can anyone post please instruction for sarmad´s 7.5 driver...
I cant figure out how to set the focus manually and other settings...
please be so kind ...!!
Did you meam sarmad´s 5.7 ???
If yes.
------------------------------------------------------------------------------------------------
Normal mode = Faster EN/ENM
Fine Mode = Slower EN/ENM
Improved and Accurate Focus
Macro mode = Enhanced Mode (slightly longer exposure)
Manual Focus (use zoom keys to select focus)
1.0:autofocus, 1.1:infinity, 1.2-4.0 manual
Macro + Night = Enhanced Night Mode (longer exposure, very low noise)
Manual focus (as described above)
------------------------------------------------------------------------------------------------
if not , very sory
On 2007-06-04 20:11:29, pRo_lama wrote:
BIG battle: Nokia 6233 vs. SE K550i vs. SE W810i
My friend has translated my article ofm my big compare. So you can find my compare in english language -
click here
a lot of Thx.
ps. sory for my Eng.
[ This Message was edited by: nive on 2007-06-04 20:20 ]
--
Posted: 2007-06-04 21:16:38
Edit :
Quote
Boa noite o texto está em português e é um resumo das minhas descobertas em codigos corretos camdriver0.dat
Depois de muitos testes tenho certeza que esses codigos resolveram vários problemas nos celulares sony com câmera CMOS..
pois os modelos CCD k800 estão perfeitos tanto no dia, quanto na noite, mas nem todo mundo tem mais dinheiro para investir.
Este código resolveu o problemas de ruido, tempo e claridade nas fotos a noite inclusive os problemas com fotos verdes:
EM=$s0 39 $-0 r1
06 02 00 01 $w0 04 $f $d00c8
Já esses codigos resolveram o problema com as cores do sensor e nitides:
seq_init=06 02 00 01 00 56 #CMD_END
06 02 00 01 00 55 #CMD_END
05 02 00 20 fd #CMD_END
05 02 00 21 f6 #CMD_END
06 02 00 01 06 58 #CMD_END
06 02 00 01 01 13 #CMD_END
Já com a redução de ruido acima citada, podemos aumentar a exposição ou seja brilho das fotos com esse código:
seq_set_prop_0=$s0 %0 $-0 07 06 02 00 01 $w0 06 #CMD_END;
A compressão minima e maxima é conseguia aqui corrigindo problemas de ruidos a noite e na nitides:
seq_set_prop_5_0=$z0
$s2 4b
$c0 01 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(00,0F) #SET_JPEG_AVG(00,05) #SET_JPEG_QUALITY $cl
$c0 02 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(00,19) #SET_JPEG_AVG(00,08) #SET_JPEG_QUALITY $cl
$c0 03 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(00,28) #SET_JPEG_AVG(00,0F) #SET_JPEG_QUALITY $cl
$c0 04 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(00,96) #SET_JPEG_AVG(00,37) #SET_JPEG_QUALITY $cl
$c0 05 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(01,40) #SET_JPEG_AVG(00,96) #SET_JPEG_QUALITY $cl
$c0 06 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(02,08) #SET_JPEG_AVG(01,72) #SET_JPEG_QUALITY $cl
$c0 07 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(01,e0) #SET_JPEG_AVG(01,5e) #SET_JPEG_QUALITY $cl
$c0 08 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(02,1c) #SET_JPEG_AVG(01,90) #SET_JPEG_QUALITY
$cx $cx $cx $cx $cx $cx $cx $cx;
seq_set_prop_5_1=$z0
$s2 58
$c0 01 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(00,0F) #SET_JPEG_AVG(00,08) #SET_JPEG_QUALITY $cl
$c0 02 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(00,19) #SET_JPEG_AVG(00,0F) #SET_JPEG_QUALITY $cl
$c0 03 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(00,28) #SET_JPEG_AVG(00,14) #SET_JPEG_QUALITY $cl
$c0 04 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(00,96) #SET_JPEG_AVG(00,50) #SET_JPEG_QUALITY $cl
$c0 05 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(01,54) #SET_JPEG_AVG(01,2C) #SET_JPEG_QUALITY $cl
$c0 06 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(02,1c) #SET_JPEG_AVG(01,cc) #SET_JPEG_QUALITY $cl
$c0 07 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(01,f4) #SET_JPEG_AVG(01,a4) #SET_JPEG_QUALITY $cl
$c0 08 #SET_JPEG_MIN(00,00) #SET_JPEG_MAX(02,30) #SET_JPEG_AVG(01,e0) #SET_JPEG_QUALITY
$cx $cx $cx $cx $cx $cx $cx $cx;
A conclusão é que vale apena comprar o K800 com sensor CCD mas se você já tem o k750/w800 use drivers modificados corretos para seu celular.
Foto do por do sol:
--
Posted: 2007-06-04 22:34:59
Edit :
Quote
@paparazy
Good pic paparazy. English to talk pls. i wanna know ur talking about?
--
Posted: 2007-06-05 03:18:05
Edit :
Quote
Comparison among the drivers 1.7 update 20 of the paparazy and of the 5.7 sharpness 5 of the samard, it follows link below for downloads of the pictures.
www.alinhamatic.com.br/foto
--
Posted: 2007-06-05 03:32:43
Edit :
Quote
Quote:
On 2007-06-05 03:32:43, italmeida wrote:
Comparison among the drivers 1.7 update 20 of the paparazy and of the 5.7 sharpness 5 of the samard, it follows link below for downloads of the pictures.
http://www.alinhamatic.com.br/foto
please indicate which phone and CID version was used for the sample shots since that makes a big difference.
--
Posted: 2007-06-05 03:38:00
Edit :
Quote
On 2007-06-05 03:38:00, sarmadgilani wrote:
Quote:
On 2007-06-05 03:32:43, italmeida wrote:
Comparison among the drivers 1.7 update 20 of the paparazy and of the 5.7 sharpness 5 of the samard, it follows link below for downloads of the pictures.
http://www.alinhamatic.com.br/foto
please indicate which phone and CID version was used for the sample shots since that makes a big difference.
My fone is W800 CID36
--
Posted: 2007-06-05 05:05:01
Edit :
Quote
I finally decided to try the MXE-60 flash for the w810( other models as well)
I'm using SPU 1.3 beta 3 and CID49 unbranded w810 with Sarmad's small font hacked R4EA031 firmware.
I've had it a few hours and I think it's great!
I read reviews about how it sometimes doesn't flash in low light ( not dark) conditions but I haven't had any problems with that.This may be due to SPU's driver having specific Xenon flash options,I can use the flash as a fill-in flash.
The LED can be annoying to people when using autofocus, due to the fact that the LED is lit until the picture is taken but with infinity focus it's no problem.
All pics taken in normal mode (not supermode), auto everything, Fine quality
1. Regular Mode
2. Night Mode
3. LED Regular mode
4. MXE-60 flash, the color is the most accurate
I know I cand take better pics but I wanted a baseline. I'm not sure if I can use supermode and the flash but I haven't played around with the driver/settings yet.
thank you all who read/ post in this thread
--
Posted: 2007-06-05 05:06:56
Edit :
Quote
New Topic
Reply