Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 4 DOI reference(s) in README -
✓Academic publication links
Links to: wiley.com -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.3%) to scientific vocabulary
Repository
Particle tracking and demography
Basic Info
Statistics
- Stars: 10
- Watchers: 5
- Forks: 2
- Open Issues: 4
- Releases: 0
Metadata Files
README.md
trackdem (version 0.6)
Left: reconstructed trajectories of Daphnia magna individuals.
Top right: identified fish (movie obtained from: DOI: 10.1109/CVPR.2015.7298992).
Bottom right: the package contains functions to simulate moving particles.
--- The aim of **trackdem** is to obtain unbiased automated estimates of population densities and body size distributions, using video material or image sequences as input. It is meant to assist in evolutionary and ecological studies, which often rely on accurate estimates of population size, structure and/or individual behaviour. The main functionality of **trackdem** includes a set of functions to convert a short video into an image sequence, background detection, particle identification and linking, and the training of an artifical neural network for noise filtering. For more information on the package and usage, see our article that was published in Methods in Ecology and Evolution. --- ## Table of Contents * [Getting started](#getting-started) * [Installation](#installation) * [Tutorial](#tutorial) * [Updates](#updates) * [Version 0.5](#version-0.5) * [Version 0.4.3](#version-0.4.3) * [Version 0.4.1](#version-0.4.1) * [FFmpeg vs Libav](#ffmpeg-vs-libav) * [Bugs](#bugs) --- ## Getting started ### Installation **trackdem** can be installed from [CRAN](https://cran.r-project.org/web/packages/trackdem/index.html) or from github. ```r ## Install from CRAN install.packages('trackdem') ## Install from Github ## devtools is required require(devtools) install_github("marjoleinbruijning/trackdem") ``` To use the automated video to image and metadata creation function from **trackdem** users need Python>=2.7, FFmpeg (or Libav, as explained below) and ExifTool. Ubuntu users can paste the following commands in a terminal to install FFmpeg and ExifTool (Python should be included by default): ``` sudo apt-get update sudo apt-get install libimage-exiftool-perl sudo apt install ffmpeg ``` Mac users can paste the following commands in a terminal to install FFmpeg: ``` ## Make sure that homebrew is installed, see: https://brew.sh/ ## Install FFmpeg brew install ffmpeg ``` ExifTool can be downloaded from here. Follow the installation instructions for the OS X Package. The newest Python release, if not installed yet, can be downloaded here. Windows users can download Libav here (instead of FFmpeg, see below). Download the latest nightly-gpl release, and extract all files to a chosen location. Next, download the file named libgcc_s_sjlj-1.dll, and place it within the libav directory, in '/usr/bin'. ExifTool can be downloaded here. For ExifTool, download the stand-alone executable and place the exiftool(-k).exe file in a chosen directory. For convenience, you can change the name to exiftool.exe, as described in the installation instructions. Finally, Python can be downloaded here. Follow the instructions for installation. --- ### Tutorial A full tutorial is provided with the package (here). Some test code to get you started is given below. ```r ## Load package require(trackdem) ######################################################################## ## Simulate image sequence ######################################################################## dir.create('images') ## Create image sequence and save png files to folder 'images' (this takes a moment) traj <- simulTrajec(path="images", nframes=30,nIndividuals=20,domain='square', h=0.01,rho=0.9,staticNoise=FALSE, sizes=runif(20,0.004,0.006), parsStatic=list(col='blue')) ######################################################################## ## Analyze image sequence ######################################################################## ## Load images dir <- "images" allFullImages <- loadImages (dirPictures=dir,nImages=1:30) allFullImages class(allFullImages) plot(allFullImages,frame=1) ## Detect background stillBack <- createBackground(allFullImages,method="mean") stillBack class(stillBack) plot(stillBack) ## Subtract background allImages <- subtractBackground(bg=stillBack) allImages ## Identify moving particles findThreshold(allImages) # find appropriate threshold findPixelRange(allFullImages) # find appropriate pixel range partIden <- identifyParticles(sbg=allImages, pixelRange=c(1,500), autoThres=FALSE,threshold=-0.1) summary(partIden) attributes(partIden)$threshold plot(partIden,frame=10) ```

