Free 186 More Best Homemade Tools eBook:  
Get 2,000+ tool plans, full site access, and more.

User Tag List

Results 1 to 8 of 8

Thread: Controlling a RunCam2 Camera Directly from an Arduino

  1. #1
    Supporting Member rgsparber's Avatar
    Join Date
    Nov 2012
    Location
    Phoenix, AZ
    Posts
    1,278
    Thanks
    733
    Thanked 2,763 Times in 650 Posts

    rgsparber's Tools

    Controlling a RunCam2 Camera Directly from an Arduino

    A RunCam2 camera is popular with people that build and fly hobby drones. It is low cost and high performance. However, it has buttons to be pushed before it can start recording video or stills.

    A Pro Micro is an Arduino compatible computer system that is popular with computer and electronics hobbyists. It is low cost and high performance.

    What could be a more natural pairing than to have a Pro Micro control a RunCam2? Well, it turned out to be a fun, and useful, challenge.

    If you are interested, please see

    https://rick.sparber.org/electronics...lingRunCam.pdf


    Your comments are welcome. All of us are smarter than any one of us.


    Thanks,

    Rick

    186 More Best Homemade Tools eBook
    Rick

  2. The Following 5 Users Say Thank You to rgsparber For This Useful Post:

    bruce.desertrat (Apr 25, 2019), DIYer (Apr 24, 2019), high-side (Apr 25, 2019), Jon (Apr 25, 2019), Seedtick (Apr 25, 2019)

  3. #2
    Content Editor
    Supporting Member
    DIYer's Avatar
    Join Date
    Aug 2013
    Posts
    3,056
    Thanks
    772
    Thanked 1,850 Times in 1,652 Posts


    Thanks rgsparber! We've added your Arduino Camera Control to our Photography and Videography category,
    as well as to your builder page: rgsparber's Homemade Tools. Your receipt:




    2000 Tool Plans

  4. #3
    Supporting Member garage nut's Avatar
    Join Date
    Jul 2017
    Location
    Port Elizabet, SA
    Posts
    246
    Thanks
    92
    Thanked 433 Times in 109 Posts

    garage nut's Tools
    Great project, I love to build little projects with Arduino boards.

  5. #4
    Supporting Member tonyfoale's Avatar
    Join Date
    Nov 2016
    Location
    Spain
    Posts
    1,549
    Thanks
    679
    Thanked 2,628 Times in 705 Posts

    tonyfoale's Tools
    Nice job Rick.
    I have a question that maybe your knowledge and researches can answer, but maybe it is outside of what you have looked at.
    I want to get a fast video camera controlled by an Arduino or similar, preferably +120 fps although +60 fps would do. That is not too difficult to find if I only want to start and stop videoing. The crunch is that I want to go beyond that and use the micro to control the timing of each frame.

    Say I have a 60 fps device, it will take one frame every 17 ms. when free running. What I want to do is for example, take the first frame (on orders from the micro) then at some future time (greater than 17 ms) the micro will order another frame. During a single video the variation between the timing of each frame will not vary much. That is, the micro might order a string of frames like 18.1, 18.05,18,......,17.9, 18.01..... ms after the preceding frame.
    The software is already done, it takes input from an external source, does some calcs. and spews out the orders
    So my questions boils down to "Do you know of any of these small cameras that can have each frame fired from an external signal, or be hacked to do that?

  6. #5
    Supporting Member Christophe Mineau's Avatar
    Join Date
    Jul 2014
    Location
    France, Brittany !
    Posts
    913
    Thanks
    825
    Thanked 1,687 Times in 481 Posts

    Christophe Mineau's Tools
    Hi Tony, I don't know if it will meet your specs but for sure the easy and flexible tool for doing that is a Raspberry Pi with its built-in camera which is quite good. But your fps rate expectation may be a bit ambitious.
    Anyway, on the Pi, recording can be started with any parameter by a simple script, which can also interact with the external world through the gpio.

  7. #6
    Supporting Member tonyfoale's Avatar
    Join Date
    Nov 2016
    Location
    Spain
    Posts
    1,549
    Thanks
    679
    Thanked 2,628 Times in 705 Posts

    tonyfoale's Tools
    Quote Originally Posted by Christophe Mineau View Post
    Hi Tony, I don't know if it will meet your specs but for sure the easy and flexible tool for doing that is a Raspberry Pi with its built-in camera which is quite good. But your fps rate expectation may be a bit ambitious.
    Anyway, on the Pi, recording can be started with any parameter by a simple script, which can also interact with the external world through the gpio.
    I was half expecting that I would have to go with the Pi, which is why I mostly used the word "micro". I have no experience with the Pi but that could be rectified easily enough if necessary. If my frame rate requirement was low there are many cameras which have "high" repeat rates for taking stills which are easy enough to control but the repeat rates are just too slow.
    You say that recording can be started by the Pi, but is that possible on a frame by frame basis?

  8. #7
    Supporting Member Christophe Mineau's Avatar
    Join Date
    Jul 2014
    Location
    France, Brittany !
    Posts
    913
    Thanks
    825
    Thanked 1,687 Times in 481 Posts

    Christophe Mineau's Tools
    I'm not sure to fully understand what you want to do, but the Raspy allows to capture stills photo as well as video streams, I don't know much by myself about the details, but there are a lot of documentation available.
    If controlled basically by the shell, you can use the raspistill or raspivid commands, but if you control it with python or cpp, you can do much more things.
    It's the open world, so several drivers are available and you can develop your own if you wish.

    In my experience, (I use the black camera for night wildelife photo captures), you need to control the exposure time and capturing too fast can lead to some disappointing results.
    When you say 120 fps, I fear this would be too fast, but actually, with good light, maybe it's possible, I couldn't say.

    Anyway, it's a lot of fun playing with that, especially if you pay interrest to OpenCV, which is a lib able to recognize shapes on the captured images.
    Cheers !
    Christophe
    ________________________________________________________________
    Visit my Website : http://www.labellenote.fr/
    Facebook : La Belle Note
    All my personal works, unless explicitly specified, are released under
    Creative Commons BY-NC-SA license.

  9. #8
    Supporting Member rgsparber's Avatar
    Join Date
    Nov 2012
    Location
    Phoenix, AZ
    Posts
    1,278
    Thanks
    733
    Thanked 2,763 Times in 650 Posts

    rgsparber's Tools
    Quote Originally Posted by tonyfoale View Post
    Nice job Rick.
    I have a question that maybe your knowledge and researches can answer, but maybe it is outside of what you have looked at.
    I want to get a fast video camera controlled by an Arduino or similar, preferably +120 fps although +60 fps would do. That is not too difficult to find if I only want to start and stop videoing. The crunch is that I want to go beyond that and use the micro to control the timing of each frame.

    Say I have a 60 fps device, it will take one frame every 17 ms. when free running. What I want to do is for example, take the first frame (on orders from the micro) then at some future time (greater than 17 ms) the micro will order another frame. During a single video the variation between the timing of each frame will not vary much. That is, the micro might order a string of frames like 18.1, 18.05,18,......,17.9, 18.01..... ms after the preceding frame.
    The software is already done, it takes input from an external source, does some calcs. and spews out the orders
    So my questions boils down to "Do you know of any of these small cameras that can have each frame fired from an external signal, or be hacked to do that?
    Tony,

    You have an interesting problem. Glad to see others coming forward with great answers.

    Rick



    186 More Best Homemade Tools eBook
    Rick

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •