You are not logged in. Log in
|
|
radR project > Current Issues > Running the tracker on a blipmovie saved with an exclusion zone is broken
Running the tracker on a blipmovie saved with an exclusion zone is brokenFrom $1Table of contentsNo headers2013 April 10: Users have reported problems with running the tracker on a blipmovie which was recorded with an enabled exclusion zone. The problem appears due to the fact that the excluded blips are still written to the blipmovie file, but with zeroed data and class "excluded". This is probably not what should happen, but needs more thought. Fix: For now, to process such files, you can enable the R filtering expression "max > 0" in the blip processing window, as shown in the yellow-highlighted region of this image: This serves to filter out those zombie blips which are being zeroed by the exclusion zone, but not removed from subsequent processing. To do this in a batchparm.R file, make sure that the blip = list portion includes these highlighted lines: blip = list ( ... ## should a blip filtering expression be used? use.blip.filter.expr = TRUE, ## what is the blip filtering expression? blip.filter.expr = max > 0 ), If you were already using a filtering expression XXXX, then change it to (XXXX) & max > 0. For example: perim < 2.5 * area
becomes (perim < 2.5 * area) & max > 0
Was this page helpful?
Tags: (Edit tags)
|
Powered by MindTouch Core |