←back to thread

448 points dllu | 3 comments | | HN request time: 0.641s | source
Show context
londons_explore ◴[] No.45005958[source]
Notable that nearly all cameras can be turned into a line scan camera if you can get your software low level enough to send commands to write the registers on the sensor.

You simply set the maximum and minimum readout rows to be 1 apart, and suddenly your 'frame' rate goes up to 60,000 FPS where each frame is only a pixel high.

You might have to fiddle with upper and lower 'porch' regions to make things fast too.

You must have the line along the long dimension of the image - the hardware has no capability to do the short edge.

replies(1): >>45008194 #
1. decae ◴[] No.45008194[source]
How is this possible? What sort of camera can do this?
replies(1): >>45011223 #
2. londons_explore ◴[] No.45011223[source]
Almost any camera. Eg. The OV2640.

But you need to have really low level access to registers. Said registers are normally configured by i2c (aka SCCB).

In Linux I think you'd need to patch a driver to do it for example.

replies(1): >>45011610 #
3. decae ◴[] No.45011610[source]
That sounds like a lot of fun to play around with, thank you!