1.3 megapixel camera
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 928
Digital Camera Protocol 0.0
Digital Camera Protocol is another command-line utility for DC21x cameras, this one looks and works just like ftp command. more>>
Digital Camera Protocol is another command-line utility for DC21x cameras, this one looks and works just like "ftp" command. Not written by me, but uses some of my low-level Kodak code from digicam.
<<less Download (0.015MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1102 downloads
Python Traffic Camera Analyzer
Python Traffic Camera Analyzer is an automated traffic camera congestion analysis tool. more>>
Python Traffic Analyzer is a Python base class and sample driver script written to retrieve and manipulate images from the TrafficLand cameras and calculate a numeric value representing the current traffic flow.
PyTrAn, an example driver script, an image collector and an image mask creator are available for download from the link shown at the bottom. To use the PyTrAn package begin by choosing a camera that you wish to analyze, for this example well use the camera captioned above.
We want to construct a mask over the area of the image that we are interested in, namely the road. In this particular example the road takes up the majority of the image but that is not always the case.
We will apply the mask over captured images to fine tune the area over which we are looking for movement. To create the mask we will first need to collect a sequential series of snapshots from the target camera. The image_collector.py script was written for this task:
$ mkdir mask_200003
$ cd mask_200003
$ ../image_collector.py 200003 30
Collecting 30 images...
30
Done.
The script is hard coded to capture images on a 2-second delay. The delay is necessary to ensure the image has changed. I believe 2-seconds to be the absolute minimum. Once complete, 30 images numbered 1 through 30 will be created in the current directory.
We construct a mask from these captured images by creating a diff-image for each sequential image pair and then adding each diff-image together. Naturally, a script was written to automate this task as well:
$ ../mask_maker.py 1 30
Creating a diff for each sequential image pair.
Diffing 29
Creating the initial mask from the first image pair.
Adding the rest of the diffs to the mask.
Masking 29
Done.
A number of .diff files are generated in this process. These files repesent the movement between individual sequence pairs.
The .diff files are simply intermediary files, the important bit is the mask file, which is generated as the sum of all differences.
The mask file may be dirty (as in this case) and require manual cleanup. The basic shape of the road however is clearly visible, evidence that we can with minimal effort automate the mask generation process. Also, this run was conducted at night, day-time images yield better results.
There are a few final steps we need to take before we can use the example PyTrAn driver script. First we need to convert the mask to ASCII (noraw) format:
$ pnmnoraw mask > mask_200003.ascii
Then we need to open an ImageMagick display window and get its X-window-ID using xwininfo. Finally, update camera_id and window_id in pytran_sampling.py and launch the driver:
$ ../pytran_sampling.py
DEBUG> grabbing frame from camera 200003
DEBUG> rotating image: pytran.this > pytran.last
DEBUG> refreshing image in 3 secs
taking a 5 minute sample at various thresholds.
DEBUG> grabbing frame from camera 200003
DEBUG> generating frame diff on pytran.last, pytran.this
DEBUG> displaying image: pytran.diff
DEBUG> converting pytran.diff to ascii
DEBUG> calculating traffic ratio...
ratio[5]: 55%
DEBUG> calculating traffic ratio...
ratio[10]: 52%
...
...
5 minute sample[5]: 67.88
5 minute sample[10]: 42.66
5 minute sample[15]: 30.57
5 minute sample[20]: 23.03
5 minute sample[25]: 18.39
5 minute sample[30]: 14.79
5 minute sample[35]: 12.42
5 minute sample[40]: 10.53
5 minute sample[45]: 9.06
5 minute sample[50]: 7.85
The sampling script will take 5 minute samples at varying color thresholds. The optimal threshold must be manually chosen. Furthermore, you will need to sample the traffic ratios during both heavy and light traffic times to get a good feel for your acceptable range. Also, keep in mind that the traffic ratio value is simply the percent change detected, or in other words the movement detected within the masked region. This means that a completely empty road will register similar values to a road so congested it looks like a parking lot. The time of day can be combined with the traffic ration to determine the logical truth.
With this task implemented and abstracted more complex systems can be built. When I find the time Id like to create a system that will take multiple potential travel routes and times, and during the travel time e-mail the traveler with the best route to take. Another idea I had would be to record the traffic flow values for each camera, for each day and for each half hour interval. Travelers and other interested parties can then analyze traffic patterns to determine the fastest route dependant on date/time.
<<lessPyTrAn, an example driver script, an image collector and an image mask creator are available for download from the link shown at the bottom. To use the PyTrAn package begin by choosing a camera that you wish to analyze, for this example well use the camera captioned above.
We want to construct a mask over the area of the image that we are interested in, namely the road. In this particular example the road takes up the majority of the image but that is not always the case.
We will apply the mask over captured images to fine tune the area over which we are looking for movement. To create the mask we will first need to collect a sequential series of snapshots from the target camera. The image_collector.py script was written for this task:
$ mkdir mask_200003
$ cd mask_200003
$ ../image_collector.py 200003 30
Collecting 30 images...
30
Done.
The script is hard coded to capture images on a 2-second delay. The delay is necessary to ensure the image has changed. I believe 2-seconds to be the absolute minimum. Once complete, 30 images numbered 1 through 30 will be created in the current directory.
We construct a mask from these captured images by creating a diff-image for each sequential image pair and then adding each diff-image together. Naturally, a script was written to automate this task as well:
$ ../mask_maker.py 1 30
Creating a diff for each sequential image pair.
Diffing 29
Creating the initial mask from the first image pair.
Adding the rest of the diffs to the mask.
Masking 29
Done.
A number of .diff files are generated in this process. These files repesent the movement between individual sequence pairs.
The .diff files are simply intermediary files, the important bit is the mask file, which is generated as the sum of all differences.
The mask file may be dirty (as in this case) and require manual cleanup. The basic shape of the road however is clearly visible, evidence that we can with minimal effort automate the mask generation process. Also, this run was conducted at night, day-time images yield better results.
There are a few final steps we need to take before we can use the example PyTrAn driver script. First we need to convert the mask to ASCII (noraw) format:
$ pnmnoraw mask > mask_200003.ascii
Then we need to open an ImageMagick display window and get its X-window-ID using xwininfo. Finally, update camera_id and window_id in pytran_sampling.py and launch the driver:
$ ../pytran_sampling.py
DEBUG> grabbing frame from camera 200003
DEBUG> rotating image: pytran.this > pytran.last
DEBUG> refreshing image in 3 secs
taking a 5 minute sample at various thresholds.
DEBUG> grabbing frame from camera 200003
DEBUG> generating frame diff on pytran.last, pytran.this
DEBUG> displaying image: pytran.diff
DEBUG> converting pytran.diff to ascii
DEBUG> calculating traffic ratio...
ratio[5]: 55%
DEBUG> calculating traffic ratio...
ratio[10]: 52%
...
...
5 minute sample[5]: 67.88
5 minute sample[10]: 42.66
5 minute sample[15]: 30.57
5 minute sample[20]: 23.03
5 minute sample[25]: 18.39
5 minute sample[30]: 14.79
5 minute sample[35]: 12.42
5 minute sample[40]: 10.53
5 minute sample[45]: 9.06
5 minute sample[50]: 7.85
The sampling script will take 5 minute samples at varying color thresholds. The optimal threshold must be manually chosen. Furthermore, you will need to sample the traffic ratios during both heavy and light traffic times to get a good feel for your acceptable range. Also, keep in mind that the traffic ratio value is simply the percent change detected, or in other words the movement detected within the masked region. This means that a completely empty road will register similar values to a road so congested it looks like a parking lot. The time of day can be combined with the traffic ration to determine the logical truth.
With this task implemented and abstracted more complex systems can be built. When I find the time Id like to create a system that will take multiple potential travel routes and times, and during the travel time e-mail the traveler with the best route to take. Another idea I had would be to record the traffic flow values for each camera, for each day and for each half hour interval. Travelers and other interested parties can then analyze traffic patterns to determine the fastest route dependant on date/time.
Download (0.003MB)
Added: 2005-05-20 License: GPL (GNU General Public License) Price:
1620 downloads
Camera Life 2.6
Full Decent Camera Life is a photo gallery system. more>>
Camera Life (FDCL) is a system for cataloging your photo collection. Camera Life project gives users the ability to search your archive by albums that you set up, or by directory structure.
Camera life (FDCL) is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
FDCL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Chatterbox; see the file LICENSE. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Or visit http://www.gnu.org/licenses/gpl.html
Main features:
Self Updating
- When you add photos to the photo directory you specified when installing, FDCL will cache, thumnail and make public all such photos (Administration: File Manager). You can allow certain user classes to maintain your site by editing the photo descriptions and delete photos that suck.
Topic view and Folder View
- On the main page, users are presented with the option of viewing photos by topic or folder. In topic view, albums (collections of like photos) are categorized by topic (ex: People, Things, My Vacataions).
- Folder view is hierrical and based on the directory structure of the photos. When viewing a photo, users are given the option to view others photos in the same topic or folder.
Image deletion
- When viewing a photo, you have the option to delete it. When a user deletes an image, FDCL actually flags it as non-public. An admin has to actually erase it (Administration: File Manager). And when you erase it, FDCL just moves it to the erased folder. FDCL will never rm your photos. With this in mind, it is sensible to allow users to delete offensive images and admins to erase them.
Themes
- You can easily change the look of the entire site by choosing a different theme (Administration: Customize: Themes). Official themes can be downlaoded from http://fdcl.sourceforge.net other themes are available at your local supermarket (or not).
Users
- Users can anonyously sign up an account. The admins choose which accounts to give privileges to. All authentication is done by random cookies saved in the DB and passwords are salted and hashed.
Logging
- Some actions are logged to the logs table. This is done via the db_log function. You can view the logs (Administration: Log Viewer) and see the audit trail to modifications to the ssytem. You can then rollback specific action (like renaming a photo) by simply choosing the previous state to go back to.
Enhancements:
- This version adds support for Gallery Remote API, microformats, sitemaps, OpenSearch, and RSS feeds, and supports iPhoto photocasting.
- There are now photo keywords with a del.icio.us-like keyword editor.
- Checkpoints allow you to review and approve changes to the site.
- Your users can now order prints online.
- There are also big changes under the hood and some security enhancements.
<<lessCamera life (FDCL) is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
FDCL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Chatterbox; see the file LICENSE. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Or visit http://www.gnu.org/licenses/gpl.html
Main features:
Self Updating
- When you add photos to the photo directory you specified when installing, FDCL will cache, thumnail and make public all such photos (Administration: File Manager). You can allow certain user classes to maintain your site by editing the photo descriptions and delete photos that suck.
Topic view and Folder View
- On the main page, users are presented with the option of viewing photos by topic or folder. In topic view, albums (collections of like photos) are categorized by topic (ex: People, Things, My Vacataions).
- Folder view is hierrical and based on the directory structure of the photos. When viewing a photo, users are given the option to view others photos in the same topic or folder.
Image deletion
- When viewing a photo, you have the option to delete it. When a user deletes an image, FDCL actually flags it as non-public. An admin has to actually erase it (Administration: File Manager). And when you erase it, FDCL just moves it to the erased folder. FDCL will never rm your photos. With this in mind, it is sensible to allow users to delete offensive images and admins to erase them.
Themes
- You can easily change the look of the entire site by choosing a different theme (Administration: Customize: Themes). Official themes can be downlaoded from http://fdcl.sourceforge.net other themes are available at your local supermarket (or not).
Users
- Users can anonyously sign up an account. The admins choose which accounts to give privileges to. All authentication is done by random cookies saved in the DB and passwords are salted and hashed.
Logging
- Some actions are logged to the logs table. This is done via the db_log function. You can view the logs (Administration: Log Viewer) and see the audit trail to modifications to the ssytem. You can then rollback specific action (like renaming a photo) by simply choosing the previous state to go back to.
Enhancements:
- This version adds support for Gallery Remote API, microformats, sitemaps, OpenSearch, and RSS feeds, and supports iPhoto photocasting.
- There are now photo keywords with a del.icio.us-like keyword editor.
- Checkpoints allow you to review and approve changes to the site.
- Your users can now order prints online.
- There are also big changes under the hood and some security enhancements.
Download (MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
819 downloads
Camera_AXIS 0.1
Camera_AXIS is a Java application for viewing images generated by an AXIS 2100 network camera. more>>
Camera_AXIS is a Java application for viewing images generated by an AXIS 2100 network camera. The camera generates a video stream in MJPG format.
The java source code can be browsed online or downloaded in tgz format. The application uses the Base64 encoder from Robert Harder (distributed with Camera_AXIS). Installation is simple:
make
Start the application using te command:
make test
Configuration parameters are saved in .java.cfg. This file is created the first time you start the application and contains the URL of the camera and the user id and password of the camera administrator. Without the id and/or the password, you can still view images from the camera, but you wont be able to change its settings. Proxy settings are taken from the http_proxy environment variable (if present).
A precompiled jar-file is also available. Execute it with java -jar AXIS.jar.
<<lessThe java source code can be browsed online or downloaded in tgz format. The application uses the Base64 encoder from Robert Harder (distributed with Camera_AXIS). Installation is simple:
make
Start the application using te command:
make test
Configuration parameters are saved in .java.cfg. This file is created the first time you start the application and contains the URL of the camera and the user id and password of the camera administrator. Without the id and/or the password, you can still view images from the camera, but you wont be able to change its settings. Proxy settings are taken from the http_proxy environment variable (if present).
A precompiled jar-file is also available. Execute it with java -jar AXIS.jar.
Download (0.013MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1198 downloads
Engauge Digitizer 4.1
Engauge Digitizer converts graph and map images into numbers. more>>
Engauge Digitizer project is digitizing software that converts an image showing a graph or map into numbers. The image file can come from a scanner, digital camera, or screenshot. The numbers can be read on the screen, and written or copied to a spreadsheet.
Highlights for beginners include an intuitive interface and extensive context-sensitive documentation. Highlights for experts include compensation for image distortion, cartesian and polar coordinates, linear and logarithmic coordinates, automatic scanning, graphical previews, and browser help.
<<lessHighlights for beginners include an intuitive interface and extensive context-sensitive documentation. Highlights for experts include compensation for image distortion, cartesian and polar coordinates, linear and logarithmic coordinates, automatic scanning, graphical previews, and browser help.
Download (9.1MB)
Added: 2007-04-25 License: GPL (GNU General Public License) Price:
924 downloads
ePiX 1.0.14
ePiX project is a set of utilities for publication-quality math/sci plotting. more>>
ePiX project is a set of utilities for publication-quality math/sci plotting.
ePiX creates mathematically accurate, camera-quality figures, plots, and line animations using easy-to-learn syntax.
Its output formats (eepic, EPS, PDF) are suitable for use with LaTeX.
C++ provides the algorithmic and numerical capabilities, LaTeX and GhostScript comprise the typographical rendering engine, and ImageMagick handles the creation of bitmapped images and animations.
Complete documentation and dozens of sample files are included. Knowledge of C++ is not required.
<<lessePiX creates mathematically accurate, camera-quality figures, plots, and line animations using easy-to-learn syntax.
Its output formats (eepic, EPS, PDF) are suitable for use with LaTeX.
C++ provides the algorithmic and numerical capabilities, LaTeX and GhostScript comprise the typographical rendering engine, and ImageMagick handles the creation of bitmapped images and animations.
Complete documentation and dozens of sample files are included. Knowledge of C++ is not required.
Download (0.56MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1115 downloads
Camera Monitor 0.2
Camera Monitor is a little tray system icon that notifies you when your Webcam is on. more>>
Camera Monitor is a little tray system icon that notifies you when your Webcam is on. The project is designed for the GNOME desktop, but will work as well on KDE and XFCE.
Camera Monitor is released under the terms of the GNU General Public License.
Installation:
tar xzf laptoptemp-0.2.tar.gz
cd cameramonitor-0.1
./configure
sudo make install
Enhancements:
- Added support for libnotify
- Ported to new gtk.StatusIcon
- Updated preferences panel
- Updated about information
- Removed notification on bad previous exit
- Added option to preferences for autostarting cameramonitor every session
<<lessCamera Monitor is released under the terms of the GNU General Public License.
Installation:
tar xzf laptoptemp-0.2.tar.gz
cd cameramonitor-0.1
./configure
sudo make install
Enhancements:
- Added support for libnotify
- Ported to new gtk.StatusIcon
- Updated preferences panel
- Updated about information
- Removed notification on bad previous exit
- Added option to preferences for autostarting cameramonitor every session
Download (0.024MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
976 downloads
Remote Capture for Canon PowerShot cameras 1.0.3-cvs
Remote Capture for Canon PowerShot cameras is a tool for controlling Canon PowerShot cameras. more>>
Remote Capture for Canon PowerShot cameras project is a tool for controlling Canon PowerShot cameras.
The following cameras were reported to work with Capture. Please send a report to extend the list.
Canon PowerShot S50
Canon PowerShot A60
Canon PowerShot A70
Canon PowerShot A75
Canon PowerShot A80
Canon PowerShot A85
Canon PowerShot A95
Canon PowerShot A510
Canon PowerShot A520
Canon PowerShot G6
Canon Digital IXUS 400 (aka PowerShot S400)
Canon PowerShot S410
Canon PowerShot S500
The main advantage of Capture over gPhoto is that the consecutive shots are taken without the camera lenses being closed and opened again. When taking several thousand shots in a row, this indeed lets the camera live longer.
Enhancements:
- This release adds some minor enhancements and fixes.
- The code is stable.
<<lessThe following cameras were reported to work with Capture. Please send a report to extend the list.
Canon PowerShot S50
Canon PowerShot A60
Canon PowerShot A70
Canon PowerShot A75
Canon PowerShot A80
Canon PowerShot A85
Canon PowerShot A95
Canon PowerShot A510
Canon PowerShot A520
Canon PowerShot G6
Canon Digital IXUS 400 (aka PowerShot S400)
Canon PowerShot S410
Canon PowerShot S500
The main advantage of Capture over gPhoto is that the consecutive shots are taken without the camera lenses being closed and opened again. When taking several thousand shots in a row, this indeed lets the camera live longer.
Enhancements:
- This release adds some minor enhancements and fixes.
- The code is stable.
Download (0.029MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1245 downloads
camserv 0.5.1
camserv is a streaming webcam server for Video4Linux with filters. more>>
Camserv is a free program to do streaming video through the web.
Streaming video can be sent to both Netscape and Internet Explorer clients. However, Internet Explorer under Windows cannot apparently handle the multi-part JPEGs, and therefore a special javascript page must be setup. One is included in the distribution as an example.
So far the hauppage TV cards have been tested, so have the black and white quickcams, and the old colour quickcams. For use with the Hauppage TV cards, one doesnt need any camera as they can use the other channels on the card to stream TV or whatever is being inputted.
The camserv program now comes with a relay program which will allow you to offload webservers ... effectively mirroring your webcam! It will also allow you to broadcast your camera even from your masqueraded machines, or server hundreds of people from your meager 28.8!
Enhancements:
- Incorporate patches from Barak Pearlmutter , which cleaned up code, made things more portable, etc.
- Also fixed up the build to work with newer versions of AutoMake
- Included patch from Walter Haidinger (walter.haidinger@gmx.at) which fixes up support for YUV420P based v4l devices (such as the Philips camera)
<<lessStreaming video can be sent to both Netscape and Internet Explorer clients. However, Internet Explorer under Windows cannot apparently handle the multi-part JPEGs, and therefore a special javascript page must be setup. One is included in the distribution as an example.
So far the hauppage TV cards have been tested, so have the black and white quickcams, and the old colour quickcams. For use with the Hauppage TV cards, one doesnt need any camera as they can use the other channels on the card to stream TV or whatever is being inputted.
The camserv program now comes with a relay program which will allow you to offload webservers ... effectively mirroring your webcam! It will also allow you to broadcast your camera even from your masqueraded machines, or server hundreds of people from your meager 28.8!
Enhancements:
- Incorporate patches from Barak Pearlmutter , which cleaned up code, made things more portable, etc.
- Also fixed up the build to work with newer versions of AutoMake
- Included patch from Walter Haidinger (walter.haidinger@gmx.at) which fixes up support for YUV420P based v4l devices (such as the Philips camera)
Download (0.15MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1634 downloads
VISCA Camera Control Library 0.08
VISCA Camera Control Library is a library for controlling a VISCA(tm) compliant camera through the RS232 port of your PC. more>>
VISCA Camera Control Library is a library for controlling a VISCA(tm) compliant camera through the RS232 port of your PC. VISCA, on its side, is a protocol developed by Sony so that a lot of machine vision cameras from Sony are compliant with VISCA.
Typical cameras include the FCB-IX47 family of camera block for OEMs. Note that other devices, such as VCRs, can be controlled. Drop me a line f you know other functions that you would like to be implemented and for which you have the opcodes.
libVISCA has been tested only with an FCB-IX47P. This does not mean that its the only camera compatible, but some others might require addition/changes. In the current version, libVISCA has interface functions for every command/inquiry of the specifications. This includes zoom, focus, digital effects, white balance, and much more.
Every function composes an RS232 message, up to 12 bytes long. The message is then sent to a function that will actually send the 12 bytes after appending a header and footer. The function also waits for answers from the camera, such as ACK and completion messages. If its an inquiry, the reply is stored in the input buffer of the interface structure.
<<lessTypical cameras include the FCB-IX47 family of camera block for OEMs. Note that other devices, such as VCRs, can be controlled. Drop me a line f you know other functions that you would like to be implemented and for which you have the opcodes.
libVISCA has been tested only with an FCB-IX47P. This does not mean that its the only camera compatible, but some others might require addition/changes. In the current version, libVISCA has interface functions for every command/inquiry of the specifications. This includes zoom, focus, digital effects, white balance, and much more.
Every function composes an RS232 message, up to 12 bytes long. The message is then sent to a function that will actually send the 12 bytes after appending a header and footer. The function also waits for answers from the camera, such as ACK and completion messages. If its an inquiry, the reply is stored in the input buffer of the interface structure.
Download (0.30MB)
Added: 2006-01-20 License: LGPL (GNU Lesser General Public License) Price:
1407 downloads
Thunar Volume Manager 0.1.2
Thunar Volume Manager project provides automatic management of removable media and drives for the Thunar File Manager. more>>
Thunar Volume Manager project provides automatic management of removable media and drives for the Thunar File Manager.
The Thunar Volume Manager is an extension for the Thunar file manager, which enables automatic management of removable drives and media. For example, if thunar-volman is installed and configured properly, and you plug in your digital camera, it will automatically launch your preferred photo application and import the new pictures from the camera into your photo collection.
The advantage of Thunar Volume Manager over other solutions (like gnome-volume-manager or ivman) is that it does not require an additional daemon to be running in the users desktop session, which means it is very lightweight solution. In addition, the Thunar Volume Manager smoothly integrates into the Thunar file manager and the Xfce desktop.
<<lessThe Thunar Volume Manager is an extension for the Thunar file manager, which enables automatic management of removable drives and media. For example, if thunar-volman is installed and configured properly, and you plug in your digital camera, it will automatically launch your preferred photo application and import the new pictures from the camera into your photo collection.
The advantage of Thunar Volume Manager over other solutions (like gnome-volume-manager or ivman) is that it does not require an additional daemon to be running in the users desktop session, which means it is very lightweight solution. In addition, the Thunar Volume Manager smoothly integrates into the Thunar file manager and the Xfce desktop.
Download (0.29MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
593 downloads
gcam 0.2
Gcam is a GTK+ webcam viewer for Philips USB webcams. more>>
gcam is a GTK+ webcam viewer for Philips USB webcams. Its goal is to support all of the features of the Linux pwc driver. It can save single shots in the jpeg format. It can save single shots as jpeg. Currently it only works with the pwc driver and not with other v4l devices.
Compiling the program:
Youll need libjpeg and gtk 1.2 to compile it, if you have them running make
should do the trick.
Installing:
Running make install, will install the program in /usr/local/bin
Why the common directory:
Im going to write a little server, that lets clients download jpegs from
camera shots. So i wrote things a little generic for reuse ;0
Troubleshooting:
If you have trouble please mail me a detailed bugreport.
Enhancements:
- Some new options
<<lessCompiling the program:
Youll need libjpeg and gtk 1.2 to compile it, if you have them running make
should do the trick.
Installing:
Running make install, will install the program in /usr/local/bin
Why the common directory:
Im going to write a little server, that lets clients download jpegs from
camera shots. So i wrote things a little generic for reuse ;0
Troubleshooting:
If you have trouble please mail me a detailed bugreport.
Enhancements:
- Some new options
Download (0.017MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1180 downloads
iCam2 1.1
iCam2 is a webcam program for X11 or the console. more>>
iCam2 is a webcam application built around Video4Linux and Imlib2. The purpose for creating iCam2 was that, after (finally!) getting my parallel-port QuickCam VC operating, I needed some software to make use of it, but the only programs readily available either didnt support all the features I wanted, or required a camera that supports mmap(), which mine (currently) does not..
So, after spending some time tweaking the webcam application that is shipped as a part of the xawtv package, I decided to set out and create my own app. And this is it.
The primary design goals of this application are:
1) Provide an extensible, flexible, and quality webcam application.
2) Allow the app to run with an X11-preview interface. This used to be a three-window interface, but that annoyed me to no end, so now it is one window that shows a realtime image from your camera, after all applicable post-processing.
3) Provide a dynamic interface to plugins and filters. Check out SDLcam if you want to know why I think filters are cool. :)
<<lessSo, after spending some time tweaking the webcam application that is shipped as a part of the xawtv package, I decided to set out and create my own app. And this is it.
The primary design goals of this application are:
1) Provide an extensible, flexible, and quality webcam application.
2) Allow the app to run with an X11-preview interface. This used to be a three-window interface, but that annoyed me to no end, so now it is one window that shows a realtime image from your camera, after all applicable post-processing.
3) Provide a dynamic interface to plugins and filters. Check out SDLcam if you want to know why I think filters are cool. :)
Download (0.068MB)
Added: 2005-05-03 License: GPL (GNU General Public License) Price:
907 downloads
Apogee 1.5
These are drivers for the range of scientific CCD cameras manufactured by Apogee Instruments Inc. more>>
These are drivers for the range of scientific CCD cameras manufactured by Apogee Instruments Inc. The drivers are accompanied by a full GUI interface designed for use in an astronomical environment.
The .tgz binary can be installed using the following commands
cd /
tar -xvzPf /path-to-archive/apogee-driver-1.5.tgz
/opt/apogee/apogee-post
/opt/apogee/modinstall
Whichever distribution is installed, the camera driver needs to be prepared (per-user) before use. Log in with the username you will be using to operate the camera, the open an xterm and type
/opt/apogee/install
Prompts for the type of camera, and I/O port will appear. In the event that the .ini file for your camera is not listed, you may need to obtain the latest version from Apogee. (alternatively, examine the new .ini file format, and edit your current .ini file to conform to the same parameter names). Once the driver is setup, the GUI interface can be started using the command
~/startapogee
Main features:
- Support for all ALTA-E and ALTA-U models
- Support for parallel port and PCI, and ISA interface models
- Full-frame, binned, and sub-region readout
- Image read/write to FITS format disk files
- In memory buffering of an arbitrary number of images
- Automatic image display using DS9 image viewer
- Calibration image library construction
- On-the-fly calibration
- Drift-scan mode
- Focus frame readout
- Graphical User Interface to major functions
- Tcl level scripting interface to all aspects of driver
- Tcl level scripting interface to image buffer management
- Tcl level scripting interface to manage FITS images, tables, headers
Enhancements:
- Add support for ApnCamData_CCD models
- Update codebase for 2.0.43_57 changes
<<lessThe .tgz binary can be installed using the following commands
cd /
tar -xvzPf /path-to-archive/apogee-driver-1.5.tgz
/opt/apogee/apogee-post
/opt/apogee/modinstall
Whichever distribution is installed, the camera driver needs to be prepared (per-user) before use. Log in with the username you will be using to operate the camera, the open an xterm and type
/opt/apogee/install
Prompts for the type of camera, and I/O port will appear. In the event that the .ini file for your camera is not listed, you may need to obtain the latest version from Apogee. (alternatively, examine the new .ini file format, and edit your current .ini file to conform to the same parameter names). Once the driver is setup, the GUI interface can be started using the command
~/startapogee
Main features:
- Support for all ALTA-E and ALTA-U models
- Support for parallel port and PCI, and ISA interface models
- Full-frame, binned, and sub-region readout
- Image read/write to FITS format disk files
- In memory buffering of an arbitrary number of images
- Automatic image display using DS9 image viewer
- Calibration image library construction
- On-the-fly calibration
- Drift-scan mode
- Focus frame readout
- Graphical User Interface to major functions
- Tcl level scripting interface to all aspects of driver
- Tcl level scripting interface to image buffer management
- Tcl level scripting interface to manage FITS images, tables, headers
Enhancements:
- Add support for ApnCamData_CCD models
- Update codebase for 2.0.43_57 changes
Download (22MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1194 downloads
Cammgr 1.5
Cammgr manages a collection of web cameras. more>>
Cammgr manages a collection of web cameras. It will bring cameras online or offline, and initiate or suspend image capture operations.
Any camera can be controlled provided a driver is available. Cammgr supports multiple images per camera, default images for inactive cameras, per- user/host/camera notifications, and an easy-to- use configuration file.
Cammgr can scan Apache log files to auto-initiate image capture, and tune capture frequency can to the minimum needed to ensure that clients receive a new image on request.
Enhancements:
- Support for Axis network cameras was added.
- A bug where the pipe file descriptor was left open across shell exec was fixed.
- A client capture manager from where all capture processes are dispatched and monitored was created.
- A bug where the capture process did not go away when cammgr exited was fixed.
- Other miscellaneous cleanups were done.
<<lessAny camera can be controlled provided a driver is available. Cammgr supports multiple images per camera, default images for inactive cameras, per- user/host/camera notifications, and an easy-to- use configuration file.
Cammgr can scan Apache log files to auto-initiate image capture, and tune capture frequency can to the minimum needed to ensure that clients receive a new image on request.
Enhancements:
- Support for Axis network cameras was added.
- A bug where the pipe file descriptor was left open across shell exec was fixed.
- A client capture manager from where all capture processes are dispatched and monitored was created.
- A bug where the capture process did not go away when cammgr exited was fixed.
- Other miscellaneous cleanups were done.
Download (0.083MB)
Added: 2005-11-23 License: BSD License Price:
1430 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above 1.3 megapixel camera search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed