Author Topic: 550D & 500D porting 14bit RAW DNG silent pics  (Read 74146 times)

3pointedit

  • Senior
  • ****
  • Posts: 263
  • 550D
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #25 on: May 17, 2013, 08:45:42 AM »
Wow, great for timelapses. Can the frame be dumped from a long accumulation (longer exposure) via shutter overide or is that fixed elsewhere? Can speed ramping occur?
550D on ML-roids

Greg

  • Contributor
  • Hero Member
  • *****
  • Posts: 607
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #26 on: May 17, 2013, 01:52:12 PM »
Code: [Select]
        #ifdef CONFIG_500D
        skip_top    = 24;
        skip_left   = zoom ? 64 : 74;
        #endif

https://bitbucket.org/Gr3g01/ml-500d-raw-dng/commits/21483751dc854271e271d95c0d46475221c89fae

dlrpgmsvc

  • Senior
  • ****
  • Posts: 398
  • The 7D and 50D Robin Hood
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #27 on: May 17, 2013, 03:19:33 PM »
Hi Greg ! Do your latest modifications works ? No more greenish color with zoom and full height frame ?  ???
If you think it's impossible, you have lost beforehand

Greg

  • Contributor
  • Hero Member
  • *****
  • Posts: 607
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #28 on: May 17, 2013, 04:18:59 PM »
100% crop :



Hi Greg ! Do your latest modifications works ? No more greenish color with zoom and full height frame ?  ???

500D zoom 5x - http://img845.imageshack.us/img845/4383/zoomt.jpg

dlrpgmsvc

  • Senior
  • ****
  • Posts: 398
  • The 7D and 50D Robin Hood
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #29 on: May 17, 2013, 06:22:48 PM »
Wonderful, Greg ! Compliments !
Now Wolf should correct his 550D code by following your example, and refresh his pull request ! Great !
If you think it's impossible, you have lost beforehand

wolf

  • Senior
  • ****
  • Posts: 263
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #30 on: May 17, 2013, 06:51:27 PM »
@Greg -> awesome :-)

How did you find the right zoom skip?
When I take a zoom silent pic I get no borders, but it doesn't work with 0 zoom.


Greg

  • Contributor
  • Hero Member
  • *****
  • Posts: 607
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #31 on: May 17, 2013, 06:57:11 PM »
Turn off the skip and send me dng.
Full frame and zoom 5x

550D - https://bitbucket.org/Gr3g01/ml-500d-raw-dng/commits/9cc339b9ceb9a6e4d1b35f49d7a9155a79ddba7b

tihon

  • Freshman
  • **
  • Posts: 74
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #32 on: May 17, 2013, 07:09:00 PM »
Hi, again.

Do you think that 1280 x 400 24fps continious raw  is possible for 550d?
Cinema, cinema, cinema


Greg

  • Contributor
  • Hero Member
  • *****
  • Posts: 607
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #34 on: May 17, 2013, 08:03:22 PM »
@ Greg
http://www.file-upload.net/download-7604947/48660001.DNG.html
http://www.file-upload.net/download-7604950/48660002.DNG.html

Try this:
Code: [Select]
        #ifdef CONFIG_550D
        skip_top    = 26;
        skip_left   = zoom ? 0 : 152;
        skip_right  = zoom ? 0 : 2;
        #endif

wolf

  • Senior
  • ****
  • Posts: 263
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #35 on: May 17, 2013, 08:24:31 PM »
Still pink.
I tried

skip_right  = zoom ? 0 : 1; 

Still pink also.

Greg

  • Contributor
  • Hero Member
  • *****
  • Posts: 607
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #36 on: May 17, 2013, 08:38:37 PM »
Still pink.
I tried

skip_right  = zoom ? 0 : 1; 

Still pink also.

This value must be 2, this is the full frame. (1734 x 1156)
Check for 5x and 10x. For 500D 10x gives bad results.

wolf

  • Senior
  • ****
  • Posts: 263
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #37 on: May 17, 2013, 08:53:46 PM »
On 10x same pink.
I don't mind, still satisfied with the no-zoom DNG :-)

Greg

  • Contributor
  • Hero Member
  • *****
  • Posts: 607
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #38 on: May 17, 2013, 09:18:28 PM »
This should work, from the top is 26px.
http://img37.imageshack.us/img37/3961/test2wo.jpg

5x also be pink?

Shizuka

  • New to the forum
  • *
  • Posts: 36
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #39 on: May 17, 2013, 09:33:24 PM »
Still pink.
I tried

skip_right  = zoom ? 0 : 1; 

Still pink also.

C:\>dcraw -T -v -v 48660002.DNG
Loading Canon EOS 550D image from 48660002.DNG ...
Scaling with darkness 0, saturation 15000, and
multipliers 2.651050 1.000000 1.388727 1.000000

>darkness 0
this is your problem, needs to be 2048 or something close to that

dcraw.exe -k 2048 is what you need

autodetect_black_level() produces a value of 0/0 here. Hard code it to some reasonable value, like 2048.

a1ex

  • Administrator
  • Hero Member
  • *****
  • Posts: 12564
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #40 on: May 17, 2013, 09:47:14 PM »
If you have the black borders defined properly, the black level will be autodetected. If not, just hardcode something.

1%

  • Developer
  • Hero Member
  • *****
  • Posts: 5936
  • 600D/6D/50D/EOSM/7D
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #41 on: May 17, 2013, 10:21:21 PM »
On 600D when I turned debug on it would either detect what looked to be the correct level or return 0, hit or miss. It seemed to get better in later builds. before raw histo looked funny.

Greg

  • Contributor
  • Hero Member
  • *****
  • Posts: 607
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #42 on: May 17, 2013, 11:08:24 PM »
500D looks good :
Code: [Select]
Loading Canon EOS 500D image from 2.DNG ...
Scaling with darkness 1791, saturation 15000, and
multipliers 2.378967 1.000000 1.255631 1.000000

wolf

  • Senior
  • ****
  • Posts: 263
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #43 on: May 18, 2013, 02:53:24 AM »
I tried different even values without success and don't understand to hardcode it.
At least the 550D users can use zoom raw the way Shizuka discribed.

nanomad

  • Administrator
  • Hero Member
  • *****
  • Posts: 2918
  • All your websites are belong to us
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #44 on: May 18, 2013, 09:27:52 AM »
Pull request anyone? :D
EOS 1100D | EOS 650 (No, I didn't forget the D) | Ye Olde Canon EF Lenses ('87): 50 f/1.8 - 28 f/2.8 - 70-210 f/4 | EF-S 18-55 f/3.5-5.6 | Metz 36 AF-5

wolf

  • Senior
  • ****
  • Posts: 263

nanomad

  • Administrator
  • Hero Member
  • *****
  • Posts: 2918
  • All your websites are belong to us
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #46 on: May 18, 2013, 03:31:35 PM »
Merged, thanks :D
EOS 1100D | EOS 650 (No, I didn't forget the D) | Ye Olde Canon EF Lenses ('87): 50 f/1.8 - 28 f/2.8 - 70-210 f/4 | EF-S 18-55 f/3.5-5.6 | Metz 36 AF-5

1%

  • Developer
  • Hero Member
  • *****
  • Posts: 5936
  • 600D/6D/50D/EOSM/7D
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #47 on: May 18, 2013, 03:59:17 PM »
You should add 600D too. https://bitbucket.org/OtherOnePercent/tragic-lantern-2.0/commits/all'

I think its only a few changes to raw.c, consts, and features.h

Greg

  • Contributor
  • Hero Member
  • *****
  • Posts: 607
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #48 on: May 18, 2013, 05:33:46 PM »
I turned on the 500D Silent Picture Burst.
26 images 1590x1060
46 images 1590x636

Raw video 500D 1590x636 rezised 1920x1080

wolf

  • Senior
  • ****
  • Posts: 263
Re: [solved] 550D & 500D porting 14bit RAW DNG silent pics
« Reply #49 on: May 18, 2013, 11:01:04 PM »
Great.
How many fps do you get?