npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

node-firefly2

v0.0.41

Published

node-firefly2

Downloads

21

Readme

node-firefly2

nodejs binding for firefly 2 camera

Introduction: This is a wrapper for the FlyCapture2 Api from Point Grey research, http://www.ptgrey.com/support/downloads/documents/Doxygen/html/annotated.html. Currently It only runs only linux, however Windows and Mac "should" be easy to support. Unfortunatly, Point grey requires one to create a login before downloading the sdk which is at http://www.ptgrey.com/support/downloads/downloads_admin/Index.aspx

Intallation:

Note: this only works on linux at the moment. Maybe someone could help with the windows version. Hint Hint Nudge Nudge.

  • Download and install Point grey SDK from http://www.ptgrey.com/support/downloads/downloads_admin/Index.aspx
  • cd node-firefly2
  • npm install

Example:

    var addon = require('../build/Release/addon');
    var fs = require('fs');
    var sys = require('sys');
    var Png = require('png').Png;
    var timer = require('../timer.js').timer
    //
    var cam = new addon.FireFlyWrap();
    console.log( 'num cameras' , cam.getNumCameras())
    console.log("start Camera 0 ", cam.startCamera())
    //
    //set some default parameters.
    cam.autoGain(true);
    cam.autoExposure(true);
    cam.autoWhiteBalance(true);
    cam.triggerOff(false);//True uses the cable. Note don't use true unless you have a cable. It will wait forever. 
    //
    //take a few just to get it warmed up. might help?
    cam.takePhoto();cam.takePhoto();cam.takePhoto();cam.takePhoto()
    var pic = cam.takePhoto();//actually take the picture
    var png2 = new Png(pic,640,480,'rgb')
    var png_image = png2.encodeSync();
    fs.writeFileSync('../pics/png_test.png', png_image.toString('binary'), 'binary');
    

API:

  • var cam = new addon.FireFlyWrap(); // allways start with this

  • cam.getNumCameras() // returns the number of cameras found

  • cam.startCamera() // starts using the first camera

  • cam.autoGain(false); // turn gain on or off

  • cam.autoExposure(false); // turn auto shutter speed on or off

  • cam.autoWhiteBalance(false); // turn auto white balance on or off

  • cam.gain(2); // manually sets the gain. Note that auto gain must be off for this to work

  • cam.exposure(90); // manually sets shutter speed. in milli seconds

  • cam.triggerOff(true);//True is off, waits for hardware trigger. If no trigger is connected it will wait forever.

  • cam.frameRate(); // sets the fram rate to 90 fps

  • cam.triggerDelay(0.000)// takes a number in seconds to delay between when the cable trigger fires and when the picture is taken.

  • cam.takePhoto(); // takes a picture and returns a node::buffer