```r
Reconstruct trajectories
findMaxCost(partIden) # find appropriate L value records <- trackParticles(partIden,L=60,R=3) z <- 1 # minimum presence summary(records,incThres=z) summary(records,incThres=z)$N # population count summary(records,incThres=z)$particles[,"Size"] # body size distribution summary(records,incThres=z)$particles[,"Total movement"] # movement distribution dim(records$trackRecord) dim(records$sizeRecord) dim(records$colorRecord)
Obtain results
Trajectories
plot(records,type='trajectories',incThres=z) for (i in 1:length(unique(traj$id))) { lines(traj$x[traj$id==i],traj$y[traj$id==i],col="grey", lty=2,lwd=2) }
```

```r
Analyze image sequence containing noise
dir.create("images")
Save png images (red particles are particles of interest)
traj <- simulTrajec(path="images", nframes=30,nIndividuals=20,domain="square", h=0.01,rho=0.9,movingNoise=TRUE, parsMoving = list(density=20, duration=10, size=1, speed = 10, colRange = c(0,1)), sizes=runif(20,0.004,0.006)) dir <- "images" allFullImages <- loadImages (dirPictures=dir,nImages=1:30) stillBack <- createBackground(allFullImages,method="mean") allImages <- subtractBackground(stillBack) partIden <- identifyParticles(allImages,threshold=-0.1, pixelRange=c(3,400))
Select three frames with most identified particles
nframes <- 3 frames <- order(tapply(partIden$patchID,partIden$frame,length), decreasing=TRUE)[1:nframes]
Manually select true and false positives
mId <- manuallySelect(particles=partIden,frame=frames)
Train neural net
finalNN <- testNN(dat=mId,repetitions=10,maxH=4,prop=c(6,2,2))
Update and track
partIdenNN <- update(partIden,neuralnet=finalNN) records <- trackParticles(partIdenNN,L=60,R=3) summary(records)
```

Updates
Version 0.6
- Add functions findPixelRange() and findMaxCost().
Version 0.5.2
- Add optional arguments 'logsizes' and 'costconstant' to trackParticles().
Version 0.5.1
- No longer requires R-package SDMTools
Version 0.5
- Package is now compatible with Python 3
Version 0.4.3
- Create log file for function createImageSeq().
- Optimize functions to analyze greyscale images.
Version 0.4.1
- Enable greyscale image sequences.
- Optimized identification and tracking functions to work with longer image sequences.
- Increased flexibility in function createImageSeq().
FFmpeg vs Libav
Note that we previously used Libav instead of FFmpeg. However, Ubuntu no longer uses Libav, and users therefore need to install FFmpeg as described above. See e.g. here and here for more information on this confusing matter.
Ubuntu/Mac users might need to provide the path to the FFmpeg executable, which can be obtained with the following terminal command:
r
which ffmpeg
Use argument 'libavpath' in createImageSeq() and plot() to specify the correct path. On Windows, the provided instructions should still work.
Bugs
Bug reports and comments are .
Owner
- Login: marjoleinbruijning
- Kind: user
- Repositories: 7
- Profile: https://github.com/marjoleinbruijning
GitHub Events
Total
- Watch event: 4
Last Year
- Watch event: 4
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| marjoleinbruijning | m****g@g****m | 127 |
| Marco Visser | m****r@g****m | 5 |
Issues and Pull Requests
Last synced: 12 months ago
All Time
- Total issues: 12
- Total pull requests: 3
- Average time to close issues: 3 months
- Average time to close pull requests: 4 months
- Total issue authors: 5
- Total pull request authors: 1
- Average comments per issue: 2.75
- Average comments per pull request: 0.0
- Merged pull requests: 2
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- haasdavid (8)
- GhStv (1)
- pcolangeli (1)
- CReis93 (1)
- NahlaMetwally (1)
Pull Request Authors
- MarcoDVisser (3)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 608 last-month
- Total docker downloads: 34
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 13
- Total maintainers: 1
cran.r-project.org: trackdem
Particle Tracking and Demography
- Homepage: https://github.com/marjoleinbruijning/trackdem
- Documentation: http://cran.r-project.org/web/packages/trackdem/trackdem.pdf
- License: GPL-2
-
Latest release: 0.7.2
published about 2 years ago
Rankings
Maintainers (1)
Dependencies
- MASS * imports
- Rcpp * imports
- grDevices * imports
- graphics * imports
- neuralnet * imports
- png * imports
- raster * imports
- shiny * imports
- stats * imports
- knitr * suggests
- rmarkdown * suggests
- testthat * suggests