Main > Free Download Search >

Free taken with digital cameras software for linux

taken with digital cameras

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3135
Digital Camera Protocol 0.0

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
Free Digital Money 0.2

Free Digital Money 0.2


Free Digital Money is a free open source project aimed at promoting ideas and stimulating further innovation. more>>
Free Digital Money projetc is aimed at promoting ideas and stimulating further innovation in the field of digital bearer money.
Digital bearer money is like cash and can be transferred person-to-person without going through a bank or PayPal account.
Scope
The scope of this project is necessarily limited; digital bearer money schemes are difficult to implement.
The project will develop and release a Digital Money system and applications, suitable for teaching and idea-testing.
The current release (V0.2) delivers a basic digital PGP-based coin system.
The next release will provide a transport mechanism to send the coins to an intended recipient; and a client application (a Wallet).
How You Can Help
We welcome technical help in a variety of forms:
- Application writers and visionaries: to use the FreeDMoney software to experiment with new ideas
- Coders: to extend the current software or to implement a completely new payment system
- Vendors of existing digital payment schemes: to implement a FDM interface to their code
Educational Usage
Students (and others) are welcome and encouraged to use FreeDMoney as a basis for discussing other considerations of building a secure payment systems.
Examples:
- What technical peer-review process would be required to be confident in the security of the system?
- What are the limitations in the model that would need to be overcome in order to make this into a technically sound basis for a real-world, real-value payment system?
- Assuming these limitations had been overcome, what operational considerations would need to be addressed to deliver a secure, reliable payment system?
- How do existing payment systems address these issues?
What legal and regulatory issues would need to be addressed in the target jurisdictions?
Enhancements:
- Initial Coin implementation and "test bank" Web application.
<<less
Download (0.73MB)
Added: 2006-10-13 License: Freely Distributable Price:
1114 downloads
DigicaMerge 2.00

DigicaMerge 2.00


DigicaMerge is a commandline tool to merge directories of pictures taken with digital cameras. more>>
DigicaMerge project is a commandline tool to merge directories of pictures taken with digital cameras. If youve got a digital camera, your hard disk probably contains many directories full of pictures all named with the same names.
This utility allows you to merge such directories contents into a new directory, and renames all the pictures on the fly, ensuring no filename clash will occur.
You can define your own naming scheme, using either a set of predefined variables or any recognized Exif tag which may be present in your pictures, and also specify a pattern to select only certain files.
Installation:
- Extract it :
$ gzip -d digicamerge-x.xx.tar.gz | tar -xf -
where x.xx is digicamerges latest version number.
- Install it :
Go to digicamerges directory:
$ cd digicamerge-x.xx
Just type:
$ python setup.py install
You may need to be logged in with sufficient privileges (e.g. root)
This will generally install digicamerge in /usr/local/bin or an equivalent path depending on your system.
- Launch it :
Just type :
$ digicamerge
And read the long help message which contains examples.
Enhancements:
- A command line option was added to automatically remove duplicate pictures when merging directories.
- The manual page is now included in the package.
<<less
Download (0.016MB)
Added: 2006-02-21 License: GPL (GNU General Public License) Price:
1340 downloads
Digital Product Management Library SDK 2.1.0

Digital Product Management Library SDK 2.1.0


Digital Product Management Library SDK is a management platform for Java-based component development. more>>
Digital Product Management Library SDK (DPML SDK) is a management platform for Java-based component development, resource management, and deployment.
The project is composed of the Transit resource management layer, the Depot multi-project build system, the Metro component management runtime engine, and the Station application management console.
Enhancements:
- Support was enhanced for the creation of composite components using URL resolvable parts (where a part is a building block defining a classloader chain, component, and deployment scenario).
<<less
Download (5.7MB)
Added: 2007-05-03 License: The Apache License 2.0 Price:
912 downloads
Python Traffic Camera Analyzer

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.
<<less
Download (0.003MB)
Added: 2005-05-20 License: GPL (GNU General Public License) Price:
1620 downloads
Fedora Digital Object Repository 2.2

Fedora Digital Object Repository 2.2


Fedora open source software gives organizations a flexible service-oriented architecture. more>>
Fedora Digital Object Repository is an open source software which gives organizations a flexible service-oriented architecture for managing and delivering their digital content. At its core is a powerful digital object model that supports multiple views of each digital object and the relationships among digital objects.
Digital objects can encapsulate locally-managed content or make reference to remote content. Dynamic views are possible by associating web services with objects. Digital objects exist within a repository architecture that supports a variety of management functions. All functions of Fedora, both at the object and repository level, are exposed as web services. These functions can be protected with fine-grained access control policies.
This unique combination of features makes Fedora an attractive solution in a variety of domains. Some examples of applications that are built upon Fedora include library collections management, multimedia authoring systems, archival repositories, institutional repositories, and digital libraries for education.
Enhancements:
- This is a significant release of Fedora that includes a complete repackaging as a proper Web application.
- A new installer application makes it easy to setup and run.
- It now uses Servlet Filters for authentication.
- The Fedora repository can also be configured to calculate and store checksums for content.
- The RDF-based Resource Index has been tuned for better performance.
- A new high-performing RDBMS-backed triplestore has been developed that can now be plugged into the RI.
<<less
Download (MB)
Added: 2007-01-26 License: MPL (Mozilla Public License) Price:
1008 downloads
My Knoppix - Digital Home Edition 20060818

My Knoppix - Digital Home Edition 20060818


My Knoppix - Digital Home Edition is aimed to be a smart and centerised OS that can implement at home. more>>
My Knoppix - Digital Home Edition is aimed to be a smart and centerised OS that can implement at home. Imaging you have a Plasma TV or big LCD screen that connect to a server and you can record and play DVD from the server and surf internet with big screen.

Video sharing using NX technology is also possible where you can play and watch different movies using different pc or pda at home. This CD also comes with videolan program where you can broadcast video or music throughout the network.

With the help of the NX technology, you can have a diskless PC that direct connect to the server and share application and files. Therefore server can play the movie on plasma tv while you can write document with openoffice using diskless pc that connect to the server.
<<less
Download (700MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1118 downloads
The Gallery 1.5.6

The Gallery 1.5.6


The Gallery is a slick Web-based photo album written using PHP. more>>
Gallery is a web based software product that lets you manage your photos on your own website. You must have your own website with PHP support in order to install and use it.
With Gallery you can easily create and maintain albums of photos via an intuitive interface. The function photo management includes automatic thumbnail creation, image resizing, rotation, ordering, captioning, searching and more.
Albums can have read, write and caption permissions per individual authenticated user for an additional level of privacy. Give accounts to your friends and family and let them upload and manage their own photos on your website!
Main features:
- Image Magick or NetPBM - pick which image manipulation package you have on your server or want to use.
- Auto Rotate Images - Gallery can look at information in pictures from digital cameras and automatically rotate them as needed.
- Image Quality and Size Defaults - You can limit the quality and size of images so that when images are uploaded, Gallery will resize them to save space.
- Main Gallery Page Settings - The configuration wizard contains all of the settings for how the main Gallery page looks and acts including showing or hiding the album tree, search engine, or album owner, and what frames to show around albums.
- Optional Binaries: zip, jhead, jpegtran - If you have these programs on your webserver, you can enable them to make gallery work better and be more flexible.
- Languages - Choose which languages you want your Gallery to support and how the user is presented with the choice.
- Email Support - Set up email support to have your Gallery email users when their accounts are created or when they forget their password, email you copies, email people when the Gallery is updated, and more!
- Gallery-wide Slideshow - enable or disable a slideshow that includes all pictures in the gallery
- Commenting - turn off or on the public commenting system and configure it.
- Logging - enable logging with syslog or the Windows logger
- RSS publishing - publish your Gallery with RSS![1]
- Album Defaults - set defaults for the way that all new albums will originally look.
Enhancements:
- This release resolved issues where the user language was not set properly when logging in, users with permission to add comments could add comments even when they were globally disabled, navigator could jump to the incorrect next or previous page, the port was stripped from URLs, and the EXIF information for some Sony cameras was misreported. The album validator is now more effective.
- Postnuke 0.8 is supported.
- A recursive "email me when comments are added" is now available.
- Capture dates can be rebuilt from files when jhead/exiftags is installed after items were added.
<<less
Download (2.1MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
928 downloads
DigiCam 1.20

DigiCam 1.20


DigiCam is a command-line interface to Kodak DC21x Digital Cameras. more>>
DigiCam is a command-line interface to Kodak DC21x Digital Cameras. I own a Kodak DC215Zoom and its pretty shitty.

Ive compared images my camera makes with others, and I guess there is just something subtly screwed with my camera.

Focus mechanics or something. Ill probably dump this crap and get a real camera one of these days.

What you can do with it:

* Display camera or specific picture information;
* Display number of pictures in the camera;
* Delete any picture from the camera;
* Delete all pictures from the camera in one step;
* Take picture, save to file, delete picture from the camera in one step;
* Retrieve any picture and save to file;
* Retrieve all pictures, and save to current directory as imageNNN.jpg;
* Set resolution to High or Low before taking a picture;
* Set picture quality before taking a picture;
* Set Flash mode before taking a picture;
* Set Zoom value before taking a picture;

Run "cam" without any parameters for a complete list of possible options. Some options can be combined to make cam usable inside scripts. Please use common sense, and dont combine options like -d and -R, or -t and -d
<<less
Download (0.014MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1104 downloads
Myrinix Digital Home Edition 2007-04 v3

Myrinix Digital Home Edition 2007-04 v3


Myrinix - Digital Home Edition is meant to be a smart and centralized OS that can be implemented in a home environment. more>>
Myrinix - Digital Home Edition is meant to be a smart and centralized OS that can be implemented in a home environment.
Myrinix Digital Home Edition can be connected to a TV or other large screen to record and play DVD movies and surf the Internet. It also implements video sharing with the NX technology, and includes the videolan program for broadcasting video or music throughout the network.
Diskless client computers can connect with the server as it performs other tasks. Myrinix - Digital Home Edition is a bootable CD derived from Kanotix.
Enhancements:
- This release fixed a DBUS hang at startup on some computers and detection of USB drives as home at startup.
- An easy USB portable drive installer was added along with a locale changer for quick and easy language changes.
<<less
Download (460MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
915 downloads
Remote Capture for Canon PowerShot cameras 1.0.3-cvs

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.
<<less
Download (0.029MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1245 downloads
ezOnlineGallery 1.3 Beta

ezOnlineGallery 1.3 Beta


ezOnlineGallery is an online gallery that automatically generates thumbnails. more>>
ezOnlineGallery is an online gallery that automatically generates thumbnails.
ezOnlineGallery supports descriptions for each album and picture, searching on descriptions and file names, picture rotation, EXIF support for displaying the time and date images were taken, dynamically generated text overlays for copyright notices, support for uploading Zip archives of images, an easy admin panel, and easy installation.
Main features:
- Add images and have them resized automatically
- Auto-generate thumbnails
- Add description for each album and picture
- Search picture-descriptions or filenames
- Saves "picture-taken"-date/time from most digital-cameras
- Rotate pictures
- Add text dynamically on the pictures
- Easy admin-panel
- Easy installation
- Easy to translate into your own language (English and Norwegian included!)
Enhancements:
- This release handles files with spaces in the filename.
- The hotlinking blocker has been fixed.
- Watermark protection has been improved to make it harder to circumvent.
- A "Photo by" watermark per photo has been added.
<<less
Download (0.026MB)
Added: 2006-10-24 License: Free for non-commercial use Price:
1095 downloads
VStar PhotoAlbum 1.1

VStar PhotoAlbum 1.1


VStar PhotoAlbum is a Web-based photo album designed for amateur photographers with digital cameras. more>>
VStar PhotoAlbum is a Web-based photo album designed for amateur photographers with digital cameras and their own Web server or home page.

VStar PhotoAlbum alleviates the need to spend much time creating Web pages to show off photographs, and it automatically makes periodic backups for photos.

<<less
Download (0.010MB)
Added: 2007-07-22 License: GPL (GNU General Public License) Price:
826 downloads
Happy Camel 1 Beta 1

Happy Camel 1 Beta 1


Happy Camel is intended to combine your digital camera with your GPS device. more>>
Happy Camel is intended to combine your digital camera with your GPS device. It you feed it a list of digital photos and a tracklog, it figures out where these images were taken.

Happy Camel can embed this position in the EXIF-data of your photos and create a .kmz file for Google Earth displaying your photos at the right positions along the tracklog.

Usage:
Happy Camel is a command-line tool, in which you should basically provide a directory with images and the position on your disk of a tracklog file. Running happycamel --help should provide you with all the necessary information.

Now what?
So, your pictures have their GPS-coordinates embedded. Now what? Good question.
Of course you can have Happy Camel make a nice Google Earth file which shows a smalle version of your images in ther proper place. There are also several other resources which could display your images on a map, like Yuan.cc and Flickrmap, which require to have your photos on Flickr.

Theres currently a lot going on around GPS and photos. More options will probably present themselves.

<<less
Download (0.019MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
925 downloads
Digital Disco System 0.10.3

Digital Disco System 0.10.3


Digital Disco System is a client/server-based audio player for disco purposes as well as at-home usage. more>>
Digital Disco System is a client/server-based audio player for disco purposes as well as at-home usage. It has an console frontend (usable in shell scripts) and an X-fontend in the style of XMMS.

<<less
Download (0.090MB)
Added: 2006-04-20 License: GPL (GNU General Public License) Price:
1282 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5