Welcome to Esato.com


Pages:
Previous  123 ... 156157158 ... 198199200  Next


Super camera driver for k750/w800/w810


Click to view updated thread with images




Posted by Randolph
In SE standard driver for K750 filtering is on by default?


Posted by Vipera ammodytes
Yep.

This message was posted from a K750i

Posted by loucostanza
so...the point are:

bilinear filtering ON = less noises, less sharpness
billinear filtering OFF = more noises, sharper images

am i right?

Posted by Kriomag

On 2007-12-21 15:39:48, loucostanza wrote:
so...the point are:

bilinear filtering ON = less noise, less sharpness
billinear filtering OFF = more noise, sharper images

am i right?


yep

Posted by strong
Merry Christmas and Happy new Year to all



[img=http://img134.imageshack.us/img134/5959/2007122013561rh5.th.jpg]


k750@w800 R1BC002 www.camdrivers.wz.cz/


[ This Message was edited by: strong on 2007-12-23 23:25 ]

Posted by Sombra
Nice image, strong.

Posted by leetiran
@raiderski
when i read the k800 camdriver, i found that "#UPDATE_WB_IF_NECESSARY" is used after scene command 51.
It seems can solve the WB bug with scene.

UPDATE_WB_IF_NECESSARY= $p5 01
$c5 00 // WB is auto?
$cl
$d0032 // Delay 50 milliseconds
$u01 // Update WB
$cx;

Posted by Mazahaka
@strong
i cant see your foto
can you load it on imageshack.us

Posted by Raiderski
leetiran
good tip, indeed delay must be used between scene change and WB update but delay 32h ms (let's use h notation for hex values) is not enough if you're using manual shutter speed (long times) because transition from long exposure time to normal view can slow down other events (scene change and WB update) and WB update can be finished before scene change :/ the best idea is to wait for 'scane changed' event and then update WB, this will work fine in 100% cases. i did this fix some days ago i'm almost ready to make 6.7 public available (only small fix for led is waiting for me)

SPU
what do you think about regC and regD (those for calculations)? i don't see them in code. did you tried to use them in code for calculations or as data storage? are they free to use or reserved for something?

all
i sent something on camdrivers server, look:
http://downloads.wow-info.net[....]&unsigned/camdriver0%205.5.dat

what the hell is this? 5.5m1? original by SE or mod? i don't remeber from where i have this file


[ This Message was edited by: Raiderski on 2007-12-22 15:54 ]

Posted by number1

i sent something on camdrivers server, look:
http://downloads.wow-info.net[....]&unsigned/camdriver0%205.5.dat

what the hell is this? 5.5m1? original by SE or mod? i don't remeber from where i have this file


[ This Message was edited by: Raiderski on 2007-12-22 15:54 ]


i heard that the 5.5 driver is a standard se driver that is only in german k750i firmware it's meant to be really good


Posted by SPU
Raiderski
Actually we can use registers as we want. But 0-3 are used in get_prop for communication with firmware (i use them in code only as temporary storage). So you can free up some regs by rearranging used ones... and be careful =)
number1
It's modded driver. Just look at the code.

[ This Message was edited by: SPU on 2007-12-22 17:10 ]

Posted by EddieAdams
Saw this link and was curious, is the super cam-driver worth it? How do I go about downloading it? Do I need to install earlier versions first? Usually I do the reading myself but, there is 500+ pages and I'm lazy. Currently have a unlocked w810i. Tips and reconmendations would be greatly appreciated. Thank You.

Posted by killerPK
Can someone tell me the best camdriver that doesnt have advanced functions? I just want the default functions with better quality.

Posted by lpachuong
SPU: so you meant the driver communicates with the firmware through reg0-3? It is interesting. Thank you for your information

And yes, that 5.5 is modded, it is not the original driver from Sony.

Posted by Raiderski
killerPK
my and SPU drivers are supermode but they can be set to standard driver functionality (nothing more)

SPU
thx, i looked for 2 free regs but then i realized that i don't need them sometimes my IQ seems to be lower than the hammer's IQ haha

Kriomag
caly dzien sciemnialem z zakupami, porzadkami itd. niestety dotknelo to rowniez odpowiedz na pytanie ale juz sie powolutku tworzy


[ This Message was edited by: Raiderski on 2007-12-22 21:12 ]

Posted by SPU
lpachuong
Regs 0-3 are used only in seq_get_prop_X, jpeg_qtable_selector_X and seq_ss_verify to pass some predefined parameters to the firmware (like some Exif data, AF state, camera module version and so on).

Btw, there was a small bug in my current driver, so results for regs 16, 17 must be wrong. Now i'll try to repeat tests... but after a few shots i notice that some results depends on reg 16, but others no... quality may by lower and higher than StartQ-Reg16 and does not depend on Reg16 value (if treat it as step value).

all
What is seq_ping? It seems to be never executed or i'm not right?

[ This Message was edited by: SPU on 2007-12-22 22:52 ]

Posted by Raiderski
for sure seq_ping is executed before seq_init. i didn't checked this but can be used to verify driver version number. in K770 driver:

seq_ping=
#RD_REG(00) $m0 4
#RD_REG(01) $m1 4;

some lines lower in seq_init=
#RD_REG(00) $"CAM_PRODUCT_ID_=_%4"
#RD_REG(01) $"CAM_PRODUCT_VER_=_%4"

the same regs and both describing major.minor version

in k750, w800, w810 firmwares label cam_ping_result exist too

my phone doesn't accept (message 'wrong version') anything below 4.5 in seq_get_prop_0. maybe with seq_ping=$s1 01 $s0 01 limit can be changed from 4.5 do 1.1


[ This Message was edited by: Raiderski on 2007-12-22 23:38 ]

Posted by lpachuong

On 2007-12-22 23:21:55, SPU wrote:
lpachuong
Regs 0-3 are used only in seq_get_prop_X, jpeg_qtable_selector_X and seq_ss_verify to pass some predefined parameters to the firmware (like some Exif data, AF state, camera module version and so on).

Btw, there was a small bug in my current driver, so results for regs 16, 17 must be wrong. Now i'll try to repeat tests... but after a few shots i notice that some results depends on reg 16, but others no... quality may by lower and higher than StartQ-Reg16 and does not depend on Reg16 value (if treat it as step value).

all
What is seq_ping? It seems to be never executed or i'm not right?

[ This Message was edited by: SPU on 2007-12-22 22:52 ]


You are right, reg 16 in my code has a problem. When it works, the quality is improved significantly but if it doen't work, it will be worse. I am still unable to keep it consistent. Please help me

Posted by Raiderski
just in time...
i wish all of you merry christmas with many unforgotten moments with your families, of course moments grabbed on nice photos
ahh, i cannot forget... useful gift under the tree! maybe some dSLR?


camera driver v6.7 + config tool v0.5.2
http://raider.4shared.com


a bit of fixes and improvements
(cid49 users: if driver doesn't work, send me PM i will fix it fast)


1. fix: no result after white balance change (corrupted in 6.6.1)
2. fix: manual shutter speed don't remember color correction settings (corrupted in 6.6.1)

two very important fixes, now you'll not lose white balance nor color correction settings


3. fix: harmless issue, when autofocus fails and goes to infinity (white rectangle):
- autoexposure will not be locked
- manual shutter speed preview will be activated before snapshot key release

this harmless issue you can find in every driver which one using snapshot button to AE (un)lock


4. fix: accidental mutual influence of manual adjustings of one function to different functions after changes: effect or white balance selection, macro on/off, night mode on/off

once again issue existing in many drivers which use zoom keys to control anything else than zoom only. problem is described at page 520 in my post "malicious issue"


5. fix: if color correction for cyan/red and yellow/blue are used together then after WB change yellow/blue setting will be lost

very easy to notice when green, magenta or orange color cast function is used


6. improve: warm color correction for led light

fluorescent WB + small cyan/blue correction = much better final result. you can notice that after shot with led you'll not lose white balance nor color correction settings which were used before shot


7. improve: image filtering is always enabled if you set digital zoom value above x1.0

simply because zoomed in image must be interpolated
that's why: image on page 511, 2nd post from bottom


8. improve: extended functionality of "standard" driver type: manual focus control is possible when macro mode is enabled (popular solution from Kriomag/Sarmad driver)
- macro off = zoom
- macro on = manual focus
- video mode = zoom (no matter of macro state)

you can customize 6.7 to work as below driver types:
- original
- original + EM (permanent on normal/fine quality)
- original + manual focus (in macro mode)
- original + manual focus (in macro mode) + EM (permanent on normal/fine quality)
- supermode
- supermode + EM (permanent on normal/fine quality)

all variants of original driver has AE (un)lock at half pressed snapshot key



enjoy

Posted by Vipera ammodytes
Thanks Raider!!!

Posted by masu002002
Hello, merry christmas


Posted by Mr.Kája
Good evening,

I tried the 6.7 driver, but I found strange problem - at my cid49brown, zoom button doesn't work (you know, it says - at max. resolution, you can't use zoom...). I use exactly the same settings like in 6.6, where it works on 100%.

Posted by Raiderski
thx for info, go to my 4shared - there is folder for you, try new cid49. i can't check this myself because my girl and her cid49 is far away

Posted by Mr.Kája
GJ Raiderski, this new version for cid49 works like a charm ;o)

Posted by Raiderski
sweet whole 6.7 package is now updated (working cid49)

Posted by wickedsick
Raiderski, thank you for your new driver. However, it doesn't work on my w810i. When i turned it on, pressed the button and it didn't save the picture but go back to the menu. Please help. Cheer.


Posted by lpachuong
I hate money.

Posted by Raiderski
wickedsick
ofcourse i will help
back to menu every time?
auto settings or something is manual?
which resolution (160x120, 640x480, 1632x1024)?
which quality is selected?
any changes with config tool?

you can try new version, 6.7 package is updated on my 4shared account

lpachuong
what? everyone loves money but that's bad if they are not in our pockets

[ This Message was edited by: Raiderski on 2007-12-23 22:49 ]

Posted by leetiran
@Raiderski
Thanks for the new release. But i cant open the link. Could you put it into http://downloads.wow-info.net/se/drivers/camera/raiderski/latest/ ?



[ This Message was edited by: leetiran on 2007-12-24 02:10 ]

Posted by Mr.Kája
leetiran: try it here,, it should work...anyway, even raiderskis url worked at me.

btw. Marry Christmas and (later) Happy new year:)


Posted by leetiran

On 2007-12-24 03:18:17, Mr.Kája wrote:
leetiran: try it here,, it should work...anyway, even raiderskis url worked at me.

btw. Marry Christmas and (later) Happy new year:)




Thanks a lot

Posted by nabelon
thanks raider, your driver is as great as ever.lpachuong is version 11 the last ?

well i've read sometime a few months back that you guys are not doing it anymore..then now there are new drivers.Good job guys,keep it up.

Posted by Raiderski
leetiran
i uploaded 6.7 package here:
http://downloads.wow-info.net/se/drivers/camera/raiderski/latest

dunno why Mr.Kaja changed content of package

Mr.Kaja
can you please use original archive content with config tool and whole 'docs'? from user point of view some files may be useless but i want them together, especially about.txt, changelog.txt and config tool. it's not nice to remove about.txt in next release (if any) i will use cid36/cid49/w810 directories instead of renamed camdriver files

nabelon
yes, you know... there is always something to do


ok... i'm going back to my beloved HL2 Episode Two

Posted by lpachuong
MERRY CHRISTMAS EVERYONE !!!

Posted by Raiderski
MERRY CHRISTMAS

Posted by gabrielrm
MERRY CHRISTMAS TO ALL!

Posted by Mr.Kája
Raiderski: Fixed...I did it in hurry and in only drivers pack, I thought, it would be more simple with the one document. Mystake on my side, I'm sorry.

Posted by dukempg
@Raiderski
Thanks for the Christmas Gift! Merry Christmas Everyone!

Posted by loucostanza
MERRY CHRISTMAS EVERYBODY

Posted by KCC4
merry christmas everyone!!!

love ya all!!!! (Esp a certain esatonian... you know who you are... )

Posted by Randolph
Merry Christmay to all of you!!!!

raider 6.6 focus infinity, night mode:


Merry Christmay to all of you!!!!




[ This Message was edited by: Randolph on 2007-12-24 23:07 ]

Posted by aabg
Raider nice gift!!

merry christmas all!!

Posted by jmxbf
merry christmas everyone

Posted by leetiran

On 2007-12-24 09:49:35, Raiderski wrote:
leetiran
i uploaded 6.7 package here:
http://downloads.wow-info.net/se/drivers/camera/raiderski/latest


Thanks!

Posted by cronos555
Merry Christmas all.

Raider, thanks for 6.7 driver.

Shots below, Raiderski 6.7, infinity focus, manual shutter.






Posted by Vipera ammodytes
nice pictures!


guys is there any chance to change glass which protect camera module?

Posted by leetiran
Raiderski
It seems that there is Exif bug when using manual shutter. The Exif looks like the one taken in Normal mode.
And a suggestion, i think the scene (51,04) maybe also can be used in EM.

[ This Message was edited by: leetiran on 2007-12-26 06:57 ]

Posted by Raiderski
Vipera ammodytes
definetly yes! i heard that this is plastic with additional coating which is easy to scratch (my case) or to rub (brighter photos**). this is some kind of cheap polarizing (because of **) photographic filter. find someone who knows 'everything' about photo filters, prepare 2 sunlight photos (with protection and without protection), show them to that person - he can find the best replacement (photo filter). buy photo filter, go to optican let it cut out small circle which you can put instead of plastic thing - i'm thinking about this too

leetiran
bug? where exactly? i don't see nothing strange. scene 04 in EM can be of course used but i had no free time to check how it's working. in EM code is shutter speed calculation from AE value, so scene 04 must be applied before calculation or after calculation. i have free time today and i will check this


WTF?! this isn't joke! outstanding I-Mobile 902 is equipped in Sony CCD camera system. i can't believe that Sony shooted in the own knee what an idiots...


[ This Message was edited by: Raiderski on 2007-12-26 14:04 ]

Posted by SPU
Raiderski
This is infrared (infrared removal) filter. You can replace it with a piece of exposed film (removes normal light but leaves intact infrared light) and use phone as infrared camera =).

http://www.mobile.gemtech.net.au/750/tricks/irphotos.html

Posted by ukaszek
kriomag 21,91 + autocolor ACDSee








merry x-mas for all


Pages:
Previous  123 ... 156157158 ... 198199200  Next
Click to view updated thread with images


© Esato.com - From the Esato mobile phone discussion forum