Esato Mobile
Sony Ericsson / Sony : Software, Firmware and Drivers : C905 CamDriver Modded
> New Topic
> Reply
< Esato Forum Index > Sony Ericsson / Sony > Software, Firmware and Drivers > C905 CamDriver Modded Bookmark topic
Page <  123 ... 323334 ... 291292293>

omokas Posts: 30

@necoo

If the ISO goes very high (eg 400) the noise of the picture will be very much , lower ISO is better (eg 200 or 100). Even if the ISO is low there are some problems on the pictures that they aren't on higher ISO

Correct me if I put wrong ISO values.

@DarKMaGiCiAn

Yeah , I am very happy you will release the driver this week
Have you fixed the "Flash" problem ?
--
Posted: 2009-05-04 14:33:02
Edit : Quote

necoo Posts: 29


On 2009-05-04 14:33:02, omokas wrote:
@necoo

If the ISO goes very high (eg 400) the noise of the picture will be very much , lower ISO is better (eg 200 or 100). Even if the ISO is low there are some problems on the pictures that they aren't on higher ISO

Correct me if I put wrong ISO values.

@DarKMaGiCiAn

Yeah , I am very happy you will release the driver this week
Have you fixed the "Flash" problem ?



i know that (: but I ask How high the cam can go 1000 or 1600
--
Posted: 2009-05-04 14:50:28
Edit : Quote

omokas Posts: 30

@DarKMaGiCiaN

I have seen that when the camera focuses the picture is the best , but the problem is that it focuses and then it lets you take the picture , can you try to modify a driver to take picture the time it focuses ?

Thanx

EDIT : I have fixed the problem , i used "MACRO" and now it holds on when the camera focuses ...
[ This Message was edited by: omokas on 2009-05-04 17:14 ]

--
Posted: 2009-05-04 15:00:43
Edit : Quote

eltoffer Posts: 348

Hi darkmagician im stucked on my driver i just cant make it works, i mean i set manual ISO but when i take a pic it takes too long to be saved and it doesnt even saved right, the pic is wrong , but when i check it into my pc it gives me the correct ISO (the one i set), are you having the same issue???

i dont know where im wrong

i attach you one image to see what i mean


--
Posted: 2009-05-04 21:14:03
Edit : Quote

omokas Posts: 30

@eltoffer
Do you mind sharing THIS camdriver ? I wanna trick my friends that my camera broke

Nice pic
--
Posted: 2009-05-04 22:05:41
Edit : Quote

eltoffer Posts: 348

mmm if you want to use manual ISO and get this green effect you must enter to WB and then selec day or another settnig less auto

good luck

http://www.4shared.com/file/103403009/28efb92/camdriver0.html
[ This Message was edited by: eltoffer on 2009-05-04 21:21 ]

--
Posted: 2009-05-04 22:21:01
Edit : Quote

mikely_28 Posts: 466

Preview Photo Fix!! C905 Jupita AEX Beta 1

I'll Post night shot next time

The link for download will be up soon

Thank you

Ta Power when will U give the link?
The Pics R really nice looking, i am so unpatient to test it
--
Posted: 2009-05-04 22:40:57
Edit : Quote

eltoffer Posts: 348

DARCKMAGICIAN please give me a sign............................ hit me baby one more time ^^
--
Posted: 2009-05-04 23:26:58
Edit : Quote

brazzuka's Posts: > 500

The schemma for ISO is a bit confused.
You canīt control two keys at the same time.Guys have to determine what they want and the priority to remove and implement another function.
If the function WB is not important to you is not very usual, then remove all functions with the WB or property WB whatever and implemented ISO function.
If the function effects is not important to you is not very usual, then remove the property effects and implemented ISO function.
Donīt need suffer so much guys, use the base of the k850
[ This Message was edited by: brazzuka's on 2009-05-05 01:42 ]

--
Posted: 2009-05-05 02:30:47
Edit : Quote

brazzuka's Posts: > 500

if you want replaced WB by ISO try this:

Code:
White balance=ISO
//---------------------------------------------------

seq_set_prop_1_0 =
#TO_DRAFT
#SET_REG(61,00)
#COM_EVENT(02,00)
#WB_ISO100
#FLASH_LIMIT_ISO100
#COM_EVENT(5A,01) // FLASH_INFO = 1
;

seq_set_prop_1_1 = // ISO 400
#TO_DRAFT
#SET_REG(61,07)
#SET_REG(95,07)
#COM_EVENT(02,04)
#WB_ISO400
#FLASH_LIMIT_ISO400
#COM_EVENT(5A,01)
;

seq_set_prop_1_2 =
#TO_DRAFT
$sc 0A // ISO 800
#SET_REG(61,0A)
#SET_REG(95,0A)
#COM_EVENT(02,04)
#WB_ISO800
#FLASH_LIMIT_ISO800
#COM_EVENT(5A,01)
;

seq_set_prop_1_3 = // ISO 100
#TO_DRAFT
#SET_REG(61,01)
#SET_REG(95,01)
#COM_EVENT(02,04)
#WB_ISO100
#FLASH_LIMIT_ISO100
#COM_EVENT(5A,01)
;

seq_set_prop_1_4 = // ISO 200
#TO_DRAFT
#SET_REG(61,04)
#SET_REG(95,04)
#COM_EVENT(02,04)
#WB_ISO200
#FLASH_LIMIT_ISO200
#COM_EVENT(5A,01)
;
//---------------------------------------------------


if you want replaced effects by ISO try this:

Code:
Effects=ISO
//---------------------------------------------------
seq_set_prop_8_0 =
#TO_DRAFT
#SET_REG(61,00) //ISO Auto
#COM_EVENT(02,00)
#WB_ISO100
#FLASH_LIMIT_ISO100
#COM_EVENT(5A,01);

seq_set_prop_8_1 =
#TO_DRAFT
#SET_REG(95,01)
#SET_REG(61,01) //ISO 100
#COM_EVENT(02,04)
#WB_ISO100
#FLASH_LIMIT_ISO100
#COM_EVENT(5A,01);
seq_set_prop_8_2 =
#TO_DRAFT
#SET_REG(95,04)
#SET_REG(61,04) //ISO 200
#COM_EVENT(02,04)
#WB_ISO200
#FLASH_LIMIT_ISO200
#COM_EVENT(5A,01);
seq_set_prop_8_3 =
#TO_DRAFT
#SET_REG(95,07)
#SET_REG(61,07) //ISO 400
#COM_EVENT(02,04)
#WB_ISO200
#FLASH_LIMIT_ISO200
#COM_EVENT(5A,01);

seq_set_prop_8_4 =
#TO_DRAFT
#SET_REG(95,0A)
#SET_REG(61,0A) //ISO 800
#COM_EVENT(02,04)
#WB_ISO400
#FLASH_LIMIT_ISO400
#COM_EVENT(5A,01);

//---------------------------------------------------

--
Posted: 2009-05-05 02:40:01
Edit : Quote
Page <  123 ... 323334 ... 291292293>

New Topic   Reply
Forum Index

Esato home