Current Server Time: 15:07 (Central Europe)

#apertus IRC Channel Logs

2013/11/07

Timezone: UTC


22:01
Sasha_C
left the channel
22:22
rexbron
joined the channel
22:22
rexbron
left the channel
22:22
rexbron
joined the channel
22:24
troy_s
joined the channel
22:28
Bertl
back now ...
22:37
FergusL
wb Bertl
22:37
FergusL
my VNG python script now works perfect !
22:37
FergusL
but it's painfully slow and utterly stupid in its inner workings
22:38
Bertl
how do you know it works perfectly?
22:38
FergusL
I tried with a test image
22:39
Bertl
and how did you evaluate the result?
22:42
FergusL
comparison
22:42
FergusL
brb, let me show you after dinner
22:46
Jehan_ZeMarmot
joined the channel
22:46
Jehan_ZeMarmot
Hi.
22:46
Bertl
hey
22:46
Jehan_ZeMarmot
Sebastian told me to come down here for some bash script. :-)
22:46
Jehan_ZeMarmot
I have not read the pdf yet though.
22:46
Bertl
excellent! what script in particular?
22:47
Jehan_ZeMarmot
Bertl: no idea.
22:47
Jehan_ZeMarmot
He just told me some scripts were needed.
22:47
Jehan_ZeMarmot
I can write what you need.
22:47
Bertl
that sounds good!
22:47
Bertl
actually that sound great! :)
22:48
Jehan_ZeMarmot
Bertl: I guess I have to read this pdf manual though?
22:48
Jehan_ZeMarmot
He forwarded an email about PLL and I have no idea what it is. Apparently he could not tell me either.
22:48
Bertl
hehe, yeah, you probably have to read that to write a script
22:48
Jehan_ZeMarmot
I know about software, unfortunately not much about hardware.
22:49
Jehan_ZeMarmot
Ok. I'll read it now.
22:49
Bertl
do you have an idea what a PLL is?
22:49
Jehan_ZeMarmot
Bertl: none.
22:49
Jehan_ZeMarmot
I mean, I have from the name.
22:49
Jehan_ZeMarmot
Phase-Locked Loop.
22:49
Bertl
okay, let me give you a wikipedia supported crash course then
22:49
Jehan_ZeMarmot
But that does not help much. :-D
22:49
Bertl
http://en.wikipedia.org/wiki/Phase-locked_loop
22:50
Bertl
http://en.wikipedia.org/wiki/File:PLL_generic_inline.svg
22:50
Bertl
this is the basic building block for a PLL
22:50
Bertl
looks complicated, but the principle is rather simple
22:51
Bertl
you have a frequency at the input, a variable oscillator running inside producing the output and a feedback loop which adjusts the oscillator to 'match' the input somehow
22:52
Jehan_ZeMarmot
I see.
22:52
Jehan_ZeMarmot
And what is this output for?
22:52
Bertl
http://www.xilinx.com/support/documentation/user_guides/ug472_7Series_Clocking.pdf
22:53
Jehan_ZeMarmot
The pdf Seb sent me was: http://www.xilinx.com/support/documentation/application_notes/xapp888_7Series_DynamicRecon.pdf
22:53
Bertl
on page 71 you have an example for such a setup
22:53
Bertl
the output is used to control various building blocks in an FPGA
22:53
Bertl
in this specific case the HDMI output
22:54
Jehan_ZeMarmot
Ok. Looks complicated. :-)
22:54
Jehan_ZeMarmot
Am I supposed to read this second pdf too fully?
22:54
Jehan_ZeMarmot
114 pages.
22:54
Bertl
not really
22:54
Jehan_ZeMarmot
Cool.
22:54
Jehan_ZeMarmot
It is rainy outside, but still. :p
22:54
Bertl
but it will help to read the MMCM/PLL sections
22:55
Bertl
so basically chapter 3
22:55
Jehan_ZeMarmot
Basically though if I understand:
22:55
Jehan_ZeMarmot
This PLL has an input (that you can provide through a bash API you wrote) which controls an output.
22:56
Jehan_ZeMarmot
You want to have an easy script to set the input from a terminal, using this API.
22:56
Jehan_ZeMarmot
Is that it?
22:56
Bertl
not exactly
22:56
Jehan_ZeMarmot
Ok.
22:56
Bertl
it is a little more complicated, but we'll get there soon
22:57
Jehan_ZeMarmot
Ok. I guess I'll have to read these then.
22:57
Jehan_ZeMarmot
I was hoping for a shortcut. :p
22:57
Bertl
for us, the basic function of the PLL is to take a fixed input (100MHz clock)
22:57
Bertl
and generate a 'desired' output (50-250MHz) in a stable manner
22:58
Bertl
to do that, we use something called the DRP (dynamic reconfiguration port) for this PLL
22:58
Bertl
which allows us to 'reprogramm' the PLL from a bash script
22:59
Bertl
(by setting the DRP registers)
22:59
Jehan_ZeMarmot
I see.
22:59
Jehan_ZeMarmot
And you already have the base block for this?
22:59
Bertl
think of it like reprogramming a device by setting specific registers
22:59
Jehan_ZeMarmot
Like some low level API call.
23:00
Jehan_ZeMarmot
And you would like an higher level script, then?
23:00
Bertl
yes, the registers are mapped into memory, the platform is arm linux, so if you stick to shell scripting for example, there is a simple wrapper which uses the command devmem
23:01
Jehan_ZeMarmot
I see.
23:01
Bertl
let me upload the code, sec
23:02
Jehan_ZeMarmot
I see that devmem seems to be a busybox command.
23:04
Bertl
http://vserver.13thfloor.at/Stuff/AXIOM/SCRIPTS/cmv.func
23:04
Bertl
the last function 'pll_reg' will allow to read and write the DRP registers
23:04
Jehan_ZeMarmot
I can't find the same command in a normal GNU environment. But I could find a devmem2. Is it working the same?
23:05
Bertl
basically, but if you want to 'test' just replace devmem by a printf or echo
23:05
Bertl
(otherwise you'll overwrite your memory with garbage)
23:05
Bertl
alternatively you can use the busybox here:
23:05
Jehan_ZeMarmot
lol ok.
23:06
Bertl
http://vserver.13thfloor.at/Stuff/AXIOM/FAKE/
23:06
Bertl
which uses a 'fake' devmem
23:06
Bertl
i.e. it accesses /tmp/mem instead of /dev/mem
23:06
Bertl
https://wiki.apertus.org/index.php?title=Axiom_Alpha_Prototype#Reading_and_Writing_Sensor_Register
23:06
FergusL
hi Jehan_ZeMarmot
23:07
Jehan_ZeMarmot
Bertl: what are these binaries?
23:07
Bertl
that is busybox with a modified devmem
23:07
Bertl
you can build it yourself and just change "/dev/mem" to "/tmp/mem" in the source
23:08
Jehan_ZeMarmot
But like what, virtual machines?
23:08
Bertl
nah, those are 'native' binaries for the given architecture
23:08
Bertl
so 32/64 bit intel and arm
23:08
Jehan_ZeMarmot
You mean, I just execute them?
23:08
Bertl
usually yes, they are elf binaries :)
23:08
Jehan_ZeMarmot
I saw this.
23:09
Jehan_ZeMarmot
Ok. I'll try to run the x86-64 then.
23:10
Jehan_ZeMarmot
Ok my laptop did not explode.
23:10
Bertl
you need to make a symlink called devmem which points to this binary or you change the devmem to something like 'busybox.static.x86_64 devmem'
23:10
Bertl
(in the pll_reg wrapper)
23:10
Jehan_ZeMarmot
I see. Or simply an alias. :-)
23:11
FergusL
(are you french Jehan_ZeMarmot ?)
23:11
Jehan_ZeMarmot
FergusL: hi. Yes that appears to be what is on my passport. :-)
23:11
FergusL
fort bien
23:11
FergusL
simple question from what I recalled :)
23:13
Jehan_ZeMarmot
:-)
23:13
Jehan_ZeMarmot
Bertl: what does "cmv" mean?
23:13
FergusL
Cmosis Machine Vision I guess ?
23:13
Bertl
that is the first part of CMV12000 or CMV12K which is the sensor we use
23:15
Bertl
and interpreting those registers would be another task for a script or C program
23:15
Bertl
(that's why I asked what script you would like to work on :)
23:16
Jehan_ZeMarmot
Bertl: yes actually I'll need to know what you want.
23:16
Jehan_ZeMarmot
I mean like the spec of the end high level script.
23:17
Jehan_ZeMarmot
I would not "like to work" on anything, because I don't really much know the needs there. And I unfortunately don't have time to help fulltime right now.
23:17
Jehan_ZeMarmot
(maybe)
23:18
Jehan_ZeMarmot
But I can do what *you* need in priority if you have precise instructions. :-)
23:18
Jehan_ZeMarmot
Script or C, or whatever, I don't really care.
23:18
Bertl
for the PLL, it should be able to configure the PLL via DRP so that it outputs the desired frequency (given as argument)
23:18
Jehan_ZeMarmot
Bertl: can you give me a command line example of this?
23:19
Jehan_ZeMarmot
Something like: $ axiom-pll 100
23:19
Bertl
pll_out 1 150000000
23:19
Jehan_ZeMarmot
?
23:19
Jehan_ZeMarmot
What is 1?
23:19
Bertl
output 1 of the PLL
23:19
Bertl
(it has 6 outputs which are basically identical just different registers)
23:20
Jehan_ZeMarmot
Ok.
23:20
Jehan_ZeMarmot
But isn't it basically what are already doing the bash script I see.
23:21
Jehan_ZeMarmot
They take a number, compute an address (I imagine this number is 1 to 6) as first arg, and another which is the contents of the register as second.
23:21
Jehan_ZeMarmot
And write it to the computed address.
23:21
Bertl
the pll_reg sets a single register for the PLL, but a number of registers need to be configured to specific values based on the desired frequency to configure the PLL DRP
23:21
Bertl
http://www.xilinx.com/support/documentation/application_notes/xapp878.pdf
23:22
Bertl
http://www.xilinx.com/support/documentation/application_notes/xapp888_7Series_DynamicRecon.pdf
23:22
Bertl
(the latter one is the relevant one)
23:23
Bertl
we always desire 50% duty cycle and a 0° phaseshift
23:23
Bertl
and the PLL needs to be configured in such a way that the VCO is within the given bounds
23:26
Bertl
http://www.xilinx.com/support/documentation/data_sheets/ds187-XC7Z010-XC7Z020-Data-Sheet.pdf (page 46)
23:26
Bertl
so basically between 800 and 1600 MHz
23:31
dmj_nova1
left the channel
23:33
dmj_nova
joined the channel
23:38
Jehan_ZeMarmot
Ok. You know what. That's a lot of info. I'll need to process it (= read your stuff).
23:39
Jehan_ZeMarmot
Though I'm just not sure what to read first. You sent me like 4 pdf.
23:39
Bertl
basically the xapp888 should suffice
23:39
Bertl
the other stuff is for illustration
23:40
Jehan_ZeMarmot
Ok.
23:40
Bertl
from the XC7Z020 data sheet you only need the one page (46)
23:40
Bertl
and the fact that we have speed grade -1
23:43
Bertl
you'll probably need code to do bitmanipulation, you might find something usefull here: http://vserver.13thfloor.at/Stuff/AXIOM/SCRIPTS/bit.func
23:56
Jehan_ZeMarmot
Is it needed for tests? For actual running code?
23:57
Bertl
the PLL config? yes
23:57
Bertl
we need to adjust the HDMI clock to the output device
23:57
Jehan_ZeMarmot
left the channel
23:58
Jehan_ZeMarmot
joined the channel
23:58
FergusL
can't find a way to export properly from nthe goddamn Blender
00:11
Bertl
Jehan_ZeMarmot: did you get the answer to your question?
00:14
Jehan_ZeMarmot
Bertl: not really.
00:14
FergusL
troy_s: I'm trying to export from Blender to show the results of VNG
00:15
FergusL
but the damn thing bakes or marks something
00:15
FergusL
so it's blown out in any other softwrae
00:17
FergusL
I'm not adding any metadata in my files with oiio
00:17
FergusL
maybe that's what is missing ?
00:17
FergusL
in Blender I have to disable CM to get the right picture
00:20
Jehan_ZeMarmot
Bertl: do I care about MMCM?
00:20
Jehan_ZeMarmot
Or only PLL?
00:22
FergusL
Bertl: do you have Blender ?
00:23
Bertl
01:57 < Bertl> the PLL config? yes
00:23
Bertl
01:57 < Bertl> we need to adjust the HDMI clock to the output device
00:23
Bertl
basically MMCM and PLL are very similar except for the fractional output on MMCM
00:24
Bertl
in this specific case we do not care about MMCM, we use the PLL and it should suffice
00:24
Jehan_ZeMarmot
Ok.
00:24
Jehan_ZeMarmot
I hope you'll understand that I work in half-blind, because I don't understand half of the terms. Sorry if my questions look dumb.
00:25
Bertl
no problem, just ask if something is unclear
00:25
Jehan_ZeMarmot
So I'm mostly looking into these as "I have an input which produces an output".
00:26
Bertl
in our case, the input is fixed at 100MHz (for the PLL)
00:27
Bertl
in a simplified view, we basically multiply that by N
00:27
Bertl
and divide the result by M
00:27
Bertl
the device limits say that N must be between 8 and 16 for 100MHz input
00:28
Bertl
the the PLL itself limits M to 1 - 128
00:28
Bertl
so for example to get 50Mhz output, we can do
00:28
Bertl
N = 8 -> 800Mhz, M = 16 -> 50MHz out
00:29
Bertl
but N = 10 -> 1000MHz, M = 20 -> 50MHz out works as well
00:31
Jehan_ZeMarmot
The input is always the same, but we want to change the output, is that it?
00:31
Jehan_ZeMarmot
So we just have to compute a valid N and M for the desired output?
00:31
Bertl
so the script has to do two things: a) figure out the optimal N and M and b) configure the registers appropriately
00:32
Jehan_ZeMarmot
If there are several N and M value for the exact same result (as in your example above), is one more optimal than the other?
00:32
Jehan_ZeMarmot
Like a smaller N is better, or something.
00:32
Bertl
in a second step (not right now) we want to do that for all outputs in one setting, because the N is shared between all outputs
00:33
Bertl
so there can be only one N but many M (M0-M5)
00:33
Jehan_ZeMarmot
I see.
00:33
Bertl
in the case where we have different Ns the lowest N is probably the best
00:34
Bertl
(but it doesn't matter that much)
00:35
Jehan_ZeMarmot
Ok. But I have skimmed through xapp888 and there is no mention of N and M.
00:36
Jehan_ZeMarmot
There are a bunch of registers though. You told me above that there are 6 of them, but here they speak fo 16 + 1.
00:37
Bertl
I said there are 6 outputs not registers
00:37
Jehan_ZeMarmot
Actually MCMM doubles the eight clock output, but that still means PLL has 8 + 1.
00:37
Jehan_ZeMarmot
So I am lost.
00:37
Jehan_ZeMarmot
Bertl: oh ok.
00:38
Bertl
to be precise, there are at least 6 outputs, in the MMCM case there are 7 and there is also the feedback output
00:39
Bertl
the feedback output controls the 'N' (my pick of N and M was unfortunate in this regard, as it is called 'M' in the xapp)
00:40
Bertl
frequency multiplication (i.e. making that 'N' work) in hardware requires a feedback which 'divides' the output and feeds it back to the input
00:42
Bertl
in the DRP registers, the N and M is configured as high and low time
00:42
Bertl
which controls the duty cycle _and_ the divider
00:42
Jehan_ZeMarmot
Oh ok. No wonder I get lost if all the names change constantly. :p
00:43
Bertl
never said it would be simple :)
00:44
Jehan_ZeMarmot
" The appropriate lock bit settings are dependent on the feedback
00:44
Jehan_ZeMarmot
divider setting. This divider is set with the CLKFBOUT_MULT attribute when instantiating the
00:44
Jehan_ZeMarmot
MMCM_DRP module. "
00:44
Bertl
if you feel uncomfortable with the PLL complexity, maybe consider interpreting the CMV registers instead
00:45
Jehan_ZeMarmot
If I understand, the feedback is N.
00:45
Jehan_ZeMarmot
So that's also contradictory. You just told me N was the high time.
00:46
Bertl
no, what I said was, that N and M is controlled by setting the high and low time
00:46
Jehan_ZeMarmot
hmmm...
00:46
Bertl
i.e. to set N you need to set a high _and_ low time for this clock register
00:46
Bertl
and similar for M
00:46
Jehan_ZeMarmot
Ok.
00:47
Jehan_ZeMarmot
Wow. Maybe with examples, I'd understand better.
00:47
Jehan_ZeMarmot
I mean, real time examples.
00:48
Bertl
for example, to get a divide by 2, you set both high and low to 1
00:48
Jehan_ZeMarmot
s/real time/real life/
00:48
Bertl
that will give 50% duty cycle and a total of 2 periods
00:48
Jehan_ZeMarmot
That's an addition?
00:48
Bertl
___/``````\______/``````\___
00:49
Bertl
``` = high, ___ = low
00:49
Bertl
if you set high to 2 and low to 1 then you get:
00:50
Bertl
___/````````````\______/````````````\___
00:50
Bertl
which has 66% duty cycle and divides by 3
00:50
Bertl
but there is also a trick to get 50% duty cycle with a division of 3
00:50
Jehan_ZeMarmot
left the channel
00:51
Jehan_ZeMarmot
joined the channel
00:51
Bertl
what was the last line you got?
00:51
Jehan_ZeMarmot
14:50 < Bertl> which has 66% duty cycle and divides by 3
00:51
Bertl
02:50 < Bertl> but there is also a trick to get 50% duty cycle with a division of 3
00:52
Bertl
by setting the edge bit
00:52
Bertl
which basically changes when the low/high transision happens
00:53
Bertl
(this example is given in the Divider Group section of xap888)
00:55
Bertl
similar applies to any off-by-one setting, e.g. 4+5
00:55
Bertl
(with edge -> 4.5+4.5 = 9
00:56
Bertl
so the edge bit can be considered the lowest bit)
01:13
Jehan_ZeMarmot
Ok but I still don't understand. It is either assuming too much of knowledge of terms. Or not giving enough technical details.
01:13
Jehan_ZeMarmot
Like 1 "parameter" (high/low time for instance). They are registers?
01:14
Jehan_ZeMarmot
So 32 bit?
01:14
Jehan_ZeMarmot
Or is it 64? Or something else?
01:14
Bertl
the information is distributed over all the pdfs I linked
01:14
Bertl
in this specific case, the DRP registers are 16bit
01:15
Bertl
but we mapped them as 32bit memory locations
01:15
Bertl
(the upper 16bits are ignored)
01:15
Jehan_ZeMarmot
Ok.
01:15
Jehan_ZeMarmot
I see that the high/low times are flags in the DivReg register.
01:17
Bertl
they are bit ranges in the DivReg registers
01:17
Jehan_ZeMarmot
So DivReg is one of the 6 registers you told me about, right?
01:17
Bertl
each output has a DivReg
01:18
Jehan_ZeMarmot
Ok.
01:19
Jehan_ZeMarmot
Right. There was 6 outputs, not register. Sorry.
01:19
Jehan_ZeMarmot
But I think I'm starting to get it.
01:19
Jehan_ZeMarmot
So in your example above:
01:19
Jehan_ZeMarmot
< Bertl> pll_out 1 150000000
01:19
Bertl
the bit ranges can be seen like structures, i.e. bits 0-5 (6 bits) are a '6 bit value' for the low time
01:20
Jehan_ZeMarmot
I would basically update the 6 registers for this output.
01:20
Jehan_ZeMarmot
For instance I would update DivReg so that high and low time are the expected values.
01:20
Bertl
well, in this example only two of them the feedback and the 1st output
01:20
Bertl
but it is probably better to change that specification to
01:21
Bertl
pll_out 150000000 300000000 250000000
01:21
Jehan_ZeMarmot
Yes but if I recall, the feedback is determined by high and low time.
01:21
Jehan_ZeMarmot
So I would probably just update DivReg?
01:21
Bertl
which sets the first three outputs to 150, 300 and 250MHz respectively and the last three outputs to 100MHz or so
01:23
Bertl
you see the diagram on page 4 of the xapp888 ?
01:23
Jehan_ZeMarmot
I do.
01:23
Bertl
you basically have to figure out O0-O6 and M for a given set of 'desired' frequencies
01:24
Bertl
then you can simply convert the O0-O6 and M values to high/low + edge settings
01:24
Bertl
which can be simply programmed into the registers
01:26
Jehan_ZeMarmot
Ok. That's more a language I understand.
01:27
Jehan_ZeMarmot
Now the question is: how do I figure out O0 to 6 and M for a frequency?
01:28
Bertl
the PLL tries to match the feedback input to the input frequency
01:29
Bertl
so if your M is set to divide by 8, the VCO frequency will be adjusted to 8 times the input frequency, in our case 800MHz
01:32
Bertl
so it basically is a 'simple' optimization task, get the best matches for the given frequencies under the constraints that M is between 8 and 16 and O0-O6 between 1 and 128
01:33
Bertl
note that it would be good to output the selected frequencies (as result of M and Ox) for verification
01:34
Jehan_ZeMarmot
Ok I have to go make and eat some lunch. Let's continue later.
01:35
Jehan_ZeMarmot
Already 3PM. My stomach is too hungry. :-D
01:35
Jehan_ZeMarmot
Damn 3:30 even.
01:38
troy_s
FergusL: email me with screenshots
01:38
troy_s
FergusL: blown out suggests your values are getting mangled. Or adding a TRC
01:43
aombk
joined the channel
01:49
Bertl
wb aombk!
01:49
aombk
hi Bertl
03:02
troy_s
Bertl: Are there registers to twiddle for white balance on that sensor?
03:10
Bertl
no
03:20
Bertl
the panchromatic and RGB color version is identical in regard of registers and settings
03:58
Bertl
night everyone!
03:59
[1]Sasha
joined the channel
05:30
[1]Sasha
left the channel
07:09
Jehan_ZeMarmot
Me too I'll go.
07:09
Jehan_ZeMarmot
I'll have a look at this whole discussion and the pdf again and try to understand this all.
07:09
Jehan_ZeMarmot
See ya, all!
07:16
Jehan_ZeMarmot
left the channel
08:36
simpleirc1
joined the channel
08:41
simpleirc1
left the channel
08:48
se6bastian1
joined the channel
08:49
se6bastian1
left the channel
08:50
se6bastian1
joined the channel
08:50
se6bastian1
Hello
08:52
se6astian2
joined the channel
08:52
se6bastian1
left the channel
08:58
se6astian2
left the channel
09:37
mars_
na
09:37
mars_
-na
09:37
mars_
^^
09:45
Sasha_C
joined the channel
10:22
Sasha_C_
joined the channel
10:22
Sasha_C
left the channel
10:22
Sasha_C_
changed nick to: Sasha_C
11:04
aombk
live from the hive now http://aombk.attinom.net/otr/?page_id=131
11:59
Bertl
morning everyone!
12:07
se6bastian1
joined the channel
12:12
AndroUser
joined the channel
12:12
se6bastian1
left the channel
12:12
AndroUser
changed nick to: se6astian1
12:12
se6astian1
hello!
12:13
se6astian1
check the elphel development blog as to see what they do in response to our open modules concept
12:15
Sasha_C
interesting
12:16
Sasha_C
So multiple 393 boards can be linked together
12:18
se6astian1
left the channel
12:26
se6astian1
joined the channel
12:33
se6astian1
left the channel
12:43
Sasha_C
With their model, I imagine you'd have to tell elphel which components you want to connect to the main 393 board when ordering, and they then build the camera according to your specifications? Those pictures don't make it look like you could just 'connect' the pieces together yourself.
12:54
Bertl
I think this is mostly to illustrate that it _can_ be connected somehow :)
12:58
Sasha_C
i.c. Funny how Andrey keeps telling us that our design / plans won't work ;)
13:00
Bertl
does he?
13:01
Sasha_C
He has told us numerous times that we won't be successful, that our designs for a camera are unfeasible
13:02
Sasha_C
But I think he's saying this out of fear to dissuade us, thinking that we are his competition and will take customers away from his business
13:02
Sasha_C
Ask Sebastian about this in person perhaps...
13:02
Bertl
could you link me to those statements and/or do you have a compilation of the rationale behind his opinions?
13:03
Sasha_C
I'd have to dig through emails sent to the apertus mailing list
13:06
Sasha_C
quick example: This man is doing what he loves and doing it right. He's taking a calculated risk and he's not a danger to others. He's even wearing a helmet, probably only out of respect for you, so please show some respect back.
13:06
Sasha_C
This is a gift straight from Liam and Jack to us. Appreciate it and learn from it.
13:06
Sasha_C
Life is the long process of dying. I'd say Liam is dying pretty darn well.
13:06
Sasha_C
oops, sorry about that. copied wrong text from my clipboard
13:06
Sasha_C
http://nofilmschool.com/2013/10/open-source-apertus-camera-4k-global-shutter-super-35mm/
13:07
Sasha_C
Andrey has posted a comment at the very bottom of the page
13:07
Bertl
I was going to ask who Liam is :)
13:07
Sasha_C
my bad, i feel so silly now :)
13:08
Bertl
well, the comment is clear and the point is valid, no?
13:09
Sasha_C
true, I can't disagree
13:09
Bertl
and there are a number of possible answers like:
13:09
Bertl
- maybe because they don't want anybody else to use the interface
13:10
Bertl
- maybe because it is damn hard to connect different modules
13:10
Bertl
- maybe because it is better to do one big do-it-all thing and sell that
13:11
Bertl
we don't really know, we can only speculate but it definitely is something we should think about sooner or later
13:11
Sasha_C
i agree.
13:12
Bertl
so judging from this example, it might be worth to dig through his comments (and other comments) and sum them up somehow
13:12
Sasha_C
Yeah, indeed. I still recommend you ask Sebastian more about this business with Andrey (on a private channel perhaps. He's much more informed about this than I am)
13:12
Bertl
i.e. compile and distill the information
13:13
Sasha_C
yeah
13:13
Bertl
(ad sebastian, already did :)
13:13
Sasha_C
he's online now?
13:13
Bertl
don't know, I asked about it a few weeks ago
13:13
Sasha_C
right, i.c
13:15
Sasha_C
I'm about to go get some sleep, but I'll start compiling and distilling ASAP (as my time will permit)
13:16
Bertl
okay, it might make sense to motivate a few folks to watch/monitor certain channels/sources and do a compilation on a regular basis
13:17
Bertl
.. and sleep well :)
13:17
Sasha_C
yep, absolutely. I'll do my best to get others to follow suit
13:17
Sasha_C
thanks man, chat again soon
13:18
Sasha_C
left the channel
13:19
troy_s
Bertl: So no native method to shift white balance?
13:19
troy_s
Bertl: Because that implies stuffing a matrix operation into the board (with the Bradford transform) so that folks can dial the WB.
13:20
Bertl
I don't think that this is such a problem
13:20
Bertl
and no, I don't think the sensor is in any way color aware
13:21
Bertl
all settings apply to all photosites (only relevant differentiation is between top and bottom readout)
13:39
Bertl
troy_s: so a general matrix would suffice for any white balance problem?
13:40
Bertl
would that apply before or after a (per channel?) gamma correction
13:58
dmj_nova
left the channel
14:00
dmj_nova
joined the channel
14:41
troy_s
left the channel
14:43
rexbron
left the channel
15:38
rexbron
joined the channel
15:38
rexbron
left the channel
15:38
rexbron
joined the channel
15:42
Bertl
welcome rexbron!
15:42
rexbron
hey Bertl
15:44
rexbron
Bertl: are you the project lead? troy_s mentioned I might like hanging here
15:45
Bertl
well, no, but I'm working on the prototype, so consider me the technical prototype lead :)
15:46
Bertl
off for dinner now ... bbl
15:46
rexbron
Bertl: I wear a lot of hats in the camera department, 1st AC, DIT and sometimes DP.
16:16
Bertl
back ...
16:17
Bertl
rexbron: I'm not familiar with the camera department acronyms
16:18
Bertl
for me AC is alternating current and I don't have any association with DIT or DP :)
16:18
rexbron
Bertl: 1st Assistant Camera, Digitial Imaging Technician and Director of Photography. here is a link to my reel http://aehunter.net/video/Andrew_Hunter_Demo_Reel_Aug_22nd.mp4
16:19
Bertl
hmm .. my browser (firefox) says: Video can't be played because the file is corrupt, but let me try to download it :)
16:20
mars_
works in chrome
16:20
Bertl
so, you're doing a lot of stuff and something interested you enough in axiom/apertus to find your way here ...
16:21
Bertl
mars_: yeah I guess mplayer will be able to handle it ...
16:22
rexbron
Bertl: troy_s is a old friend of mine, we both have an interest in FOSS as well as cinematography
16:22
Bertl
sounds good!
16:23
rexbron
Bertl: I also designed a run stop controller for cameras with the LANC protocol but ended up stopping making them after the first production run. I'm not an electrical engineer or embeded systems guy so I couldn't diagnose some intermitency problems.
16:23
rexbron
and on set, reliability is paramount
16:24
Bertl
so this demo reel is basically like a set-card just for an AC/DIT/DP, yes?
16:24
rexbron
Bertl: DP, AC and DITs get hired on reputation not with show reels
16:24
rexbron
mostly to show people "this is what I can do" visually
16:25
Bertl
I see, so more to give an idea of the style?
16:27
Bertl
just watched it, looks nice, for me almost like a music video or a movie teaser (please don't take my comments the wrong way, I'm completely new to the camera department)
16:29
rexbron
Thats generally the idea :)
16:29
Bertl
what's a run-stop controller?
16:30
rexbron
The footage is a mix of Red One MX, Blackmagic Cinema Camera and a little 7D
16:30
Bertl
the first two I recognize as camera brands, I presume the last one is a camera as well (see, I've already learned a little about cameras :)
16:32
rexbron
Bertl: allows for starting and stopping the rec function of a camera via a remote focus device. Since LANC is a serial protocol, it needed to be a little electronic adapter that listened for a switch on one side and sent out a lanc command on the other
16:32
rexbron
Bertl: the Canon 7D but that footage was from 2010 when DSLRs were a new thing ;)
16:33
Bertl
I see LANC is a proprietary? interface created by Sony for their eqippment
16:34
rexbron
not really propritary, just no official documentation. The protocol was reverse engineered off the wire
16:34
rexbron
Canon and Blackmagic both use LANC but call it something else
16:34
Bertl
not surprising with 9600n8
16:35
rexbron
Bertl: refering to baud?
16:35
Bertl
yup
16:35
Bertl
and that failed in what way?
16:35
Bertl
sounds rather straight forward to me, today probably a job for a raspberry pi
16:36
rexbron
Bertl: I think the adapter would get out of sync with the camera
16:36
rexbron
but I have no EE background
16:37
Bertl
okay, probably a minor issue then
16:37
rexbron
I implimented it on an Atmel Atiny85 in an Ardunio environment
16:38
rexbron
Bertl: for you ;) for me, I just kinda shrugged and had to walk away from the project. I can't sell something I don't understand
16:38
rexbron
but they were used on Need for Speed
16:39
Bertl
did you open source the project?
16:39
rexbron
no but I could
16:40
Bertl
I guess somebody would identify the issue pretty soon and fix it
16:40
rexbron
maybe but they would need hardware infront of them
16:40
Bertl
especially if you explain what goes wrong where
16:40
rexbron
I would think
16:41
Bertl
I guess so, especially if it is special hardware
16:41
Bertl
but sounded more like an arduino with a few cables :)
16:41
rexbron
not super special, the initial dev board was an arduino :)
16:41
rexbron
its mostly that I designed a custom pcb to reduce size
16:42
rexbron
(also a first for me)
16:42
rexbron
the first 10 units took me 8 hours to hand solder
16:42
Bertl
so if the code works for an unmodified arduino, I guess folks interested will have the hardware available
16:43
rexbron
Bertl: provided they have a Canon C300 to test on. The othe reason I walked away was PLC electronics made the same thing (after I did) and did it better lol
16:44
Bertl
happens
16:44
Bertl
so any specific parts of axiom (alpha) you are interested in or you would like to help with?
16:45
rexbron
ergonomics ;)
16:45
rexbron
bbl, just got a call for a rental I need to deliver
16:46
Bertl
okay, I'm leaving shortly, but I should be back in 90 minutes
16:54
se6astian
joined the channel
17:06
se6astian
good evening
17:08
Bertl
evening ... I'm off now .. back in 90 or so ...
17:12
dmj_nova
left the channel
17:22
dmj_nova
joined the channel
17:36
dmj_nova
left the channel
17:37
dmj_nova
joined the channel
17:40
philippejadin
joined the channel
18:03
se6astian
preparing a new article
18:03
se6astian
https://www.apertus.org/apertus-now-accepts-bitcoins
18:04
se6astian
does anyone have a bitcoin wallet and send me some tiny amount?
18:04
se6astian
I dont want to announce this before I have seen it actually working at least once :)
18:04
se6astian
*and can send me...
18:07
dmj_nova
left the channel
18:12
philippejadin
I don't have any bitcoin money ...
18:12
philippejadin
how do you convert those donation to money? Do we even do that ?
18:15
se6astian
there is an echange service
18:15
philippejadin
ok, just saw that you can convert to local money. Weird stuff :-)
18:15
se6astian
its basically a foreign currency
18:15
se6astian
with quite huge value fluctuations currently
18:15
se6astian
its an experiment
18:15
se6astian
not that we will gather a huge amount of donations that way
18:15
se6astian
its more the message that we want to be part of this
18:50
dmj_nova
joined the channel
19:10
dmj_nova
left the channel
19:10
dmj_nova1
joined the channel
19:19
philippejadin
left the channel
19:22
Bertl
back now ...
19:23
Bertl
the fluctuations are not the huge anymore, btw
19:24
Bertl
and the value is still increasing, so it makes perfect sense to allow that
19:25
se6astian
when I checked the value last week it was around 200 $, now its around 300$
19:25
se6astian
did you ever take a look at the mining process
19:26
se6astian
I was quite surprised when I saw that people designed entire ASICS and FPGA stacks just for mining bitcoins
19:27
Bertl
yep
19:27
dmj_nova
joined the channel
19:28
se6astian
5000$ http://www.butterflylabs.com/monarch/
19:31
dmj_nova1
left the channel
19:35
rexbron
Bertl: to pick up where we left off, I can offer real world production shooting experience as both a DP and AC.
19:36
Bertl
sounds good, but at the moment, we have just a single prototype with a broken sensor
19:36
Bertl
(there will be a second one soon to shoot actual footage)
20:49
se6astian
ok, time for bed
20:49
se6astian
good n8!
20:49
se6astian
left the channel
20:49
[1]Sasha
joined the channel
21:01
[1]Sasha
Good morning everyone :)
21:07
Bertl
morning [1]Sasha!
21:08
Bertl
rexbron: nevertheless, I appreciate addition information and comments during development ... so hang around and join whenever you think you can add something
21:08
Bertl
*additional